| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SSM::GetMaintenanceWindowExecutionTaskResult; |
|
3
|
1
|
|
|
1
|
|
307
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
5
|
|
|
4
|
|
|
|
|
|
|
has EndTime => (is => 'ro', isa => 'Str'); |
|
5
|
|
|
|
|
|
|
has MaxConcurrency => (is => 'ro', isa => 'Str'); |
|
6
|
|
|
|
|
|
|
has MaxErrors => (is => 'ro', isa => 'Str'); |
|
7
|
|
|
|
|
|
|
has Priority => (is => 'ro', isa => 'Int'); |
|
8
|
|
|
|
|
|
|
has ServiceRole => (is => 'ro', isa => 'Str'); |
|
9
|
|
|
|
|
|
|
has StartTime => (is => 'ro', isa => 'Str'); |
|
10
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Str'); |
|
11
|
|
|
|
|
|
|
has StatusDetails => (is => 'ro', isa => 'Str'); |
|
12
|
|
|
|
|
|
|
has TaskArn => (is => 'ro', isa => 'Str'); |
|
13
|
|
|
|
|
|
|
has TaskExecutionId => (is => 'ro', isa => 'Str'); |
|
14
|
|
|
|
|
|
|
has TaskParameters => (is => 'ro', isa => 'ArrayRef[Paws::SSM::MaintenanceWindowTaskParameters]'); |
|
15
|
|
|
|
|
|
|
has Type => (is => 'ro', isa => 'Str'); |
|
16
|
|
|
|
|
|
|
has WindowExecutionId => (is => 'ro', isa => 'Str'); |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 NAME |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Paws::SSM::GetMaintenanceWindowExecutionTaskResult |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 EndTime => Str |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
The time the task execution completed. |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 MaxConcurrency => Str |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
The defined maximum number of task executions that could be run in |
|
37
|
|
|
|
|
|
|
parallel. |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 MaxErrors => Str |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
The defined maximum number of task execution errors allowed before |
|
43
|
|
|
|
|
|
|
scheduling of the task execution would have been stopped. |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 Priority => Int |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
The priority of the task. |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 ServiceRole => Str |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The role that was assumed when executing the task. |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 StartTime => Str |
|
57
|
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The time the task execution started. |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 Status => Str |
|
62
|
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
The status of the task. |
|
64
|
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
Valid values are: C<"PENDING">, C<"IN_PROGRESS">, C<"SUCCESS">, C<"FAILED">, C<"TIMED_OUT">, C<"CANCELLING">, C<"CANCELLED">, C<"SKIPPED_OVERLAPPING"> |
|
66
|
|
|
|
|
|
|
=head2 StatusDetails => Str |
|
67
|
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The details explaining the Status. Only available for certain status |
|
69
|
|
|
|
|
|
|
values. |
|
70
|
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 TaskArn => Str |
|
73
|
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
The ARN of the executed task. |
|
75
|
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head2 TaskExecutionId => Str |
|
78
|
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
The ID of the specific task execution in the Maintenance Window task |
|
80
|
|
|
|
|
|
|
that was retrieved. |
|
81
|
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head2 TaskParameters => ArrayRef[L<Paws::SSM::MaintenanceWindowTaskParameters>] |
|
84
|
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
The parameters passed to the task when it was executed. The map has the |
|
86
|
|
|
|
|
|
|
following format: |
|
87
|
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
Key: string, between 1 and 255 characters |
|
89
|
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
Value: an array of strings, each string is between 1 and 255 characters |
|
91
|
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
=head2 Type => Str |
|
94
|
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
The type of task executed. |
|
96
|
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
Valid values are: C<"RUN_COMMAND">, C<"AUTOMATION">, C<"STEP_FUNCTIONS">, C<"LAMBDA"> |
|
98
|
|
|
|
|
|
|
=head2 WindowExecutionId => Str |
|
99
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
The ID of the Maintenance Window execution that includes the task. |
|
101
|
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
104
|
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
=cut |
|
107
|
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
1; |