File Coverage

blib/lib/Paws/SimpleWorkflow/WorkflowExecutionSignaledEventAttributes.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::WorkflowExecutionSignaledEventAttributes;
2 1     1   877 use Moose;
  1         6  
  1         14  
3             has ExternalInitiatedEventId => (is => 'ro', isa => 'Int', request_name => 'externalInitiatedEventId', traits => ['NameInRequest']);
4             has ExternalWorkflowExecution => (is => 'ro', isa => 'Paws::SimpleWorkflow::WorkflowExecution', request_name => 'externalWorkflowExecution', traits => ['NameInRequest']);
5             has Input => (is => 'ro', isa => 'Str', request_name => 'input', traits => ['NameInRequest']);
6             has SignalName => (is => 'ro', isa => 'Str', request_name => 'signalName', traits => ['NameInRequest'], required => 1);
7             1;
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::SimpleWorkflow::WorkflowExecutionSignaledEventAttributes
14              
15             =head1 USAGE
16              
17             This class represents one of two things:
18              
19             =head3 Arguments in a call to a service
20              
21             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
22             Each attribute should be used as a named argument in the calls that expect this type of object.
23              
24             As an example, if Att1 is expected to be a Paws::SimpleWorkflow::WorkflowExecutionSignaledEventAttributes object:
25              
26             $service_obj->Method(Att1 => { ExternalInitiatedEventId => $value, ..., SignalName => $value });
27              
28             =head3 Results returned from an API call
29              
30             Use accessors for each attribute. If Att1 is expected to be an Paws::SimpleWorkflow::WorkflowExecutionSignaledEventAttributes object:
31              
32             $result = $service_obj->Method(...);
33             $result->Att1->ExternalInitiatedEventId
34              
35             =head1 DESCRIPTION
36              
37             Provides details of the C<WorkflowExecutionSignaled> event.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 ExternalInitiatedEventId => Int
43              
44             The ID of the C<SignalExternalWorkflowExecutionInitiated> event
45             corresponding to the C<SignalExternalWorkflow> decision to signal this
46             workflow execution.The source event with this ID can be found in the
47             history of the source workflow execution. This information can be
48             useful for diagnosing problems by tracing back the chain of events
49             leading up to this event. This field is set only if the signal was
50             initiated by another workflow execution.
51              
52              
53             =head2 ExternalWorkflowExecution => L<Paws::SimpleWorkflow::WorkflowExecution>
54              
55             The workflow execution that sent the signal. This is set only of the
56             signal was sent by another workflow execution.
57              
58              
59             =head2 Input => Str
60              
61             Inputs provided with the signal (if any). The decider can use the
62             signal name and inputs to determine how to process the signal.
63              
64              
65             =head2 B<REQUIRED> SignalName => Str
66              
67             The name of the signal received. The decider can use the signal name
68             and inputs to determine how to the process the signal.
69              
70              
71              
72             =head1 SEE ALSO
73              
74             This class forms part of L<Paws>, describing an object used in L<Paws::SimpleWorkflow>
75              
76             =head1 BUGS and CONTRIBUTIONS
77              
78             The source code is located here: https://github.com/pplu/aws-sdk-perl
79              
80             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
81              
82             =cut
83