File Coverage

blib/lib/Paws/KMS/ListKeysResponse.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::KMS::ListKeysResponse;
3 1     1   620 use Moose;
  1         5  
  1         11  
4             has Keys => (is => 'ro', isa => 'ArrayRef[Paws::KMS::KeyListEntry]');
5             has NextMarker => (is => 'ro', isa => 'Str');
6             has Truncated => (is => 'ro', isa => 'Bool');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::KMS::ListKeysResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Keys => ArrayRef[L<Paws::KMS::KeyListEntry>]
20              
21             A list of keys.
22              
23              
24             =head2 NextMarker => Str
25              
26             When C<Truncated> is true, this element is present and contains the
27             value to use for the C<Marker> parameter in a subsequent request.
28              
29              
30             =head2 Truncated => Bool
31              
32             A flag that indicates whether there are more items in the list. When
33             this value is true, the list in this response is truncated. To retrieve
34             more items, pass the value of the C<NextMarker> element in this
35             response to the C<Marker> parameter in a subsequent request.
36              
37              
38             =head2 _request_id => Str
39              
40              
41             =cut
42              
43             1;