File Coverage

blib/lib/Paws/KMS/ListKeyPoliciesResponse.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::ListKeyPoliciesResponse;
3 1     1   617 use Moose;
  1         4  
  1         10  
4             has NextMarker => (is => 'ro', isa => 'Str');
5             has PolicyNames => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
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::ListKeyPoliciesResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 NextMarker => Str
20              
21             When C<Truncated> is true, this element is present and contains the
22             value to use for the C<Marker> parameter in a subsequent request.
23              
24              
25             =head2 PolicyNames => ArrayRef[Str|Undef]
26              
27             A list of policy names. Currently, there is only one policy and it is
28             named "Default".
29              
30              
31             =head2 Truncated => Bool
32              
33             A flag that indicates whether there are more items in the list. When
34             this value is true, the list in this response is truncated. To retrieve
35             more items, pass the value of the C<NextMarker> element in this
36             response to the C<Marker> parameter in a subsequent request.
37              
38              
39             =head2 _request_id => Str
40              
41              
42             =cut
43              
44             1;