line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::Signin::GetSigninToken; |
2
|
1
|
|
|
1
|
|
515
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
|
1
|
|
|
|
|
503
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
3
|
|
|
|
|
|
|
has SessionId => (is => 'ro', isa => 'Str', required => 1); |
4
|
|
|
|
|
|
|
has SessionKey => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
has SessionToken => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has SessionDuration => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
6438
|
use MooseX::ClassAttribute; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
11
|
|
|
1
|
|
|
|
|
6699
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
10
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
class_has _api_uri => (isa => 'Str', is => 'ro', default => '/federation'); |
11
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'getSigninToken'); |
12
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Signin::GetSigninTokenResponse'); |
13
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
### main pod documentation begin ### |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Paws::Signin::GetSigninToken - Arguments for method GetSigninToken on Paws::Signin |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 DESCRIPTION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 Session => Str |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
A JSON encoded string that represents an object with keys sessionId, sessionKey and sessionToken |
28
|
|
|
|
|
|
|
with the temporary credentials for the session. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 SEE ALSO |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
This class forms part of L<Paws>, and documents parameters for ListAccessKeys in Paws::IAM |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|