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