line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::KMS::ListAliasesResponse; |
3
|
1
|
|
|
1
|
|
332
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has Aliases => (is => 'ro', isa => 'ArrayRef[Paws::KMS::AliasListEntry]'); |
5
|
|
|
|
|
|
|
has NextMarker => (is => 'ro', isa => 'Str'); |
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::ListAliasesResponse |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 Aliases => ArrayRef[L<Paws::KMS::AliasListEntry>] |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
A list of key aliases in the user's account. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 NextMarker => Str |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
When C<Truncated> is true, this element is present and contains the |
27
|
|
|
|
|
|
|
value to use for the C<Marker> parameter in a subsequent request. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 Truncated => Bool |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
A flag that indicates whether there are more items in the list. When |
33
|
|
|
|
|
|
|
this value is true, the list in this response is truncated. To retrieve |
34
|
|
|
|
|
|
|
more items, pass the value of the C<NextMarker> element in this |
35
|
|
|
|
|
|
|
response to the C<Marker> parameter in a subsequent request. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head2 _request_id => Str |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=cut |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
1; |