#[non_exhaustive]
pub struct UpdateUserPoolInput {
Show 19 fields pub user_pool_id: Option<String>, pub policies: Option<UserPoolPolicyType>, pub deletion_protection: Option<DeletionProtectionType>, pub lambda_config: Option<LambdaConfigType>, pub auto_verified_attributes: Option<Vec<VerifiedAttributeType>>, pub sms_verification_message: Option<String>, pub email_verification_message: Option<String>, pub email_verification_subject: Option<String>, pub verification_message_template: Option<VerificationMessageTemplateType>, pub sms_authentication_message: Option<String>, pub user_attribute_update_settings: Option<UserAttributeUpdateSettingsType>, pub mfa_configuration: Option<UserPoolMfaType>, pub device_configuration: Option<DeviceConfigurationType>, pub email_configuration: Option<EmailConfigurationType>, pub sms_configuration: Option<SmsConfigurationType>, pub user_pool_tags: Option<HashMap<String, String>>, pub admin_create_user_config: Option<AdminCreateUserConfigType>, pub user_pool_add_ons: Option<UserPoolAddOnsType>, pub account_recovery_setting: Option<AccountRecoverySettingType>,
}
Expand description

Represents the request to update the user pool.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§user_pool_id: Option<String>

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

§policies: Option<UserPoolPolicyType>

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

§deletion_protection: Option<DeletionProtectionType>

When active, DeletionProtection prevents accidental deletion of your user pool. Before you can delete a user pool that you have protected against deletion, you must deactivate this feature.

When you try to delete a protected user pool in a DeleteUserPool API request, Amazon Cognito returns an InvalidParameterException error. To delete a protected user pool, send a new DeleteUserPool request after you deactivate deletion protection in an UpdateUserPool API request.

§lambda_config: Option<LambdaConfigType>

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

§auto_verified_attributes: Option<Vec<VerifiedAttributeType>>

The attributes that are automatically verified when Amazon Cognito requests to update user pools.

§sms_verification_message: Option<String>

This parameter is no longer used. See VerificationMessageTemplateType.

§email_verification_message: Option<String>

This parameter is no longer used. See VerificationMessageTemplateType.

§email_verification_subject: Option<String>

This parameter is no longer used. See VerificationMessageTemplateType.

§verification_message_template: Option<VerificationMessageTemplateType>

The template for verification messages.

§sms_authentication_message: Option<String>

The contents of the SMS authentication message.

§user_attribute_update_settings: Option<UserAttributeUpdateSettingsType>

The settings for updates to user attributes. These settings include the property AttributesRequireVerificationBeforeUpdate, a user-pool setting that tells Amazon Cognito how to handle changes to the value of your users' email address and phone number attributes. For more information, see Verifying updates to email addresses and phone numbers.

§mfa_configuration: Option<UserPoolMfaType>

Possible values include:

  • OFF - MFA tokens aren't required and can't be specified during user registration.

  • ON - MFA tokens are required for all user registrations. You can only specify ON when you're initially creating a user pool. You can use the SetUserPoolMfaConfig API operation to turn MFA "ON" for existing user pools.

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

§device_configuration: Option<DeviceConfigurationType>

The device-remembering configuration for a user pool. A null value indicates that you have deactivated device remembering in your user pool.

When you provide a value for any DeviceConfiguration field, you activate the Amazon Cognito device-remembering feature.

§email_configuration: Option<EmailConfigurationType>

The email configuration of your user pool. The email configuration type sets your preferred sending method, Amazon Web Services Region, and sender for email invitation and verification messages from your user pool.

§sms_configuration: Option<SmsConfigurationType>

The SMS configuration with the settings that your Amazon Cognito user pool must use to send an SMS message from your Amazon Web Services account through Amazon Simple Notification Service. To send SMS messages with Amazon SNS in the Amazon Web Services Region that you want, the Amazon Cognito user pool uses an Identity and Access Management (IAM) role in your Amazon Web Services account.

§user_pool_tags: Option<HashMap<String, String>>

The tag keys and values to assign to the user pool. A tag is a label that you can use to categorize and manage user pools in different ways, such as by purpose, owner, environment, or other criteria.

§admin_create_user_config: Option<AdminCreateUserConfigType>

The configuration for AdminCreateUser requests.

§user_pool_add_ons: Option<UserPoolAddOnsType>

User pool add-ons. Contains settings for activation of advanced security features. To log user security information but take no action, set to AUDIT. To configure automatic security responses to risky traffic to your user pool, set to ENFORCED.

For more information, see Adding advanced security to a user pool.

§account_recovery_setting: Option<AccountRecoverySettingType>

The available verified method a user can use to recover their password when they call ForgotPassword. You can use this setting to define a preferred method when a user has more than one method available. With this setting, SMS doesn't qualify for a valid password recovery mechanism if the user also has SMS multi-factor authentication (MFA) activated. In the absence of this setting, Amazon Cognito uses the legacy behavior to determine the recovery method where SMS is preferred through email.

Implementations§

source§

impl UpdateUserPoolInput

source

pub fn user_pool_id(&self) -> Option<&str>

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

source

pub fn policies(&self) -> Option<&UserPoolPolicyType>

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

source

pub fn deletion_protection(&self) -> Option<&DeletionProtectionType>

When active, DeletionProtection prevents accidental deletion of your user pool. Before you can delete a user pool that you have protected against deletion, you must deactivate this feature.

When you try to delete a protected user pool in a DeleteUserPool API request, Amazon Cognito returns an InvalidParameterException error. To delete a protected user pool, send a new DeleteUserPool request after you deactivate deletion protection in an UpdateUserPool API request.

source

pub fn lambda_config(&self) -> Option<&LambdaConfigType>

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

source

pub fn auto_verified_attributes(&self) -> &[VerifiedAttributeType]

The attributes that are automatically verified when Amazon Cognito requests to update user pools.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .auto_verified_attributes.is_none().

source

pub fn sms_verification_message(&self) -> Option<&str>

This parameter is no longer used. See VerificationMessageTemplateType.

source

pub fn email_verification_message(&self) -> Option<&str>

This parameter is no longer used. See VerificationMessageTemplateType.

source

pub fn email_verification_subject(&self) -> Option<&str>

This parameter is no longer used. See VerificationMessageTemplateType.

source

pub fn verification_message_template( &self, ) -> Option<&VerificationMessageTemplateType>

The template for verification messages.

source

pub fn sms_authentication_message(&self) -> Option<&str>

The contents of the SMS authentication message.

source

pub fn user_attribute_update_settings( &self, ) -> Option<&UserAttributeUpdateSettingsType>

The settings for updates to user attributes. These settings include the property AttributesRequireVerificationBeforeUpdate, a user-pool setting that tells Amazon Cognito how to handle changes to the value of your users' email address and phone number attributes. For more information, see Verifying updates to email addresses and phone numbers.

source

pub fn mfa_configuration(&self) -> Option<&UserPoolMfaType>

Possible values include:

  • OFF - MFA tokens aren't required and can't be specified during user registration.

  • ON - MFA tokens are required for all user registrations. You can only specify ON when you're initially creating a user pool. You can use the SetUserPoolMfaConfig API operation to turn MFA "ON" for existing user pools.

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

source

pub fn device_configuration(&self) -> Option<&DeviceConfigurationType>

The device-remembering configuration for a user pool. A null value indicates that you have deactivated device remembering in your user pool.

When you provide a value for any DeviceConfiguration field, you activate the Amazon Cognito device-remembering feature.

source

pub fn email_configuration(&self) -> Option<&EmailConfigurationType>

The email configuration of your user pool. The email configuration type sets your preferred sending method, Amazon Web Services Region, and sender for email invitation and verification messages from your user pool.

source

pub fn sms_configuration(&self) -> Option<&SmsConfigurationType>

The SMS configuration with the settings that your Amazon Cognito user pool must use to send an SMS message from your Amazon Web Services account through Amazon Simple Notification Service. To send SMS messages with Amazon SNS in the Amazon Web Services Region that you want, the Amazon Cognito user pool uses an Identity and Access Management (IAM) role in your Amazon Web Services account.

source

pub fn user_pool_tags(&self) -> Option<&HashMap<String, String>>

The tag keys and values to assign to the user pool. A tag is a label that you can use to categorize and manage user pools in different ways, such as by purpose, owner, environment, or other criteria.

source

pub fn admin_create_user_config(&self) -> Option<&AdminCreateUserConfigType>

The configuration for AdminCreateUser requests.

source

pub fn user_pool_add_ons(&self) -> Option<&UserPoolAddOnsType>

User pool add-ons. Contains settings for activation of advanced security features. To log user security information but take no action, set to AUDIT. To configure automatic security responses to risky traffic to your user pool, set to ENFORCED.

For more information, see Adding advanced security to a user pool.

source

pub fn account_recovery_setting(&self) -> Option<&AccountRecoverySettingType>

The available verified method a user can use to recover their password when they call ForgotPassword. You can use this setting to define a preferred method when a user has more than one method available. With this setting, SMS doesn't qualify for a valid password recovery mechanism if the user also has SMS multi-factor authentication (MFA) activated. In the absence of this setting, Amazon Cognito uses the legacy behavior to determine the recovery method where SMS is preferred through email.

source§

impl UpdateUserPoolInput

source

pub fn builder() -> UpdateUserPoolInputBuilder

Creates a new builder-style object to manufacture UpdateUserPoolInput.

Trait Implementations§

source§

impl Clone for UpdateUserPoolInput

source§

fn clone(&self) -> UpdateUserPoolInput

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for UpdateUserPoolInput

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for UpdateUserPoolInput

source§

fn eq(&self, other: &UpdateUserPoolInput) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for UpdateUserPoolInput

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more