line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::SSM::AutomationExecutionMetadata; |
2
|
1
|
|
|
1
|
|
341
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
5
|
|
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 ExecutedBy => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has ExecutionEndTime => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has ExecutionStartTime => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has LogFile => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
has Outputs => (is => 'ro', isa => 'Paws::SSM::AutomationParameterMap'); |
12
|
|
|
|
|
|
|
1; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
### main pod documentation begin ### |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Paws::SSM::AutomationExecutionMetadata |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 USAGE |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
This class represents one of two things: |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
27
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::SSM::AutomationExecutionMetadata object: |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { AutomationExecutionId => $value, ..., Outputs => $value }); |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head3 Results returned from an API call |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::AutomationExecutionMetadata object: |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
38
|
|
|
|
|
|
|
$result->Att1->AutomationExecutionId |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 DESCRIPTION |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Details about a specific Automation execution. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 AutomationExecutionId => Str |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
The execution ID. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 AutomationExecutionStatus => Str |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
The status of the execution. Valid values include: Running, Succeeded, |
55
|
|
|
|
|
|
|
Failed, Timed out, or Cancelled. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head2 DocumentName => Str |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
The name of the Automation document used during execution. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 DocumentVersion => Str |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
The document version used during the execution. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head2 ExecutedBy => Str |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
The IAM role ARN of the user who executed the Automation. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head2 ExecutionEndTime => Str |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
The time the execution finished. This is not populated if the execution |
76
|
|
|
|
|
|
|
is still in progress. |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head2 ExecutionStartTime => Str |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
The time the execution started.E<gt> |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head2 LogFile => Str |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
An Amazon S3 bucket where execution information is stored. |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=head2 Outputs => L<Paws::SSM::AutomationParameterMap> |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
The list of execution outputs as defined in the Automation document. |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
=head1 SEE ALSO |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::SSM> |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
=cut |
106
|
|
|
|
|
|
|
|