File Coverage

blib/lib/Paws/SSM/DescribeInstancePatchesResult.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::DescribeInstancePatchesResult;
3 1     1   881 use Moose;
  1         4  
  1         12  
4             has NextToken => (is => 'ro', isa => 'Str');
5             has Patches => (is => 'ro', isa => 'ArrayRef[Paws::SSM::PatchComplianceData]');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::SSM::DescribeInstancePatchesResult
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 NextToken => Str
19              
20             The token to use when requesting the next set of items. If there are no
21             additional items to return, the string is empty.
22              
23              
24             =head2 Patches => ArrayRef[L<Paws::SSM::PatchComplianceData>]
25              
26             Each entry in the array is a structure containing:
27              
28             Title (string)
29              
30             KBId (string)
31              
32             Classification (string)
33              
34             Severity (string)
35              
36             State (string: "INSTALLED", "INSTALLED OTHER", "MISSING", "NOT
37             APPLICABLE", "FAILED")
38              
39             InstalledTime (DateTime)
40              
41             InstalledBy (string)
42              
43              
44             =head2 _request_id => Str
45              
46              
47             =cut
48              
49             1;