line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::SSM::AutomationExecution; |
2
|
1
|
|
|
1
|
|
756
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
11
|
|
3
|
|
|
|
|
|
|
has AutomationExecutionId => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has AutomationExecutionStatus => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has DocumentName => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has DocumentVersion => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has ExecutionEndTime => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has ExecutionStartTime => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has FailureMessage => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has Outputs => (is => 'ro', isa => 'Paws::SSM::AutomationParameterMap'); |
11
|
|
|
|
|
|
|
has Parameters => (is => 'ro', isa => 'Paws::SSM::AutomationParameterMap'); |
12
|
|
|
|
|
|
|
has StepExecutions => (is => 'ro', isa => 'ArrayRef[Paws::SSM::StepExecution]'); |
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
### main pod documentation begin ### |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Paws::SSM::AutomationExecution |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 USAGE |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
This class represents one of two things: |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
28
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::SSM::AutomationExecution object: |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { AutomationExecutionId => $value, ..., StepExecutions => $value }); |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head3 Results returned from an API call |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::AutomationExecution object: |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
39
|
|
|
|
|
|
|
$result->Att1->AutomationExecutionId |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 DESCRIPTION |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Detailed information about the current state of an individual |
44
|
|
|
|
|
|
|
Automation execution. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 AutomationExecutionId => Str |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The execution ID. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 AutomationExecutionStatus => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The execution status of the Automation. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head2 DocumentName => Str |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
The name of the Automation document used during the execution. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=head2 DocumentVersion => Str |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
The version of the document to use during execution. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head2 ExecutionEndTime => Str |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
The time the execution finished. |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=head2 ExecutionStartTime => Str |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
The time the execution started. |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head2 FailureMessage => Str |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
A message describing why an execution has failed, if the status is set |
82
|
|
|
|
|
|
|
to Failed. |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
=head2 Outputs => L<Paws::SSM::AutomationParameterMap> |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
The list of execution outputs as defined in the automation document. |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=head2 Parameters => L<Paws::SSM::AutomationParameterMap> |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
The key-value map of execution parameters, which were supplied when |
93
|
|
|
|
|
|
|
calling StartAutomationExecution. |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
=head2 StepExecutions => ArrayRef[L<Paws::SSM::StepExecution>] |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
A list of details about the current state of all steps that comprise an |
99
|
|
|
|
|
|
|
execution. An Automation document contains a list of steps that are |
100
|
|
|
|
|
|
|
executed in order. |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
=head1 SEE ALSO |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::SSM> |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
=cut |
115
|
|
|
|
|
|
|
|