File Coverage

blib/lib/Paws/KMS/ListResourceTags.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::KMS::ListResourceTags;
3 1     1   620 use Moose;
  1         3  
  1         9  
4             has KeyId => (is => 'ro', isa => 'Str', required => 1);
5             has Limit => (is => 'ro', isa => 'Int');
6             has Marker => (is => 'ro', isa => 'Str');
7              
8 1     1   7703 use MooseX::ClassAttribute;
  1         4  
  1         11  
9              
10             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListResourceTags');
11             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::KMS::ListResourceTagsResponse');
12             class_has _result_key => (isa => 'Str', is => 'ro');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::KMS::ListResourceTags - Arguments for method ListResourceTags on Paws::KMS
20              
21             =head1 DESCRIPTION
22              
23             This class represents the parameters used for calling the method ListResourceTags on the
24             AWS Key Management Service service. Use the attributes of this class
25             as arguments to method ListResourceTags.
26              
27             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListResourceTags.
28              
29             As an example:
30              
31             $service_obj->ListResourceTags(Att1 => $value1, Att2 => $value2, ...);
32              
33             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
34              
35             =head1 ATTRIBUTES
36              
37              
38             =head2 B<REQUIRED> KeyId => Str
39              
40             A unique identifier for the CMK whose tags you are listing. You can use
41             the unique key ID or the Amazon Resource Name (ARN) of the CMK.
42             Examples:
43              
44             =over
45              
46             =item *
47              
48             Unique key ID: C<1234abcd-12ab-34cd-56ef-1234567890ab>
49              
50             =item *
51              
52             Key ARN:
53             C<arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab>
54              
55             =back
56              
57              
58              
59              
60             =head2 Limit => Int
61              
62             Use this parameter to specify the maximum number of items to return.
63             When this value is present, AWS KMS does not return more than the
64             specified number of items, but it might return fewer.
65              
66             This value is optional. If you include a value, it must be between 1
67             and 50, inclusive. If you do not include a value, it defaults to 50.
68              
69              
70              
71             =head2 Marker => Str
72              
73             Use this parameter in a subsequent request after you receive a response
74             with truncated results. Set it to the value of C<NextMarker> from the
75             truncated response you just received.
76              
77             Do not attempt to construct this value. Use only the value of
78             C<NextMarker> from the truncated response you just received.
79              
80              
81              
82              
83             =head1 SEE ALSO
84              
85             This class forms part of L<Paws>, documenting arguments for method ListResourceTags in L<Paws::KMS>
86              
87             =head1 BUGS and CONTRIBUTIONS
88              
89             The source code is located here: https://github.com/pplu/aws-sdk-perl
90              
91             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
92              
93             =cut
94