line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SSM::GetMaintenanceWindowExecutionResult; |
3
|
1
|
|
|
1
|
|
275
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has EndTime => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has StartTime => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has StatusDetails => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has TaskIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
9
|
|
|
|
|
|
|
has WindowExecutionId => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::SSM::GetMaintenanceWindowExecutionResult |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 EndTime => Str |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
The time the Maintenance Window finished executing. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 StartTime => Str |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The time the Maintenance Window started executing. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 Status => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The status of the Maintenance Window execution. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Valid values are: C<"PENDING">, C<"IN_PROGRESS">, C<"SUCCESS">, C<"FAILED">, C<"TIMED_OUT">, C<"CANCELLING">, C<"CANCELLED">, C<"SKIPPED_OVERLAPPING"> |
37
|
|
|
|
|
|
|
=head2 StatusDetails => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The details explaining the Status. Only available for certain status |
40
|
|
|
|
|
|
|
values. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 TaskIds => ArrayRef[Str|Undef] |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
The ID of the task executions from the Maintenance Window execution. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 WindowExecutionId => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
The ID of the Maintenance Window execution. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head2 _request_id => Str |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=cut |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
1; |