File Coverage

blib/lib/Paws/KMS/ListGrants.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::ListGrants;
3 1     1   623 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   6826 use MooseX::ClassAttribute;
  1         3  
  1         9  
9              
10             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListGrants');
11             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::KMS::ListGrantsResponse');
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::ListGrants - Arguments for method ListGrants on Paws::KMS
20              
21             =head1 DESCRIPTION
22              
23             This class represents the parameters used for calling the method ListGrants on the
24             AWS Key Management Service service. Use the attributes of this class
25             as arguments to method ListGrants.
26              
27             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListGrants.
28              
29             As an example:
30              
31             $service_obj->ListGrants(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 customer master key. This value can be a
41             globally unique identifier or the fully specified ARN to a key.
42              
43             =over
44              
45             =item *
46              
47             Key ARN Example -
48             arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
49              
50             =item *
51              
52             Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
53              
54             =back
55              
56              
57              
58              
59             =head2 Limit => Int
60              
61             Use this parameter to specify the maximum number of items to return.
62             When this value is present, AWS KMS does not return more than the
63             specified number of items, but it might return fewer.
64              
65             This value is optional. If you include a value, it must be between 1
66             and 100, inclusive. If you do not include a value, it defaults to 50.
67              
68              
69              
70             =head2 Marker => Str
71              
72             Use this parameter in a subsequent request after you receive a response
73             with truncated results. Set it to the value of C<NextMarker> from the
74             truncated response you just received.
75              
76              
77              
78              
79             =head1 SEE ALSO
80              
81             This class forms part of L<Paws>, documenting arguments for method ListGrants in L<Paws::KMS>
82              
83             =head1 BUGS and CONTRIBUTIONS
84              
85             The source code is located here: https://github.com/pplu/aws-sdk-perl
86              
87             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
88              
89             =cut
90