File Coverage

blib/lib/Paws/SSM/ListInventoryEntriesResult.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::ListInventoryEntriesResult;
3 1     1   640 use Moose;
  1         3  
  1         11  
4             has CaptureTime => (is => 'ro', isa => 'Str');
5             has Entries => (is => 'ro', isa => 'ArrayRef[Paws::SSM::InventoryItemEntry]');
6             has InstanceId => (is => 'ro', isa => 'Str');
7             has NextToken => (is => 'ro', isa => 'Str');
8             has SchemaVersion => (is => 'ro', isa => 'Str');
9             has TypeName => (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::ListInventoryEntriesResult
18              
19             =head1 ATTRIBUTES
20              
21              
22             =head2 CaptureTime => Str
23              
24             The time that inventory information was collected for the instance(s).
25              
26              
27             =head2 Entries => ArrayRef[L<Paws::SSM::InventoryItemEntry>]
28              
29             A list of inventory items on the instance(s).
30              
31              
32             =head2 InstanceId => Str
33              
34             The instance ID targeted by the request to query inventory information.
35              
36              
37             =head2 NextToken => Str
38              
39             The token to use when requesting the next set of items. If there are no
40             additional items to return, the string is empty.
41              
42              
43             =head2 SchemaVersion => Str
44              
45             The inventory schema version used by the instance(s).
46              
47              
48             =head2 TypeName => Str
49              
50             The type of inventory item returned by the request.
51              
52              
53             =head2 _request_id => Str
54              
55              
56             =cut
57              
58             1;