File Coverage

blib/lib/Paws/CognitoIdp/SignUpResponse.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::SignUpResponse;
3 1     1   589 use Moose;
  1         3  
  1         7  
4             has CodeDeliveryDetails => (is => 'ro', isa => 'Paws::CognitoIdp::CodeDeliveryDetailsType');
5             has UserConfirmed => (is => 'ro', isa => 'Bool', required => 1);
6             has UserSub => (is => 'ro', isa => 'Str', required => 1);
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::CognitoIdp::SignUpResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 CodeDeliveryDetails => L<Paws::CognitoIdp::CodeDeliveryDetailsType>
20              
21             The code delivery details returned by the server response to the user
22             registration request.
23              
24              
25             =head2 B<REQUIRED> UserConfirmed => Bool
26              
27             A response from the server indicating that a user registration has been
28             confirmed.
29              
30              
31             =head2 B<REQUIRED> UserSub => Str
32              
33             The UUID of the authenticated user. This is not the same as
34             C<username>.
35              
36              
37             =head2 _request_id => Str
38              
39              
40             =cut
41              
42             1;