line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SSM::UpdateMaintenanceWindowResult; |
3
|
1
|
|
|
1
|
|
663
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
10
|
|
4
|
|
|
|
|
|
|
has AllowUnassociatedTargets => (is => 'ro', isa => 'Bool'); |
5
|
|
|
|
|
|
|
has Cutoff => (is => 'ro', isa => 'Int'); |
6
|
|
|
|
|
|
|
has Duration => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
has Enabled => (is => 'ro', isa => 'Bool'); |
8
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has Schedule => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has WindowId => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
### main pod documentation begin ### |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Paws::SSM::UpdateMaintenanceWindowResult |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 AllowUnassociatedTargets => Bool |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Whether targets must be registered with the Maintenance Window before |
26
|
|
|
|
|
|
|
tasks can be defined for those targets. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 Cutoff => Int |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
The number of hours before the end of the Maintenance Window that |
32
|
|
|
|
|
|
|
Systems Manager stops scheduling new tasks for execution. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 Duration => Int |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
The duration of the Maintenance Window in hours. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 Enabled => Bool |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Whether the Maintenance Window is enabled. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 Name => Str |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
The name of the Maintenance Window. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 Schedule => Str |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
The schedule of the Maintenance Window in the form of a cron or rate |
53
|
|
|
|
|
|
|
expression. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 WindowId => Str |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The ID of the created Maintenance Window. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 _request_id => Str |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=cut |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
1; |