[][src]Struct rusoto_cognito_idp::UpdateUserPoolRequest

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

admin_create_user_config: Option<AdminCreateUserConfigType>

The configuration for AdminCreateUser requests.

auto_verified_attributes: Option<Vec<String>>

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

device_configuration: Option<DeviceConfigurationType>

Device configuration.

email_configuration: Option<EmailConfigurationType>

Email configuration.

email_verification_message: Option<String>

The contents of the email verification message.

email_verification_subject: Option<String>

The subject of the email verification message.

lambda_config: Option<LambdaConfigType>

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

mfa_configuration: Option<String>

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.

policies: Option<UserPoolPolicyType>

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

sms_authentication_message: Option<String>

The contents of the SMS authentication message.

sms_configuration: Option<SmsConfigurationType>

SMS configuration.

sms_verification_message: Option<String>

A container with information about the SMS verification message.

user_pool_add_ons: Option<UserPoolAddOnsType>

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

user_pool_id: String

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

user_pool_tags: Option<HashMap<String, String>>

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

verification_message_template: Option<VerificationMessageTemplateType>

The template for verification messages.

Trait Implementations

impl PartialEq<UpdateUserPoolRequest> for UpdateUserPoolRequest[src]

impl Default for UpdateUserPoolRequest[src]

impl Clone for UpdateUserPoolRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for UpdateUserPoolRequest[src]

impl Serialize for UpdateUserPoolRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self