line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::KMS::ListKeyPolicies; |
3
|
1
|
|
|
1
|
|
630
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
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
|
|
6562
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListKeyPolicies'); |
11
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::KMS::ListKeyPoliciesResponse'); |
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::ListKeyPolicies - Arguments for method ListKeyPolicies on Paws::KMS |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 DESCRIPTION |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
This class represents the parameters used for calling the method ListKeyPolicies on the |
24
|
|
|
|
|
|
|
AWS Key Management Service service. Use the attributes of this class |
25
|
|
|
|
|
|
|
as arguments to method ListKeyPolicies. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListKeyPolicies. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
As an example: |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
$service_obj->ListKeyPolicies(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 (CMK). You can use the |
41
|
|
|
|
|
|
|
unique key ID or the Amazon Resource Name (ARN) of the CMK. Examples: |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=over |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=item * |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Unique key ID: C<1234abcd-12ab-34cd-56ef-1234567890ab> |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=item * |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Key ARN: |
52
|
|
|
|
|
|
|
C<arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab> |
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 1000, inclusive. If you do not include a value, it defaults to 100. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
Currently only 1 policy can be attached to a key. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 Marker => Str |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
Use this parameter in a subsequent request after you receive a response |
75
|
|
|
|
|
|
|
with truncated results. Set it to the value of C<NextMarker> from the |
76
|
|
|
|
|
|
|
truncated response you just received. |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=head1 SEE ALSO |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method ListKeyPolicies in L<Paws::KMS> |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=cut |
92
|
|
|
|
|
|
|
|