Struct rusoto_cognito_idp::UserPoolType[][src]

pub struct UserPoolType {
    pub admin_create_user_config: Option<AdminCreateUserConfigType>,
    pub alias_attributes: Option<Vec<String>>,
    pub auto_verified_attributes: Option<Vec<String>>,
    pub creation_date: Option<f64>,
    pub device_configuration: Option<DeviceConfigurationType>,
    pub domain: Option<String>,
    pub email_configuration: Option<EmailConfigurationType>,
    pub email_configuration_failure: Option<String>,
    pub email_verification_message: Option<String>,
    pub email_verification_subject: Option<String>,
    pub estimated_number_of_users: Option<i64>,
    pub id: Option<String>,
    pub lambda_config: Option<LambdaConfigType>,
    pub last_modified_date: Option<f64>,
    pub mfa_configuration: Option<String>,
    pub name: Option<String>,
    pub policies: Option<UserPoolPolicyType>,
    pub schema_attributes: Option<Vec<SchemaAttributeType>>,
    pub sms_authentication_message: Option<String>,
    pub sms_configuration: Option<SmsConfigurationType>,
    pub sms_configuration_failure: Option<String>,
    pub sms_verification_message: Option<String>,
    pub status: Option<String>,
    pub user_pool_add_ons: Option<UserPoolAddOnsType>,
    pub user_pool_tags: Option<HashMap<String, String>>,
    pub username_attributes: Option<Vec<String>>,
    pub verification_message_template: Option<VerificationMessageTemplateType>,
}

A container for information about the user pool.

Fields

The configuration for AdminCreateUser requests.

Specifies the attributes that are aliased in a user pool.

Specifies the attributes that are auto-verified in a user pool.

The date the user pool was created.

The device configuration.

Holds the domain prefix if the user pool has a domain associated with it.

The email configuration.

The reason why the email configuration cannot send the messages to your users.

The contents of the email verification message.

The subject of the email verification message.

A number estimating the size of the user pool.

The ID of the user pool.

The AWS Lambda triggers associated with tue user pool.

The date the user pool was last modified.

Can be one of the following values:

  • OFF - MFA tokens are not required and cannot be specified during user registration.

  • ON - MFA tokens are required for all user registrations. You can only specify required when you are initially creating a user pool.

  • OPTIONAL - Users have the option when registering to create an MFA token.

The name of the user pool.

The policies associated with the user pool.

A container with the schema attributes of a user pool.

The contents of the SMS authentication message.

The SMS configuration.

The reason why the SMS configuration cannot send the messages to your users.

The contents of the SMS verification message.

The status of a user pool.

The user pool add-ons.

The cost allocation tags for the user pool. For more information, see Adding Cost Allocation Tags to Your User Pool

Specifies whether email addresses or phone numbers can be specified as usernames when a user signs up.

The template for verification messages.

Trait Implementations

impl Default for UserPoolType
[src]

Returns the "default value" for a type. Read more

impl Debug for UserPoolType
[src]

Formats the value using the given formatter. Read more

impl Clone for UserPoolType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UserPoolType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations