File Coverage

blib/lib/Paws/SSM/GetMaintenanceWindowResult.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


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