line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::STS::GetCallerIdentityResponse; |
3
|
1
|
|
|
1
|
|
294
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has Account => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has Arn => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has UserId => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::STS::GetCallerIdentityResponse |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 Account => Str |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
The AWS account ID number of the account that owns or contains the |
23
|
|
|
|
|
|
|
calling entity. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 Arn => Str |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The AWS ARN associated with the calling entity. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 UserId => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
The unique identifier of the calling entity. The exact value depends on |
34
|
|
|
|
|
|
|
the type of entity making the call. The values returned are those |
35
|
|
|
|
|
|
|
listed in the B<aws:userid> column in the Principal table found on the |
36
|
|
|
|
|
|
|
B<Policy Variables> reference page in the I<IAM User Guide>. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 _request_id => Str |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=cut |
43
|
|
|
|
|
|
|
|