File Coverage

blib/lib/Paws/Signin/Login.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


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