| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::STS::GetSessionTokenResponse; |
|
3
|
1
|
|
|
1
|
|
598
|
use Moose; |
|
|
1
|
|
|
1
|
|
3
|
|
|
|
1
|
|
|
|
|
11
|
|
|
|
1
|
|
|
|
|
385
|
|
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
|
|
has Credentials => (is => 'ro', isa => 'Paws::STS::Credentials'); |
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
7
|
|
|
|
|
|
|
1; |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::STS::GetSessionTokenResponse |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 Credentials => L<Paws::STS::Credentials> |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
The temporary security credentials, which include an access key ID, a |
|
21
|
|
|
|
|
|
|
secret access key, and a security (or session) token. |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
B<Note:> The size of the security token that STS APIs return is not |
|
24
|
|
|
|
|
|
|
fixed. We strongly recommend that you make no assumptions about the |
|
25
|
|
|
|
|
|
|
maximum size. As of this writing, the typical size is less than 4096 |
|
26
|
|
|
|
|
|
|
bytes, but that can vary. Also, future updates to AWS might require |
|
27
|
|
|
|
|
|
|
larger sizes. |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=cut |
|
34
|
|
|
|
|
|
|
|