#[non_exhaustive]pub struct UserPoolTypeBuilder { /* private fields */ }Expand description
A builder for UserPoolType.
Implementations§
Source§impl UserPoolTypeBuilder
impl UserPoolTypeBuilder
Sourcepub fn policies(self, input: UserPoolPolicyType) -> Self
pub fn policies(self, input: UserPoolPolicyType) -> Self
A list of user pool policies. Contains the policy that sets password-complexity requirements.
Sourcepub fn set_policies(self, input: Option<UserPoolPolicyType>) -> Self
pub fn set_policies(self, input: Option<UserPoolPolicyType>) -> Self
A list of user pool policies. Contains the policy that sets password-complexity requirements.
Sourcepub fn get_policies(&self) -> &Option<UserPoolPolicyType>
pub fn get_policies(&self) -> &Option<UserPoolPolicyType>
A list of user pool policies. Contains the policy that sets password-complexity requirements.
Sourcepub fn deletion_protection(self, input: DeletionProtectionType) -> Self
pub fn deletion_protection(self, input: DeletionProtectionType) -> Self
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.
Sourcepub fn set_deletion_protection(
self,
input: Option<DeletionProtectionType>,
) -> Self
pub fn set_deletion_protection( self, input: Option<DeletionProtectionType>, ) -> Self
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.
Sourcepub fn get_deletion_protection(&self) -> &Option<DeletionProtectionType>
pub fn get_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.
Sourcepub fn lambda_config(self, input: LambdaConfigType) -> Self
pub fn lambda_config(self, input: LambdaConfigType) -> Self
A collection of user pool Lambda triggers. Amazon Cognito invokes triggers at several possible stages of user pool operations. Triggers can modify the outcome of the operations that invoked them.
Sourcepub fn set_lambda_config(self, input: Option<LambdaConfigType>) -> Self
pub fn set_lambda_config(self, input: Option<LambdaConfigType>) -> Self
A collection of user pool Lambda triggers. Amazon Cognito invokes triggers at several possible stages of user pool operations. Triggers can modify the outcome of the operations that invoked them.
Sourcepub fn get_lambda_config(&self) -> &Option<LambdaConfigType>
pub fn get_lambda_config(&self) -> &Option<LambdaConfigType>
A collection of user pool Lambda triggers. Amazon Cognito invokes triggers at several possible stages of user pool operations. Triggers can modify the outcome of the operations that invoked them.
Sourcepub fn status(self, input: StatusType) -> Self
👎Deprecated: This property is no longer available.
pub fn status(self, input: StatusType) -> Self
This parameter is no longer used.
Sourcepub fn set_status(self, input: Option<StatusType>) -> Self
👎Deprecated: This property is no longer available.
pub fn set_status(self, input: Option<StatusType>) -> Self
This parameter is no longer used.
Sourcepub fn get_status(&self) -> &Option<StatusType>
👎Deprecated: This property is no longer available.
pub fn get_status(&self) -> &Option<StatusType>
This parameter is no longer used.
Sourcepub fn last_modified_date(self, input: DateTime) -> Self
pub fn last_modified_date(self, input: DateTime) -> Self
The date and time when the item was modified. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java Date object.
Sourcepub fn set_last_modified_date(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_date(self, input: Option<DateTime>) -> Self
The date and time when the item was modified. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java Date object.
Sourcepub fn get_last_modified_date(&self) -> &Option<DateTime>
pub fn get_last_modified_date(&self) -> &Option<DateTime>
The date and time when the item was modified. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java Date object.
Sourcepub fn creation_date(self, input: DateTime) -> Self
pub fn creation_date(self, input: DateTime) -> Self
The date and time when the item was created. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java Date object.
Sourcepub fn set_creation_date(self, input: Option<DateTime>) -> Self
pub fn set_creation_date(self, input: Option<DateTime>) -> Self
The date and time when the item was created. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java Date object.
Sourcepub fn get_creation_date(&self) -> &Option<DateTime>
pub fn get_creation_date(&self) -> &Option<DateTime>
The date and time when the item was created. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java Date object.
Sourcepub fn schema_attributes(self, input: SchemaAttributeType) -> Self
pub fn schema_attributes(self, input: SchemaAttributeType) -> Self
Appends an item to schema_attributes.
To override the contents of this collection use set_schema_attributes.
A list of the user attributes and their properties in your user pool. The attribute schema contains standard attributes, custom attributes with a custom: prefix, and developer attributes with a dev: prefix. For more information, see User pool attributes.
Developer-only attributes are a legacy feature of user pools, and are read-only to all app clients. You can create and update developer-only attributes only with IAM-authenticated API operations. Use app client read/write permissions instead.
Sourcepub fn set_schema_attributes(
self,
input: Option<Vec<SchemaAttributeType>>,
) -> Self
pub fn set_schema_attributes( self, input: Option<Vec<SchemaAttributeType>>, ) -> Self
A list of the user attributes and their properties in your user pool. The attribute schema contains standard attributes, custom attributes with a custom: prefix, and developer attributes with a dev: prefix. For more information, see User pool attributes.
Developer-only attributes are a legacy feature of user pools, and are read-only to all app clients. You can create and update developer-only attributes only with IAM-authenticated API operations. Use app client read/write permissions instead.
Sourcepub fn get_schema_attributes(&self) -> &Option<Vec<SchemaAttributeType>>
pub fn get_schema_attributes(&self) -> &Option<Vec<SchemaAttributeType>>
A list of the user attributes and their properties in your user pool. The attribute schema contains standard attributes, custom attributes with a custom: prefix, and developer attributes with a dev: prefix. For more information, see User pool attributes.
Developer-only attributes are a legacy feature of user pools, and are read-only to all app clients. You can create and update developer-only attributes only with IAM-authenticated API operations. Use app client read/write permissions instead.
Sourcepub fn auto_verified_attributes(self, input: VerifiedAttributeType) -> Self
pub fn auto_verified_attributes(self, input: VerifiedAttributeType) -> Self
Appends an item to auto_verified_attributes.
To override the contents of this collection use set_auto_verified_attributes.
The attributes that are auto-verified in a user pool.
Sourcepub fn set_auto_verified_attributes(
self,
input: Option<Vec<VerifiedAttributeType>>,
) -> Self
pub fn set_auto_verified_attributes( self, input: Option<Vec<VerifiedAttributeType>>, ) -> Self
The attributes that are auto-verified in a user pool.
Sourcepub fn get_auto_verified_attributes(
&self,
) -> &Option<Vec<VerifiedAttributeType>>
pub fn get_auto_verified_attributes( &self, ) -> &Option<Vec<VerifiedAttributeType>>
The attributes that are auto-verified in a user pool.
Sourcepub fn alias_attributes(self, input: AliasAttributeType) -> Self
pub fn alias_attributes(self, input: AliasAttributeType) -> Self
Appends an item to alias_attributes.
To override the contents of this collection use set_alias_attributes.
Attributes supported as an alias for this user pool. An alias is an attribute that users can enter as an alternative username. Possible values: phone_number, email, or preferred_username.
Sourcepub fn set_alias_attributes(
self,
input: Option<Vec<AliasAttributeType>>,
) -> Self
pub fn set_alias_attributes( self, input: Option<Vec<AliasAttributeType>>, ) -> Self
Attributes supported as an alias for this user pool. An alias is an attribute that users can enter as an alternative username. Possible values: phone_number, email, or preferred_username.
Sourcepub fn get_alias_attributes(&self) -> &Option<Vec<AliasAttributeType>>
pub fn get_alias_attributes(&self) -> &Option<Vec<AliasAttributeType>>
Attributes supported as an alias for this user pool. An alias is an attribute that users can enter as an alternative username. Possible values: phone_number, email, or preferred_username.
Sourcepub fn username_attributes(self, input: UsernameAttributeType) -> Self
pub fn username_attributes(self, input: UsernameAttributeType) -> Self
Appends an item to username_attributes.
To override the contents of this collection use set_username_attributes.
Specifies whether a user can use an email address or phone number as a username when they sign up.
Sourcepub fn set_username_attributes(
self,
input: Option<Vec<UsernameAttributeType>>,
) -> Self
pub fn set_username_attributes( self, input: Option<Vec<UsernameAttributeType>>, ) -> Self
Specifies whether a user can use an email address or phone number as a username when they sign up.
Sourcepub fn get_username_attributes(&self) -> &Option<Vec<UsernameAttributeType>>
pub fn get_username_attributes(&self) -> &Option<Vec<UsernameAttributeType>>
Specifies whether a user can use an email address or phone number as a username when they sign up.
Sourcepub fn sms_verification_message(self, input: impl Into<String>) -> Self
pub fn sms_verification_message(self, input: impl Into<String>) -> Self
This parameter is no longer used.
Sourcepub fn set_sms_verification_message(self, input: Option<String>) -> Self
pub fn set_sms_verification_message(self, input: Option<String>) -> Self
This parameter is no longer used.
Sourcepub fn get_sms_verification_message(&self) -> &Option<String>
pub fn get_sms_verification_message(&self) -> &Option<String>
This parameter is no longer used.
Sourcepub fn email_verification_message(self, input: impl Into<String>) -> Self
pub fn email_verification_message(self, input: impl Into<String>) -> Self
This parameter is no longer used.
Sourcepub fn set_email_verification_message(self, input: Option<String>) -> Self
pub fn set_email_verification_message(self, input: Option<String>) -> Self
This parameter is no longer used.
Sourcepub fn get_email_verification_message(&self) -> &Option<String>
pub fn get_email_verification_message(&self) -> &Option<String>
This parameter is no longer used.
Sourcepub fn email_verification_subject(self, input: impl Into<String>) -> Self
pub fn email_verification_subject(self, input: impl Into<String>) -> Self
This parameter is no longer used.
Sourcepub fn set_email_verification_subject(self, input: Option<String>) -> Self
pub fn set_email_verification_subject(self, input: Option<String>) -> Self
This parameter is no longer used.
Sourcepub fn get_email_verification_subject(&self) -> &Option<String>
pub fn get_email_verification_subject(&self) -> &Option<String>
This parameter is no longer used.
Sourcepub fn verification_message_template(
self,
input: VerificationMessageTemplateType,
) -> Self
pub fn verification_message_template( self, input: VerificationMessageTemplateType, ) -> Self
The template for the verification message that your user pool delivers to users who set an email address or phone number attribute.
Sourcepub fn set_verification_message_template(
self,
input: Option<VerificationMessageTemplateType>,
) -> Self
pub fn set_verification_message_template( self, input: Option<VerificationMessageTemplateType>, ) -> Self
The template for the verification message that your user pool delivers to users who set an email address or phone number attribute.
Sourcepub fn get_verification_message_template(
&self,
) -> &Option<VerificationMessageTemplateType>
pub fn get_verification_message_template( &self, ) -> &Option<VerificationMessageTemplateType>
The template for the verification message that your user pool delivers to users who set an email address or phone number attribute.
Sourcepub fn sms_authentication_message(self, input: impl Into<String>) -> Self
pub fn sms_authentication_message(self, input: impl Into<String>) -> Self
The contents of the SMS authentication message.
Sourcepub fn set_sms_authentication_message(self, input: Option<String>) -> Self
pub fn set_sms_authentication_message(self, input: Option<String>) -> Self
The contents of the SMS authentication message.
Sourcepub fn get_sms_authentication_message(&self) -> &Option<String>
pub fn get_sms_authentication_message(&self) -> &Option<String>
The contents of the SMS authentication message.
Sourcepub fn user_attribute_update_settings(
self,
input: UserAttributeUpdateSettingsType,
) -> Self
pub fn user_attribute_update_settings( self, input: UserAttributeUpdateSettingsType, ) -> Self
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.
Sourcepub fn set_user_attribute_update_settings(
self,
input: Option<UserAttributeUpdateSettingsType>,
) -> Self
pub fn set_user_attribute_update_settings( self, input: Option<UserAttributeUpdateSettingsType>, ) -> Self
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.
Sourcepub fn get_user_attribute_update_settings(
&self,
) -> &Option<UserAttributeUpdateSettingsType>
pub fn get_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.
Sourcepub fn mfa_configuration(self, input: UserPoolMfaType) -> Self
pub fn mfa_configuration(self, input: UserPoolMfaType) -> Self
Can be one of the following values:
-
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 required when you're initially creating a user pool. -
OPTIONAL- Users have the option when registering to create an MFA token.
Sourcepub fn set_mfa_configuration(self, input: Option<UserPoolMfaType>) -> Self
pub fn set_mfa_configuration(self, input: Option<UserPoolMfaType>) -> Self
Can be one of the following values:
-
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 required when you're initially creating a user pool. -
OPTIONAL- Users have the option when registering to create an MFA token.
Sourcepub fn get_mfa_configuration(&self) -> &Option<UserPoolMfaType>
pub fn get_mfa_configuration(&self) -> &Option<UserPoolMfaType>
Can be one of the following values:
-
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 required when you're initially creating a user pool. -
OPTIONAL- Users have the option when registering to create an MFA token.
Sourcepub fn device_configuration(self, input: DeviceConfigurationType) -> Self
pub fn device_configuration(self, input: DeviceConfigurationType) -> Self
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.
Sourcepub fn set_device_configuration(
self,
input: Option<DeviceConfigurationType>,
) -> Self
pub fn set_device_configuration( self, input: Option<DeviceConfigurationType>, ) -> Self
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.
Sourcepub fn get_device_configuration(&self) -> &Option<DeviceConfigurationType>
pub fn get_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.
Sourcepub fn estimated_number_of_users(self, input: i32) -> Self
pub fn estimated_number_of_users(self, input: i32) -> Self
A number estimating the size of the user pool.
Sourcepub fn set_estimated_number_of_users(self, input: Option<i32>) -> Self
pub fn set_estimated_number_of_users(self, input: Option<i32>) -> Self
A number estimating the size of the user pool.
Sourcepub fn get_estimated_number_of_users(&self) -> &Option<i32>
pub fn get_estimated_number_of_users(&self) -> &Option<i32>
A number estimating the size of the user pool.
Sourcepub fn email_configuration(self, input: EmailConfigurationType) -> Self
pub fn email_configuration(self, input: EmailConfigurationType) -> Self
The email configuration of your user pool. The email configuration type sets your preferred sending method, Amazon Web Services Region, and sender for messages from your user pool.
Sourcepub fn set_email_configuration(
self,
input: Option<EmailConfigurationType>,
) -> Self
pub fn set_email_configuration( self, input: Option<EmailConfigurationType>, ) -> Self
The email configuration of your user pool. The email configuration type sets your preferred sending method, Amazon Web Services Region, and sender for messages from your user pool.
Sourcepub fn get_email_configuration(&self) -> &Option<EmailConfigurationType>
pub fn get_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 messages from your user pool.
Sourcepub fn sms_configuration(self, input: SmsConfigurationType) -> Self
pub fn sms_configuration(self, input: SmsConfigurationType) -> Self
User pool configuration for delivery of SMS messages with 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.
Sourcepub fn set_sms_configuration(self, input: Option<SmsConfigurationType>) -> Self
pub fn set_sms_configuration(self, input: Option<SmsConfigurationType>) -> Self
User pool configuration for delivery of SMS messages with 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.
Sourcepub fn get_sms_configuration(&self) -> &Option<SmsConfigurationType>
pub fn get_sms_configuration(&self) -> &Option<SmsConfigurationType>
User pool configuration for delivery of SMS messages with 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.
Adds a key-value pair to user_pool_tags.
To override the contents of this collection use set_user_pool_tags.
The tags that are assigned to the user pool. A tag is a label that you can apply to user pools to categorize and manage them in different ways, such as by purpose, owner, environment, or other criteria.
The tags that are assigned to the user pool. A tag is a label that you can apply to user pools to categorize and manage them in different ways, such as by purpose, owner, environment, or other criteria.
The tags that are assigned to the user pool. A tag is a label that you can apply to user pools to categorize and manage them in different ways, such as by purpose, owner, environment, or other criteria.
Sourcepub fn sms_configuration_failure(self, input: impl Into<String>) -> Self
pub fn sms_configuration_failure(self, input: impl Into<String>) -> Self
The reason why the SMS configuration can't send the messages to your users.
This message might include comma-separated values to describe why your SMS configuration can't send messages to user pool end users.
- InvalidSmsRoleAccessPolicyException
-
The Identity and Access Management role that Amazon Cognito uses to send SMS messages isn't properly configured. For more information, see SmsConfigurationType.
- SNSSandbox
-
The Amazon Web Services account is in the SNS SMS Sandbox and messages will only reach verified end users. This parameter won’t get populated with SNSSandbox if the user creating the user pool doesn’t have SNS permissions. To learn how to move your Amazon Web Services account out of the sandbox, see Moving out of the SMS sandbox.
Sourcepub fn set_sms_configuration_failure(self, input: Option<String>) -> Self
pub fn set_sms_configuration_failure(self, input: Option<String>) -> Self
The reason why the SMS configuration can't send the messages to your users.
This message might include comma-separated values to describe why your SMS configuration can't send messages to user pool end users.
- InvalidSmsRoleAccessPolicyException
-
The Identity and Access Management role that Amazon Cognito uses to send SMS messages isn't properly configured. For more information, see SmsConfigurationType.
- SNSSandbox
-
The Amazon Web Services account is in the SNS SMS Sandbox and messages will only reach verified end users. This parameter won’t get populated with SNSSandbox if the user creating the user pool doesn’t have SNS permissions. To learn how to move your Amazon Web Services account out of the sandbox, see Moving out of the SMS sandbox.
Sourcepub fn get_sms_configuration_failure(&self) -> &Option<String>
pub fn get_sms_configuration_failure(&self) -> &Option<String>
The reason why the SMS configuration can't send the messages to your users.
This message might include comma-separated values to describe why your SMS configuration can't send messages to user pool end users.
- InvalidSmsRoleAccessPolicyException
-
The Identity and Access Management role that Amazon Cognito uses to send SMS messages isn't properly configured. For more information, see SmsConfigurationType.
- SNSSandbox
-
The Amazon Web Services account is in the SNS SMS Sandbox and messages will only reach verified end users. This parameter won’t get populated with SNSSandbox if the user creating the user pool doesn’t have SNS permissions. To learn how to move your Amazon Web Services account out of the sandbox, see Moving out of the SMS sandbox.
Sourcepub fn email_configuration_failure(self, input: impl Into<String>) -> Self
pub fn email_configuration_failure(self, input: impl Into<String>) -> Self
Deprecated. Review error codes from API requests with EventSource:cognito-idp.amazonaws.com in CloudTrail for information about problems with user pool email configuration.
Sourcepub fn set_email_configuration_failure(self, input: Option<String>) -> Self
pub fn set_email_configuration_failure(self, input: Option<String>) -> Self
Deprecated. Review error codes from API requests with EventSource:cognito-idp.amazonaws.com in CloudTrail for information about problems with user pool email configuration.
Sourcepub fn get_email_configuration_failure(&self) -> &Option<String>
pub fn get_email_configuration_failure(&self) -> &Option<String>
Deprecated. Review error codes from API requests with EventSource:cognito-idp.amazonaws.com in CloudTrail for information about problems with user pool email configuration.
Sourcepub fn domain(self, input: impl Into<String>) -> Self
pub fn domain(self, input: impl Into<String>) -> Self
The domain prefix, if the user pool has a domain associated with it.
Sourcepub fn set_domain(self, input: Option<String>) -> Self
pub fn set_domain(self, input: Option<String>) -> Self
The domain prefix, if the user pool has a domain associated with it.
Sourcepub fn get_domain(&self) -> &Option<String>
pub fn get_domain(&self) -> &Option<String>
The domain prefix, if the user pool has a domain associated with it.
Sourcepub fn custom_domain(self, input: impl Into<String>) -> Self
pub fn custom_domain(self, input: impl Into<String>) -> Self
A custom domain name that you provide to Amazon Cognito. This parameter applies only if you use a custom domain to host the sign-up and sign-in pages for your application. An example of a custom domain name might be auth.example.com.
For more information about adding a custom domain to your user pool, see Using Your Own Domain for the Hosted UI.
Sourcepub fn set_custom_domain(self, input: Option<String>) -> Self
pub fn set_custom_domain(self, input: Option<String>) -> Self
A custom domain name that you provide to Amazon Cognito. This parameter applies only if you use a custom domain to host the sign-up and sign-in pages for your application. An example of a custom domain name might be auth.example.com.
For more information about adding a custom domain to your user pool, see Using Your Own Domain for the Hosted UI.
Sourcepub fn get_custom_domain(&self) -> &Option<String>
pub fn get_custom_domain(&self) -> &Option<String>
A custom domain name that you provide to Amazon Cognito. This parameter applies only if you use a custom domain to host the sign-up and sign-in pages for your application. An example of a custom domain name might be auth.example.com.
For more information about adding a custom domain to your user pool, see Using Your Own Domain for the Hosted UI.
Sourcepub fn admin_create_user_config(self, input: AdminCreateUserConfigType) -> Self
pub fn admin_create_user_config(self, input: AdminCreateUserConfigType) -> Self
The configuration for AdminCreateUser requests.
Sourcepub fn set_admin_create_user_config(
self,
input: Option<AdminCreateUserConfigType>,
) -> Self
pub fn set_admin_create_user_config( self, input: Option<AdminCreateUserConfigType>, ) -> Self
The configuration for AdminCreateUser requests.
Sourcepub fn get_admin_create_user_config(&self) -> &Option<AdminCreateUserConfigType>
pub fn get_admin_create_user_config(&self) -> &Option<AdminCreateUserConfigType>
The configuration for AdminCreateUser requests.
Sourcepub fn user_pool_add_ons(self, input: UserPoolAddOnsType) -> Self
pub fn user_pool_add_ons(self, input: UserPoolAddOnsType) -> Self
Contains settings for activation of threat protection, including the operating mode and additional authentication types. To log user security information but take no action, set to AUDIT. To configure automatic security responses to potentially unwanted traffic to your user pool, set to ENFORCED.
For more information, see Adding advanced security to a user pool. To activate this setting, your user pool must be on the Plus tier.
Sourcepub fn set_user_pool_add_ons(self, input: Option<UserPoolAddOnsType>) -> Self
pub fn set_user_pool_add_ons(self, input: Option<UserPoolAddOnsType>) -> Self
Contains settings for activation of threat protection, including the operating mode and additional authentication types. To log user security information but take no action, set to AUDIT. To configure automatic security responses to potentially unwanted traffic to your user pool, set to ENFORCED.
For more information, see Adding advanced security to a user pool. To activate this setting, your user pool must be on the Plus tier.
Sourcepub fn get_user_pool_add_ons(&self) -> &Option<UserPoolAddOnsType>
pub fn get_user_pool_add_ons(&self) -> &Option<UserPoolAddOnsType>
Contains settings for activation of threat protection, including the operating mode and additional authentication types. To log user security information but take no action, set to AUDIT. To configure automatic security responses to potentially unwanted traffic to your user pool, set to ENFORCED.
For more information, see Adding advanced security to a user pool. To activate this setting, your user pool must be on the Plus tier.
Sourcepub fn username_configuration(self, input: UsernameConfigurationType) -> Self
pub fn username_configuration(self, input: UsernameConfigurationType) -> Self
Case sensitivity of the username input for the selected sign-in option. When case sensitivity is set to False (case insensitive), users can sign in with any combination of capital and lowercase letters. For example, username, USERNAME, or UserName, or for email, email@example.com or EMaiL@eXamplE.Com. For most use cases, set case sensitivity to False (case insensitive) as a best practice. When usernames and email addresses are case insensitive, Amazon Cognito treats any variation in case as the same user, and prevents a case variation from being assigned to the same attribute for a different user.
Sourcepub fn set_username_configuration(
self,
input: Option<UsernameConfigurationType>,
) -> Self
pub fn set_username_configuration( self, input: Option<UsernameConfigurationType>, ) -> Self
Case sensitivity of the username input for the selected sign-in option. When case sensitivity is set to False (case insensitive), users can sign in with any combination of capital and lowercase letters. For example, username, USERNAME, or UserName, or for email, email@example.com or EMaiL@eXamplE.Com. For most use cases, set case sensitivity to False (case insensitive) as a best practice. When usernames and email addresses are case insensitive, Amazon Cognito treats any variation in case as the same user, and prevents a case variation from being assigned to the same attribute for a different user.
Sourcepub fn get_username_configuration(&self) -> &Option<UsernameConfigurationType>
pub fn get_username_configuration(&self) -> &Option<UsernameConfigurationType>
Case sensitivity of the username input for the selected sign-in option. When case sensitivity is set to False (case insensitive), users can sign in with any combination of capital and lowercase letters. For example, username, USERNAME, or UserName, or for email, email@example.com or EMaiL@eXamplE.Com. For most use cases, set case sensitivity to False (case insensitive) as a best practice. When usernames and email addresses are case insensitive, Amazon Cognito treats any variation in case as the same user, and prevents a case variation from being assigned to the same attribute for a different user.
Sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the user pool.
Sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the user pool.
Sourcepub fn account_recovery_setting(self, input: AccountRecoverySettingType) -> Self
pub fn account_recovery_setting(self, input: AccountRecoverySettingType) -> Self
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.
Sourcepub fn set_account_recovery_setting(
self,
input: Option<AccountRecoverySettingType>,
) -> Self
pub fn set_account_recovery_setting( self, input: Option<AccountRecoverySettingType>, ) -> Self
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.
Sourcepub fn get_account_recovery_setting(
&self,
) -> &Option<AccountRecoverySettingType>
pub fn get_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.
Sourcepub fn user_pool_tier(self, input: UserPoolTierType) -> Self
pub fn user_pool_tier(self, input: UserPoolTierType) -> Self
The user pool feature plan, or tier. This parameter determines the eligibility of the user pool for features like managed login, access-token customization, and threat protection. Defaults to ESSENTIALS.
Sourcepub fn set_user_pool_tier(self, input: Option<UserPoolTierType>) -> Self
pub fn set_user_pool_tier(self, input: Option<UserPoolTierType>) -> Self
The user pool feature plan, or tier. This parameter determines the eligibility of the user pool for features like managed login, access-token customization, and threat protection. Defaults to ESSENTIALS.
Sourcepub fn get_user_pool_tier(&self) -> &Option<UserPoolTierType>
pub fn get_user_pool_tier(&self) -> &Option<UserPoolTierType>
The user pool feature plan, or tier. This parameter determines the eligibility of the user pool for features like managed login, access-token customization, and threat protection. Defaults to ESSENTIALS.
Sourcepub fn build(self) -> UserPoolType
pub fn build(self) -> UserPoolType
Consumes the builder and constructs a UserPoolType.
Trait Implementations§
Source§impl Clone for UserPoolTypeBuilder
impl Clone for UserPoolTypeBuilder
Source§fn clone(&self) -> UserPoolTypeBuilder
fn clone(&self) -> UserPoolTypeBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for UserPoolTypeBuilder
impl Debug for UserPoolTypeBuilder
Source§impl Default for UserPoolTypeBuilder
impl Default for UserPoolTypeBuilder
Source§fn default() -> UserPoolTypeBuilder
fn default() -> UserPoolTypeBuilder
Source§impl PartialEq for UserPoolTypeBuilder
impl PartialEq for UserPoolTypeBuilder
impl StructuralPartialEq for UserPoolTypeBuilder
Auto Trait Implementations§
impl Freeze for UserPoolTypeBuilder
impl RefUnwindSafe for UserPoolTypeBuilder
impl Send for UserPoolTypeBuilder
impl Sync for UserPoolTypeBuilder
impl Unpin for UserPoolTypeBuilder
impl UnwindSafe for UserPoolTypeBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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 moreSource§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the foreground set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red() and
green(), which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg():
use yansi::{Paint, Color};
painted.fg(Color::White);Set foreground color to white using white().
use yansi::Paint;
painted.white();Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the background set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red() and
on_green(), which have the same functionality but
are pithier.
§Example
Set background color to red using fg():
use yansi::{Paint, Color};
painted.bg(Color::Red);Set background color to red using on_red().
use yansi::Paint;
painted.on_red();Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute value.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold() and
underline(), which have the same functionality
but are pithier.
§Example
Make text bold using attr():
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);Make text bold using using bold().
use yansi::Paint;
painted.bold();Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi Quirk value.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask() and
wrap(), which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk():
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);Enable wrapping using wrap().
use yansi::Paint;
painted.wrap();Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted only when both stdout and stderr are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);