File Coverage

blib/lib/Paws/SSM/GetDeployablePatchSnapshotForInstanceResult.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::GetDeployablePatchSnapshotForInstanceResult;
3 1     1   683 use Moose;
  1         4  
  1         10  
4             has InstanceId => (is => 'ro', isa => 'Str');
5             has Product => (is => 'ro', isa => 'Str');
6             has SnapshotDownloadUrl => (is => 'ro', isa => 'Str');
7             has SnapshotId => (is => 'ro', isa => 'Str');
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::SSM::GetDeployablePatchSnapshotForInstanceResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 InstanceId => Str
21              
22             The ID of the instance.
23              
24              
25             =head2 Product => Str
26              
27             Returns the specific operating system (for example Windows Server 2012
28             or Amazon Linux 2015.09) on the instance for the specified patch
29             snapshot.
30              
31              
32             =head2 SnapshotDownloadUrl => Str
33              
34             A pre-signed Amazon S3 URL that can be used to download the patch
35             snapshot.
36              
37              
38             =head2 SnapshotId => Str
39              
40             The user-defined snapshot ID.
41              
42              
43             =head2 _request_id => Str
44              
45              
46             =cut
47              
48             1;