Struct rusoto_cognito_idp::UpdateUserPoolRequest[][src]

pub struct UpdateUserPoolRequest {
    pub admin_create_user_config: Option<AdminCreateUserConfigType>,
    pub auto_verified_attributes: Option<Vec<String>>,
    pub device_configuration: Option<DeviceConfigurationType>,
    pub email_configuration: Option<EmailConfigurationType>,
    pub email_verification_message: Option<String>,
    pub email_verification_subject: Option<String>,
    pub lambda_config: Option<LambdaConfigType>,
    pub mfa_configuration: Option<String>,
    pub policies: Option<UserPoolPolicyType>,
    pub sms_authentication_message: Option<String>,
    pub sms_configuration: Option<SmsConfigurationType>,
    pub sms_verification_message: Option<String>,
    pub user_pool_add_ons: Option<UserPoolAddOnsType>,
    pub user_pool_id: String,
    pub user_pool_tags: Option<HashMap<String, String>>,
    pub verification_message_template: Option<VerificationMessageTemplateType>,
}

Represents the request to update the user pool.

Fields

The configuration for AdminCreateUser requests.

The attributes that are automatically verified when the Amazon Cognito service makes a request to update user pools.

Device configuration.

Email configuration.

The contents of the email verification message.

The subject of the email verification message.

The AWS Lambda configuration information from the request to update the user pool.

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.

A container with the policies you wish to update in a user pool.

The contents of the SMS authentication message.

SMS configuration.

A container with information about the SMS verification message.

Used to enable advanced security risk detection. Set the key AdvancedSecurityMode to the value "AUDIT".

The user pool ID for the user pool you want to update.

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

The template for verification messages.

Trait Implementations

impl Default for UpdateUserPoolRequest
[src]

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

impl Debug for UpdateUserPoolRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateUserPoolRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateUserPoolRequest
[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