File Coverage

blib/lib/Paws/CognitoIdp/AdminRespondToAuthChallengeResponse.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::CognitoIdp::AdminRespondToAuthChallengeResponse;
3 1     1   453 use Moose;
  1         3  
  1         7  
4             has AuthenticationResult => (is => 'ro', isa => 'Paws::CognitoIdp::AuthenticationResultType');
5             has ChallengeName => (is => 'ro', isa => 'Str');
6             has ChallengeParameters => (is => 'ro', isa => 'Paws::CognitoIdp::ChallengeParametersType');
7             has Session => (is => 'ro', isa => 'Str');
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::CognitoIdp::AdminRespondToAuthChallengeResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 AuthenticationResult => L<Paws::CognitoIdp::AuthenticationResultType>
21              
22             The result returned by the server in response to the authentication
23             request.
24              
25              
26             =head2 ChallengeName => Str
27              
28             The name of the challenge. For more information, see AdminInitiateAuth.
29              
30             Valid values are: C<"SMS_MFA">, C<"PASSWORD_VERIFIER">, C<"CUSTOM_CHALLENGE">, C<"DEVICE_SRP_AUTH">, C<"DEVICE_PASSWORD_VERIFIER">, C<"ADMIN_NO_SRP_AUTH">, C<"NEW_PASSWORD_REQUIRED">
31             =head2 ChallengeParameters => L<Paws::CognitoIdp::ChallengeParametersType>
32              
33             The challenge parameters. For more information, see AdminInitiateAuth.
34              
35              
36             =head2 Session => Str
37              
38             The session which should be passed both ways in challenge-response
39             calls to the service. If the InitiateAuth or RespondToAuthChallenge API
40             call determines that the caller needs to go through another challenge,
41             they return a session with other challenge parameters. This session
42             should be passed as it is to the next C<RespondToAuthChallenge> API
43             call.
44              
45              
46             =head2 _request_id => Str
47              
48              
49             =cut
50              
51             1;