| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | package Paws::CognitoIdp::UserPoolType; | 
| 2 | 1 |  |  | 1 |  | 394 | use Moose; | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 1 |  |  |  |  | 6 |  | 
| 3 |  |  |  |  |  |  | has AdminCreateUserConfig => (is => 'ro', isa => 'Paws::CognitoIdp::AdminCreateUserConfigType'); | 
| 4 |  |  |  |  |  |  | has AliasAttributes => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); | 
| 5 |  |  |  |  |  |  | has AutoVerifiedAttributes => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); | 
| 6 |  |  |  |  |  |  | has CreationDate => (is => 'ro', isa => 'Str'); | 
| 7 |  |  |  |  |  |  | has DeviceConfiguration => (is => 'ro', isa => 'Paws::CognitoIdp::DeviceConfigurationType'); | 
| 8 |  |  |  |  |  |  | has EmailConfiguration => (is => 'ro', isa => 'Paws::CognitoIdp::EmailConfigurationType'); | 
| 9 |  |  |  |  |  |  | has EmailConfigurationFailure => (is => 'ro', isa => 'Str'); | 
| 10 |  |  |  |  |  |  | has EmailVerificationMessage => (is => 'ro', isa => 'Str'); | 
| 11 |  |  |  |  |  |  | has EmailVerificationSubject => (is => 'ro', isa => 'Str'); | 
| 12 |  |  |  |  |  |  | has EstimatedNumberOfUsers => (is => 'ro', isa => 'Int'); | 
| 13 |  |  |  |  |  |  | has Id => (is => 'ro', isa => 'Str'); | 
| 14 |  |  |  |  |  |  | has LambdaConfig => (is => 'ro', isa => 'Paws::CognitoIdp::LambdaConfigType'); | 
| 15 |  |  |  |  |  |  | has LastModifiedDate => (is => 'ro', isa => 'Str'); | 
| 16 |  |  |  |  |  |  | has MfaConfiguration => (is => 'ro', isa => 'Str'); | 
| 17 |  |  |  |  |  |  | has Name => (is => 'ro', isa => 'Str'); | 
| 18 |  |  |  |  |  |  | has Policies => (is => 'ro', isa => 'Paws::CognitoIdp::UserPoolPolicyType'); | 
| 19 |  |  |  |  |  |  | has SchemaAttributes => (is => 'ro', isa => 'ArrayRef[Paws::CognitoIdp::SchemaAttributeType]'); | 
| 20 |  |  |  |  |  |  | has SmsAuthenticationMessage => (is => 'ro', isa => 'Str'); | 
| 21 |  |  |  |  |  |  | has SmsConfiguration => (is => 'ro', isa => 'Paws::CognitoIdp::SmsConfigurationType'); | 
| 22 |  |  |  |  |  |  | has SmsConfigurationFailure => (is => 'ro', isa => 'Str'); | 
| 23 |  |  |  |  |  |  | has SmsVerificationMessage => (is => 'ro', isa => 'Str'); | 
| 24 |  |  |  |  |  |  | has Status => (is => 'ro', isa => 'Str'); | 
| 25 |  |  |  |  |  |  | has UsernameAttributes => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); | 
| 26 |  |  |  |  |  |  | has UserPoolTags => (is => 'ro', isa => 'Paws::CognitoIdp::UserPoolTagsType'); | 
| 27 |  |  |  |  |  |  | has VerificationMessageTemplate => (is => 'ro', isa => 'Paws::CognitoIdp::VerificationMessageTemplateType'); | 
| 28 |  |  |  |  |  |  | 1; | 
| 29 |  |  |  |  |  |  |  | 
| 30 |  |  |  |  |  |  | ### main pod documentation begin ### | 
| 31 |  |  |  |  |  |  |  | 
| 32 |  |  |  |  |  |  | =head1 NAME | 
| 33 |  |  |  |  |  |  |  | 
| 34 |  |  |  |  |  |  | Paws::CognitoIdp::UserPoolType | 
| 35 |  |  |  |  |  |  |  | 
| 36 |  |  |  |  |  |  | =head1 USAGE | 
| 37 |  |  |  |  |  |  |  | 
| 38 |  |  |  |  |  |  | This class represents one of two things: | 
| 39 |  |  |  |  |  |  |  | 
| 40 |  |  |  |  |  |  | =head3 Arguments in a call to a service | 
| 41 |  |  |  |  |  |  |  | 
| 42 |  |  |  |  |  |  | Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. | 
| 43 |  |  |  |  |  |  | Each attribute should be used as a named argument in the calls that expect this type of object. | 
| 44 |  |  |  |  |  |  |  | 
| 45 |  |  |  |  |  |  | As an example, if Att1 is expected to be a Paws::CognitoIdp::UserPoolType object: | 
| 46 |  |  |  |  |  |  |  | 
| 47 |  |  |  |  |  |  | $service_obj->Method(Att1 => { AdminCreateUserConfig => $value, ..., VerificationMessageTemplate => $value  }); | 
| 48 |  |  |  |  |  |  |  | 
| 49 |  |  |  |  |  |  | =head3 Results returned from an API call | 
| 50 |  |  |  |  |  |  |  | 
| 51 |  |  |  |  |  |  | Use accessors for each attribute. If Att1 is expected to be an Paws::CognitoIdp::UserPoolType object: | 
| 52 |  |  |  |  |  |  |  | 
| 53 |  |  |  |  |  |  | $result = $service_obj->Method(...); | 
| 54 |  |  |  |  |  |  | $result->Att1->AdminCreateUserConfig | 
| 55 |  |  |  |  |  |  |  | 
| 56 |  |  |  |  |  |  | =head1 DESCRIPTION | 
| 57 |  |  |  |  |  |  |  | 
| 58 |  |  |  |  |  |  | A container for information about the user pool type. | 
| 59 |  |  |  |  |  |  |  | 
| 60 |  |  |  |  |  |  | =head1 ATTRIBUTES | 
| 61 |  |  |  |  |  |  |  | 
| 62 |  |  |  |  |  |  |  | 
| 63 |  |  |  |  |  |  | =head2 AdminCreateUserConfig => L<Paws::CognitoIdp::AdminCreateUserConfigType> | 
| 64 |  |  |  |  |  |  |  | 
| 65 |  |  |  |  |  |  | The configuration for C<AdminCreateUser> requests. | 
| 66 |  |  |  |  |  |  |  | 
| 67 |  |  |  |  |  |  |  | 
| 68 |  |  |  |  |  |  | =head2 AliasAttributes => ArrayRef[Str|Undef] | 
| 69 |  |  |  |  |  |  |  | 
| 70 |  |  |  |  |  |  | Specifies the attributes that are aliased in a user pool. | 
| 71 |  |  |  |  |  |  |  | 
| 72 |  |  |  |  |  |  |  | 
| 73 |  |  |  |  |  |  | =head2 AutoVerifiedAttributes => ArrayRef[Str|Undef] | 
| 74 |  |  |  |  |  |  |  | 
| 75 |  |  |  |  |  |  | Specifies the attributes that are auto-verified in a user pool. | 
| 76 |  |  |  |  |  |  |  | 
| 77 |  |  |  |  |  |  |  | 
| 78 |  |  |  |  |  |  | =head2 CreationDate => Str | 
| 79 |  |  |  |  |  |  |  | 
| 80 |  |  |  |  |  |  | The date the user pool was created. | 
| 81 |  |  |  |  |  |  |  | 
| 82 |  |  |  |  |  |  |  | 
| 83 |  |  |  |  |  |  | =head2 DeviceConfiguration => L<Paws::CognitoIdp::DeviceConfigurationType> | 
| 84 |  |  |  |  |  |  |  | 
| 85 |  |  |  |  |  |  | The device configuration. | 
| 86 |  |  |  |  |  |  |  | 
| 87 |  |  |  |  |  |  |  | 
| 88 |  |  |  |  |  |  | =head2 EmailConfiguration => L<Paws::CognitoIdp::EmailConfigurationType> | 
| 89 |  |  |  |  |  |  |  | 
| 90 |  |  |  |  |  |  | The email configuration. | 
| 91 |  |  |  |  |  |  |  | 
| 92 |  |  |  |  |  |  |  | 
| 93 |  |  |  |  |  |  | =head2 EmailConfigurationFailure => Str | 
| 94 |  |  |  |  |  |  |  | 
| 95 |  |  |  |  |  |  | The reason why the email configuration cannot send the messages to your | 
| 96 |  |  |  |  |  |  | users. | 
| 97 |  |  |  |  |  |  |  | 
| 98 |  |  |  |  |  |  |  | 
| 99 |  |  |  |  |  |  | =head2 EmailVerificationMessage => Str | 
| 100 |  |  |  |  |  |  |  | 
| 101 |  |  |  |  |  |  | The contents of the email verification message. | 
| 102 |  |  |  |  |  |  |  | 
| 103 |  |  |  |  |  |  |  | 
| 104 |  |  |  |  |  |  | =head2 EmailVerificationSubject => Str | 
| 105 |  |  |  |  |  |  |  | 
| 106 |  |  |  |  |  |  | The subject of the email verification message. | 
| 107 |  |  |  |  |  |  |  | 
| 108 |  |  |  |  |  |  |  | 
| 109 |  |  |  |  |  |  | =head2 EstimatedNumberOfUsers => Int | 
| 110 |  |  |  |  |  |  |  | 
| 111 |  |  |  |  |  |  | A number estimating the size of the user pool. | 
| 112 |  |  |  |  |  |  |  | 
| 113 |  |  |  |  |  |  |  | 
| 114 |  |  |  |  |  |  | =head2 Id => Str | 
| 115 |  |  |  |  |  |  |  | 
| 116 |  |  |  |  |  |  | The ID of the user pool. | 
| 117 |  |  |  |  |  |  |  | 
| 118 |  |  |  |  |  |  |  | 
| 119 |  |  |  |  |  |  | =head2 LambdaConfig => L<Paws::CognitoIdp::LambdaConfigType> | 
| 120 |  |  |  |  |  |  |  | 
| 121 |  |  |  |  |  |  | A container for the AWS Lambda triggers associated with a user pool. | 
| 122 |  |  |  |  |  |  |  | 
| 123 |  |  |  |  |  |  |  | 
| 124 |  |  |  |  |  |  | =head2 LastModifiedDate => Str | 
| 125 |  |  |  |  |  |  |  | 
| 126 |  |  |  |  |  |  | The date the user pool was last modified. | 
| 127 |  |  |  |  |  |  |  | 
| 128 |  |  |  |  |  |  |  | 
| 129 |  |  |  |  |  |  | =head2 MfaConfiguration => Str | 
| 130 |  |  |  |  |  |  |  | 
| 131 |  |  |  |  |  |  | Can be one of the following values: | 
| 132 |  |  |  |  |  |  |  | 
| 133 |  |  |  |  |  |  | =over | 
| 134 |  |  |  |  |  |  |  | 
| 135 |  |  |  |  |  |  | =item * | 
| 136 |  |  |  |  |  |  |  | 
| 137 |  |  |  |  |  |  | C<OFF> - MFA tokens are not required and cannot be specified during | 
| 138 |  |  |  |  |  |  | user registration. | 
| 139 |  |  |  |  |  |  |  | 
| 140 |  |  |  |  |  |  | =item * | 
| 141 |  |  |  |  |  |  |  | 
| 142 |  |  |  |  |  |  | C<ON> - MFA tokens are required for all user registrations. You can | 
| 143 |  |  |  |  |  |  | only specify required when you are initially creating a user pool. | 
| 144 |  |  |  |  |  |  |  | 
| 145 |  |  |  |  |  |  | =item * | 
| 146 |  |  |  |  |  |  |  | 
| 147 |  |  |  |  |  |  | C<OPTIONAL> - Users have the option when registering to create an MFA | 
| 148 |  |  |  |  |  |  | token. | 
| 149 |  |  |  |  |  |  |  | 
| 150 |  |  |  |  |  |  | =back | 
| 151 |  |  |  |  |  |  |  | 
| 152 |  |  |  |  |  |  |  | 
| 153 |  |  |  |  |  |  |  | 
| 154 |  |  |  |  |  |  | =head2 Name => Str | 
| 155 |  |  |  |  |  |  |  | 
| 156 |  |  |  |  |  |  | The name of the user pool. | 
| 157 |  |  |  |  |  |  |  | 
| 158 |  |  |  |  |  |  |  | 
| 159 |  |  |  |  |  |  | =head2 Policies => L<Paws::CognitoIdp::UserPoolPolicyType> | 
| 160 |  |  |  |  |  |  |  | 
| 161 |  |  |  |  |  |  | A container for the policies associated with a user pool. | 
| 162 |  |  |  |  |  |  |  | 
| 163 |  |  |  |  |  |  |  | 
| 164 |  |  |  |  |  |  | =head2 SchemaAttributes => ArrayRef[L<Paws::CognitoIdp::SchemaAttributeType>] | 
| 165 |  |  |  |  |  |  |  | 
| 166 |  |  |  |  |  |  | A container with the schema attributes of a user pool. | 
| 167 |  |  |  |  |  |  |  | 
| 168 |  |  |  |  |  |  |  | 
| 169 |  |  |  |  |  |  | =head2 SmsAuthenticationMessage => Str | 
| 170 |  |  |  |  |  |  |  | 
| 171 |  |  |  |  |  |  | The contents of the SMS authentication message. | 
| 172 |  |  |  |  |  |  |  | 
| 173 |  |  |  |  |  |  |  | 
| 174 |  |  |  |  |  |  | =head2 SmsConfiguration => L<Paws::CognitoIdp::SmsConfigurationType> | 
| 175 |  |  |  |  |  |  |  | 
| 176 |  |  |  |  |  |  | The SMS configuration. | 
| 177 |  |  |  |  |  |  |  | 
| 178 |  |  |  |  |  |  |  | 
| 179 |  |  |  |  |  |  | =head2 SmsConfigurationFailure => Str | 
| 180 |  |  |  |  |  |  |  | 
| 181 |  |  |  |  |  |  | The reason why the SMS configuration cannot send the messages to your | 
| 182 |  |  |  |  |  |  | users. | 
| 183 |  |  |  |  |  |  |  | 
| 184 |  |  |  |  |  |  |  | 
| 185 |  |  |  |  |  |  | =head2 SmsVerificationMessage => Str | 
| 186 |  |  |  |  |  |  |  | 
| 187 |  |  |  |  |  |  | The contents of the SMS verification message. | 
| 188 |  |  |  |  |  |  |  | 
| 189 |  |  |  |  |  |  |  | 
| 190 |  |  |  |  |  |  | =head2 Status => Str | 
| 191 |  |  |  |  |  |  |  | 
| 192 |  |  |  |  |  |  | The status of a user pool. | 
| 193 |  |  |  |  |  |  |  | 
| 194 |  |  |  |  |  |  |  | 
| 195 |  |  |  |  |  |  | =head2 UsernameAttributes => ArrayRef[Str|Undef] | 
| 196 |  |  |  |  |  |  |  | 
| 197 |  |  |  |  |  |  | Specifies whether email addresses or phone numbers can be specified as | 
| 198 |  |  |  |  |  |  | usernames when a user signs up. | 
| 199 |  |  |  |  |  |  |  | 
| 200 |  |  |  |  |  |  |  | 
| 201 |  |  |  |  |  |  | =head2 UserPoolTags => L<Paws::CognitoIdp::UserPoolTagsType> | 
| 202 |  |  |  |  |  |  |  | 
| 203 |  |  |  |  |  |  | The cost allocation tags for the user pool. For more information, see | 
| 204 |  |  |  |  |  |  | Adding Cost Allocation Tags to Your User Pool | 
| 205 |  |  |  |  |  |  |  | 
| 206 |  |  |  |  |  |  |  | 
| 207 |  |  |  |  |  |  | =head2 VerificationMessageTemplate => L<Paws::CognitoIdp::VerificationMessageTemplateType> | 
| 208 |  |  |  |  |  |  |  | 
| 209 |  |  |  |  |  |  | The template for verification messages. | 
| 210 |  |  |  |  |  |  |  | 
| 211 |  |  |  |  |  |  |  | 
| 212 |  |  |  |  |  |  |  | 
| 213 |  |  |  |  |  |  | =head1 SEE ALSO | 
| 214 |  |  |  |  |  |  |  | 
| 215 |  |  |  |  |  |  | This class forms part of L<Paws>, describing an object used in L<Paws::CognitoIdp> | 
| 216 |  |  |  |  |  |  |  | 
| 217 |  |  |  |  |  |  | =head1 BUGS and CONTRIBUTIONS | 
| 218 |  |  |  |  |  |  |  | 
| 219 |  |  |  |  |  |  | The source code is located here: https://github.com/pplu/aws-sdk-perl | 
| 220 |  |  |  |  |  |  |  | 
| 221 |  |  |  |  |  |  | Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues | 
| 222 |  |  |  |  |  |  |  | 
| 223 |  |  |  |  |  |  | =cut | 
| 224 |  |  |  |  |  |  |  |