logo
pub struct CreateUserPoolRequest {
Show 21 fields pub account_recovery_setting: Option<AccountRecoverySettingType>, pub admin_create_user_config: Option<AdminCreateUserConfigType>, pub alias_attributes: Option<Vec<String>>, 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 pool_name: String, pub schema: Option<Vec<SchemaAttributeType>>, 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_tags: Option<HashMap<String, String>>, pub username_attributes: Option<Vec<String>>, pub username_configuration: Option<UsernameConfigurationType>, pub verification_message_template: Option<VerificationMessageTemplateType>,
}
Expand description

Represents the request to create a user pool.

Fields

account_recovery_setting: Option<AccountRecoverySettingType>

Use this setting to define which verified available method a user can use to recover their password when they call ForgotPassword. It allows you to define a preferred method when a user has more than one method available. With this setting, SMS does not qualify for a valid password recovery mechanism if the user also has SMS MFA enabled. In the absence of this setting, Cognito uses the legacy behavior to determine the recovery method where SMS is preferred over email.

admin_create_user_config: Option<AdminCreateUserConfigType>

The configuration for AdminCreateUser requests.

alias_attributes: Option<Vec<String>>

Attributes supported as an alias for this user pool. Possible values: phone_number, email, or preferred_username.

auto_verified_attributes: Option<Vec<String>>

The attributes to be auto-verified. Possible values: email, phone_number.

device_configuration: Option<DeviceConfigurationType>

The device configuration.

email_configuration: Option<EmailConfigurationType>

The email configuration.

email_verification_message: Option<String>

A string representing the email verification message. EmailVerificationMessage is allowed only if EmailSendingAccount is DEVELOPER.

email_verification_subject: Option<String>

A string representing the email verification subject. EmailVerificationSubject is allowed only if EmailSendingAccount is DEVELOPER.

lambda_config: Option<LambdaConfigType>

The Lambda trigger configuration information for the new user pool.

In a push model, event sources (such as Amazon S3 and custom applications) need permission to invoke a function. So you will need to make an extra call to add permission for these event sources to invoke your Lambda function.

For more information on using the Lambda API to add permission, see AddPermission .

For adding permission using the AWS CLI, see add-permission .

mfa_configuration: Option<String>

Specifies MFA configuration details.

policies: Option<UserPoolPolicyType>

The policies associated with the new user pool.

pool_name: String

A string used to name the user pool.

schema: Option<Vec<SchemaAttributeType>>

An array of schema attributes for the new user pool. These attributes can be standard or custom attributes.

sms_authentication_message: Option<String>

A string representing the SMS authentication message.

sms_configuration: Option<SmsConfigurationType>

The SMS configuration.

sms_verification_message: Option<String>

A string representing 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_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.

username_attributes: Option<Vec<String>>

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

username_configuration: Option<UsernameConfigurationType>

You can choose to set case sensitivity on the username input for the selected sign-in option. For example, when this is set to False, users will be able to sign in using either "username" or "Username". This configuration is immutable once it has been set. For more information, see UsernameConfigurationType.

verification_message_template: Option<VerificationMessageTemplateType>

The template for the verification message that the user sees when the app requests permission to access the user's information.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

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

Calls U::from(self).

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

Should always be Self

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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

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