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