File Coverage

blib/lib/Paws/CognitoIdp/GetUserResponse.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::GetUserResponse;
3 1     1   522 use Moose;
  1         2  
  1         7  
4             has MFAOptions => (is => 'ro', isa => 'ArrayRef[Paws::CognitoIdp::MFAOptionType]');
5             has UserAttributes => (is => 'ro', isa => 'ArrayRef[Paws::CognitoIdp::AttributeType]', required => 1);
6             has Username => (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::GetUserResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 MFAOptions => ArrayRef[L<Paws::CognitoIdp::MFAOptionType>]
20              
21             Specifies the options for MFA (e.g., email or phone number).
22              
23              
24             =head2 B<REQUIRED> UserAttributes => ArrayRef[L<Paws::CognitoIdp::AttributeType>]
25              
26             An array of name-value pairs representing user attributes.
27              
28             For custom attributes, you must prepend the C<custom:> prefix to the
29             attribute name.
30              
31              
32             =head2 B<REQUIRED> Username => Str
33              
34             The user name of the user you wish to retrieve from the get user
35             request.
36              
37              
38             =head2 _request_id => Str
39              
40              
41             =cut
42              
43             1;