File Coverage

blib/lib/Paws/SimpleWorkflow/SignalExternalWorkflowExecutionInitiatedEventAttributes.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::SimpleWorkflow::SignalExternalWorkflowExecutionInitiatedEventAttributes;
2 1     1   469 use Moose;
  1         4  
  1         11  
3             has Control => (is => 'ro', isa => 'Str', request_name => 'control', traits => ['NameInRequest']);
4             has DecisionTaskCompletedEventId => (is => 'ro', isa => 'Int', request_name => 'decisionTaskCompletedEventId', traits => ['NameInRequest'], required => 1);
5             has Input => (is => 'ro', isa => 'Str', request_name => 'input', traits => ['NameInRequest']);
6             has RunId => (is => 'ro', isa => 'Str', request_name => 'runId', traits => ['NameInRequest']);
7             has SignalName => (is => 'ro', isa => 'Str', request_name => 'signalName', traits => ['NameInRequest'], required => 1);
8             has WorkflowId => (is => 'ro', isa => 'Str', request_name => 'workflowId', traits => ['NameInRequest'], required => 1);
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::SimpleWorkflow::SignalExternalWorkflowExecutionInitiatedEventAttributes
16              
17             =head1 USAGE
18              
19             This class represents one of two things:
20              
21             =head3 Arguments in a call to a service
22              
23             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
24             Each attribute should be used as a named argument in the calls that expect this type of object.
25              
26             As an example, if Att1 is expected to be a Paws::SimpleWorkflow::SignalExternalWorkflowExecutionInitiatedEventAttributes object:
27              
28             $service_obj->Method(Att1 => { Control => $value, ..., WorkflowId => $value });
29              
30             =head3 Results returned from an API call
31              
32             Use accessors for each attribute. If Att1 is expected to be an Paws::SimpleWorkflow::SignalExternalWorkflowExecutionInitiatedEventAttributes object:
33              
34             $result = $service_obj->Method(...);
35             $result->Att1->Control
36              
37             =head1 DESCRIPTION
38              
39             Provides the details of the C<SignalExternalWorkflowExecutionInitiated>
40             event.
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 Control => Str
46              
47             Data attached to the event that can be used by the decider in
48             subsequent decision tasks.
49              
50              
51             =head2 B<REQUIRED> DecisionTaskCompletedEventId => Int
52              
53             The ID of the C<DecisionTaskCompleted> event corresponding to the
54             decision task that resulted in the C<SignalExternalWorkflowExecution>
55             decision for this signal. This information can be useful for diagnosing
56             problems by tracing back the chain of events leading up to this event.
57              
58              
59             =head2 Input => Str
60              
61             The input provided to the signal.
62              
63              
64             =head2 RunId => Str
65              
66             The C<runId> of the external workflow execution to send the signal to.
67              
68              
69             =head2 B<REQUIRED> SignalName => Str
70              
71             The name of the signal.
72              
73              
74             =head2 B<REQUIRED> WorkflowId => Str
75              
76             The C<workflowId> of the external workflow execution.
77              
78              
79              
80             =head1 SEE ALSO
81              
82             This class forms part of L<Paws>, describing an object used in L<Paws::SimpleWorkflow>
83              
84             =head1 BUGS and CONTRIBUTIONS
85              
86             The source code is located here: https://github.com/pplu/aws-sdk-perl
87              
88             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
89              
90             =cut
91