File Coverage

blib/lib/Paws/KMS/ListResourceTagsResponse.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::ListResourceTagsResponse;
3 1     1   736 use Moose;
  1         4  
  1         9  
4             has NextMarker => (is => 'ro', isa => 'Str');
5             has Tags => (is => 'ro', isa => 'ArrayRef[Paws::KMS::Tag]');
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::ListResourceTagsResponse
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             Do not assume or infer any information from this value.
25              
26              
27             =head2 Tags => ArrayRef[L<Paws::KMS::Tag>]
28              
29             A list of tags. Each tag consists of a tag key and a tag value.
30              
31              
32             =head2 Truncated => Bool
33              
34             A flag that indicates whether there are more items in the list. When
35             this value is true, the list in this response is truncated. To retrieve
36             more items, pass the value of the C<NextMarker> element in this
37             response to the C<Marker> parameter in a subsequent request.
38              
39              
40             =head2 _request_id => Str
41              
42              
43             =cut
44              
45             1;