File Coverage

blib/lib/Paws/SSM/UpdateMaintenanceWindowTargetResult.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::UpdateMaintenanceWindowTargetResult;
3 1     1   322 use Moose;
  1         2  
  1         8  
4             has Description => (is => 'ro', isa => 'Str');
5             has Name => (is => 'ro', isa => 'Str');
6             has OwnerInformation => (is => 'ro', isa => 'Str');
7             has Targets => (is => 'ro', isa => 'ArrayRef[Paws::SSM::Target]');
8             has WindowId => (is => 'ro', isa => 'Str');
9             has WindowTargetId => (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::UpdateMaintenanceWindowTargetResult
18              
19             =head1 ATTRIBUTES
20              
21              
22             =head2 Description => Str
23              
24             The updated description.
25              
26              
27             =head2 Name => Str
28              
29             The updated name.
30              
31              
32             =head2 OwnerInformation => Str
33              
34             The updated owner.
35              
36              
37             =head2 Targets => ArrayRef[L<Paws::SSM::Target>]
38              
39             The updated targets.
40              
41              
42             =head2 WindowId => Str
43              
44             The Maintenance Window ID specified in the update request.
45              
46              
47             =head2 WindowTargetId => Str
48              
49             The target ID specified in the update request.
50              
51              
52             =head2 _request_id => Str
53              
54              
55             =cut
56              
57             1;