Class CfnUserPool
- All Implemented Interfaces:
IConstruct,IDependable,IInspectable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct
AWS::Cognito::UserPool.
The AWS::Cognito::UserPool resource creates an Amazon Cognito user pool. For more information on working with Amazon Cognito user pools, see Amazon Cognito User Pools and CreateUserPool .
If you don't specify a value for a parameter, Amazon Cognito sets it to a default value.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cognito.*;
Object userPoolTags;
CfnUserPool cfnUserPool = CfnUserPool.Builder.create(this, "MyCfnUserPool")
.accountRecoverySetting(AccountRecoverySettingProperty.builder()
.recoveryMechanisms(List.of(RecoveryOptionProperty.builder()
.name("name")
.priority(123)
.build()))
.build())
.adminCreateUserConfig(AdminCreateUserConfigProperty.builder()
.allowAdminCreateUserOnly(false)
.inviteMessageTemplate(InviteMessageTemplateProperty.builder()
.emailMessage("emailMessage")
.emailSubject("emailSubject")
.smsMessage("smsMessage")
.build())
.unusedAccountValidityDays(123)
.build())
.aliasAttributes(List.of("aliasAttributes"))
.autoVerifiedAttributes(List.of("autoVerifiedAttributes"))
.deletionProtection("deletionProtection")
.deviceConfiguration(DeviceConfigurationProperty.builder()
.challengeRequiredOnNewDevice(false)
.deviceOnlyRememberedOnUserPrompt(false)
.build())
.emailConfiguration(EmailConfigurationProperty.builder()
.configurationSet("configurationSet")
.emailSendingAccount("emailSendingAccount")
.from("from")
.replyToEmailAddress("replyToEmailAddress")
.sourceArn("sourceArn")
.build())
.emailVerificationMessage("emailVerificationMessage")
.emailVerificationSubject("emailVerificationSubject")
.enabledMfas(List.of("enabledMfas"))
.lambdaConfig(LambdaConfigProperty.builder()
.createAuthChallenge("createAuthChallenge")
.customEmailSender(CustomEmailSenderProperty.builder()
.lambdaArn("lambdaArn")
.lambdaVersion("lambdaVersion")
.build())
.customMessage("customMessage")
.customSmsSender(CustomSMSSenderProperty.builder()
.lambdaArn("lambdaArn")
.lambdaVersion("lambdaVersion")
.build())
.defineAuthChallenge("defineAuthChallenge")
.kmsKeyId("kmsKeyId")
.postAuthentication("postAuthentication")
.postConfirmation("postConfirmation")
.preAuthentication("preAuthentication")
.preSignUp("preSignUp")
.preTokenGeneration("preTokenGeneration")
.userMigration("userMigration")
.verifyAuthChallengeResponse("verifyAuthChallengeResponse")
.build())
.mfaConfiguration("mfaConfiguration")
.policies(PoliciesProperty.builder()
.passwordPolicy(PasswordPolicyProperty.builder()
.minimumLength(123)
.requireLowercase(false)
.requireNumbers(false)
.requireSymbols(false)
.requireUppercase(false)
.temporaryPasswordValidityDays(123)
.build())
.build())
.schema(List.of(SchemaAttributeProperty.builder()
.attributeDataType("attributeDataType")
.developerOnlyAttribute(false)
.mutable(false)
.name("name")
.numberAttributeConstraints(NumberAttributeConstraintsProperty.builder()
.maxValue("maxValue")
.minValue("minValue")
.build())
.required(false)
.stringAttributeConstraints(StringAttributeConstraintsProperty.builder()
.maxLength("maxLength")
.minLength("minLength")
.build())
.build()))
.smsAuthenticationMessage("smsAuthenticationMessage")
.smsConfiguration(SmsConfigurationProperty.builder()
.externalId("externalId")
.snsCallerArn("snsCallerArn")
.snsRegion("snsRegion")
.build())
.smsVerificationMessage("smsVerificationMessage")
.userAttributeUpdateSettings(UserAttributeUpdateSettingsProperty.builder()
.attributesRequireVerificationBeforeUpdate(List.of("attributesRequireVerificationBeforeUpdate"))
.build())
.usernameAttributes(List.of("usernameAttributes"))
.usernameConfiguration(UsernameConfigurationProperty.builder()
.caseSensitive(false)
.build())
.userPoolAddOns(UserPoolAddOnsProperty.builder()
.advancedSecurityMode("advancedSecurityMode")
.build())
.userPoolName("userPoolName")
.userPoolTags(userPoolTags)
.verificationMessageTemplate(VerificationMessageTemplateProperty.builder()
.defaultEmailOption("defaultEmailOption")
.emailMessage("emailMessage")
.emailMessageByLink("emailMessageByLink")
.emailSubject("emailSubject")
.emailSubjectByLink("emailSubjectByLink")
.smsMessage("smsMessage")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceUse this setting to define which verified available method a user can use to recover their password when they callForgotPassword.static interfaceThe configuration forAdminCreateUserrequests.static final classA fluent builder forCfnUserPool.static interfaceA custom email sender AWS Lambda trigger.static interfaceA custom SMS sender AWS Lambda trigger.static interfaceThe device-remembering configuration for a user pool.static interfaceThe email configuration of your user pool.static interfaceThe message template to be used for the welcome message to new users.static interfaceSpecifies the configuration for AWS Lambda triggers.static interfaceThe minimum and maximum values of an attribute that is of the number data type.static interfaceThe password policy type.static interfaceThe policy associated with a user pool.static interfaceA map containing a priority as a key, and recovery method name as a value.static interfaceContains information about the schema attribute.static interfaceThe SMS configuration type that includes the settings the Cognito User Pool needs to call for the Amazon SNS service to send an SMS message from your AWS account .static interfaceTheStringAttributeConstraintsproperty type defines the string attribute constraints of an Amazon Cognito user pool.static interfaceThe settings for updates to user attributes.static interfaceTheUsernameConfigurationproperty type specifies case sensitivity on the username input for the selected sign-in option.static interfaceThe user pool add-ons type.static interfaceThe template for verification messages.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionCfnUserPool(Construct scope, String id) Create a newAWS::Cognito::UserPool.CfnUserPool(Construct scope, String id, CfnUserPoolProps props) Create a newAWS::Cognito::UserPool.protectedCfnUserPool(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnUserPool(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionUse this setting to define which verified available method a user can use to recover their password when they callForgotPassword.The configuration for creating a new user profile.Attributes supported as an alias for this user pool.The Amazon Resource Name (ARN) of the user pool, such asarn:aws:cognito-idp:us-east-1:123412341234:userpool/us-east-1_123412341.The provider name of the Amazon Cognito user pool, specified as aString.The URL of the provider of the Amazon Cognito user pool, specified as aString.The attributes to be auto-verified.When active,DeletionProtectionprevents accidental deletion of your user pool.The device-remembering configuration for a user pool.The email configuration of your user pool.This parameter is no longer used.This parameter is no longer used.Enables MFA on a specified user pool.The Lambda trigger configuration information for the new user pool.The multi-factor authentication (MFA) configuration.The policy associated with a user pool.The schema attributes for the new user pool.A string representing the SMS authentication message.The SMS configuration with the settings that your Amazon Cognito user pool must use to send an SMS message from your AWS account through Amazon Simple Notification Service.This parameter is no longer used.getTags()The tag keys and values to assign to the user pool.The settings for updates to user attributes.Determines whether email addresses or phone numbers can be specified as user names when a user signs up.You can choose to set case sensitivity on the username input for the selected sign-in option.Enables advanced security risk detection.A string used to name the user pool.The template for the verification message that the user sees when the app requests permission to access the user's information.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidUse this setting to define which verified available method a user can use to recover their password when they callForgotPassword.voidUse this setting to define which verified available method a user can use to recover their password when they callForgotPassword.voidThe configuration for creating a new user profile.voidThe configuration for creating a new user profile.voidsetAliasAttributes(List<String> value) Attributes supported as an alias for this user pool.voidsetAutoVerifiedAttributes(List<String> value) The attributes to be auto-verified.voidsetDeletionProtection(String value) When active,DeletionProtectionprevents accidental deletion of your user pool.voidThe device-remembering configuration for a user pool.voidThe device-remembering configuration for a user pool.voidsetEmailConfiguration(IResolvable value) The email configuration of your user pool.voidThe email configuration of your user pool.voidThis parameter is no longer used.voidThis parameter is no longer used.voidsetEnabledMfas(List<String> value) Enables MFA on a specified user pool.voidsetLambdaConfig(IResolvable value) The Lambda trigger configuration information for the new user pool.voidThe Lambda trigger configuration information for the new user pool.voidsetMfaConfiguration(String value) The multi-factor authentication (MFA) configuration.voidsetPolicies(IResolvable value) The policy associated with a user pool.voidThe policy associated with a user pool.voidThe schema attributes for the new user pool.voidsetSchema(IResolvable value) The schema attributes for the new user pool.voidA string representing the SMS authentication message.voidsetSmsConfiguration(IResolvable value) The SMS configuration with the settings that your Amazon Cognito user pool must use to send an SMS message from your AWS account through Amazon Simple Notification Service.voidThe SMS configuration with the settings that your Amazon Cognito user pool must use to send an SMS message from your AWS account through Amazon Simple Notification Service.voidsetSmsVerificationMessage(String value) This parameter is no longer used.voidThe settings for updates to user attributes.voidThe settings for updates to user attributes.voidsetUsernameAttributes(List<String> value) Determines whether email addresses or phone numbers can be specified as user names when a user signs up.voidYou can choose to set case sensitivity on the username input for the selected sign-in option.voidYou can choose to set case sensitivity on the username input for the selected sign-in option.voidsetUserPoolAddOns(IResolvable value) Enables advanced security risk detection.voidEnables advanced security risk detection.voidsetUserPoolName(String value) A string used to name the user pool.voidThe template for the verification message that the user sees when the app requests permission to access the user's information.voidThe template for the verification message that the user sees when the app requests permission to access the user's information.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.core.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnUserPool
protected CfnUserPool(software.amazon.jsii.JsiiObjectRef objRef) -
CfnUserPool
protected CfnUserPool(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnUserPool
@Stability(Stable) public CfnUserPool(@NotNull Construct scope, @NotNull String id, @Nullable CfnUserPoolProps props) Create a newAWS::Cognito::UserPool.- Parameters:
scope-- scope in which this resource is defined.
id-- scoped id of the resource.
props-- resource properties.
-
CfnUserPool
Create a newAWS::Cognito::UserPool.- Parameters:
scope-- scope in which this resource is defined.
id-- scoped id of the resource.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrArn
The Amazon Resource Name (ARN) of the user pool, such asarn:aws:cognito-idp:us-east-1:123412341234:userpool/us-east-1_123412341. -
getAttrProviderName
The provider name of the Amazon Cognito user pool, specified as aString. -
getAttrProviderUrl
The URL of the provider of the Amazon Cognito user pool, specified as aString. -
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getTags
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.
-
getAccountRecoverySetting
Use this setting to define which verified available method a user can use to recover their password when they callForgotPassword.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.
-
setAccountRecoverySetting
Use this setting to define which verified available method a user can use to recover their password when they callForgotPassword.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.
-
setAccountRecoverySetting
@Stability(Stable) public void setAccountRecoverySetting(@Nullable CfnUserPool.AccountRecoverySettingProperty value) Use this setting to define which verified available method a user can use to recover their password when they callForgotPassword.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.
-
getAdminCreateUserConfig
The configuration for creating a new user profile. -
setAdminCreateUserConfig
The configuration for creating a new user profile. -
setAdminCreateUserConfig
@Stability(Stable) public void setAdminCreateUserConfig(@Nullable CfnUserPool.AdminCreateUserConfigProperty value) The configuration for creating a new user profile. -
getAliasAttributes
Attributes supported as an alias for this user pool. Possible values: phone_number , email , or preferred_username .This user pool property cannot be updated.
-
setAliasAttributes
Attributes supported as an alias for this user pool. Possible values: phone_number , email , or preferred_username .This user pool property cannot be updated.
-
getAutoVerifiedAttributes
The attributes to be auto-verified.Possible values: email , phone_number .
-
setAutoVerifiedAttributes
The attributes to be auto-verified.Possible values: email , phone_number .
-
getDeletionProtection
When active,DeletionProtectionprevents 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
DeleteUserPoolAPI request, Amazon Cognito returns anInvalidParameterExceptionerror. To delete a protected user pool, send a newDeleteUserPoolrequest after you deactivate deletion protection in anUpdateUserPoolAPI request. -
setDeletionProtection
When active,DeletionProtectionprevents 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
DeleteUserPoolAPI request, Amazon Cognito returns anInvalidParameterExceptionerror. To delete a protected user pool, send a newDeleteUserPoolrequest after you deactivate deletion protection in anUpdateUserPoolAPI request. -
getDeviceConfiguration
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
DeviceConfigurationfield, you activate the Amazon Cognito device-remembering feature. -
setDeviceConfiguration
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
DeviceConfigurationfield, you activate the Amazon Cognito device-remembering feature. -
setDeviceConfiguration
@Stability(Stable) public void setDeviceConfiguration(@Nullable CfnUserPool.DeviceConfigurationProperty value) 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
DeviceConfigurationfield, you activate the Amazon Cognito device-remembering feature. -
getEmailConfiguration
The email configuration of your user pool.The email configuration type sets your preferred sending method, AWS Region, and sender for messages from your user pool.
-
setEmailConfiguration
The email configuration of your user pool.The email configuration type sets your preferred sending method, AWS Region, and sender for messages from your user pool.
-
setEmailConfiguration
@Stability(Stable) public void setEmailConfiguration(@Nullable CfnUserPool.EmailConfigurationProperty value) The email configuration of your user pool.The email configuration type sets your preferred sending method, AWS Region, and sender for messages from your user pool.
-
getEmailVerificationMessage
This parameter is no longer used. -
setEmailVerificationMessage
This parameter is no longer used. -
getEmailVerificationSubject
This parameter is no longer used. -
setEmailVerificationSubject
This parameter is no longer used. -
getEnabledMfas
Enables MFA on a specified user pool.To disable all MFAs after it has been enabled, set MfaConfiguration to “OFF” and remove EnabledMfas. MFAs can only be all disabled if MfaConfiguration is OFF. Once SMS_MFA is enabled, SMS_MFA can only be disabled by setting MfaConfiguration to “OFF”. Can be one of the following values:
SMS_MFA- Enables SMS MFA for the user pool. SMS_MFA can only be enabled if SMS configuration is provided.SOFTWARE_TOKEN_MFA- Enables software token MFA for the user pool.
Allowed values:
SMS_MFA|SOFTWARE_TOKEN_MFA -
setEnabledMfas
Enables MFA on a specified user pool.To disable all MFAs after it has been enabled, set MfaConfiguration to “OFF” and remove EnabledMfas. MFAs can only be all disabled if MfaConfiguration is OFF. Once SMS_MFA is enabled, SMS_MFA can only be disabled by setting MfaConfiguration to “OFF”. Can be one of the following values:
SMS_MFA- Enables SMS MFA for the user pool. SMS_MFA can only be enabled if SMS configuration is provided.SOFTWARE_TOKEN_MFA- Enables software token MFA for the user pool.
Allowed values:
SMS_MFA|SOFTWARE_TOKEN_MFA -
getLambdaConfig
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 must 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 .
-
setLambdaConfig
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 must 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 .
-
setLambdaConfig
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 must 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 .
-
getMfaConfiguration
The multi-factor authentication (MFA) configuration. Valid values include:.OFFMFA won't be used for any users.ONMFA is required for all users to sign in.OPTIONALMFA will be required only for individual users who have an MFA factor activated.
-
setMfaConfiguration
The multi-factor authentication (MFA) configuration. Valid values include:.OFFMFA won't be used for any users.ONMFA is required for all users to sign in.OPTIONALMFA will be required only for individual users who have an MFA factor activated.
-
getPolicies
The policy associated with a user pool. -
setPolicies
The policy associated with a user pool. -
setPolicies
The policy associated with a user pool. -
getSchema
The schema attributes for the new user pool. These attributes can be standard or custom attributes.During a user pool update, you can add new schema attributes but you cannot modify or delete an existing schema attribute.
-
setSchema
The schema attributes for the new user pool. These attributes can be standard or custom attributes.During a user pool update, you can add new schema attributes but you cannot modify or delete an existing schema attribute.
-
setSchema
The schema attributes for the new user pool. These attributes can be standard or custom attributes.During a user pool update, you can add new schema attributes but you cannot modify or delete an existing schema attribute.
-
getSmsAuthenticationMessage
A string representing the SMS authentication message. -
setSmsAuthenticationMessage
A string representing the SMS authentication message. -
getSmsConfiguration
The SMS configuration with the settings that your Amazon Cognito user pool must use to send an SMS message from your AWS account through Amazon Simple Notification Service.To send SMS messages with Amazon SNS in the AWS Region that you want, the Amazon Cognito user pool uses an AWS Identity and Access Management (IAM) role in your AWS account .
-
setSmsConfiguration
The SMS configuration with the settings that your Amazon Cognito user pool must use to send an SMS message from your AWS account through Amazon Simple Notification Service.To send SMS messages with Amazon SNS in the AWS Region that you want, the Amazon Cognito user pool uses an AWS Identity and Access Management (IAM) role in your AWS account .
-
setSmsConfiguration
@Stability(Stable) public void setSmsConfiguration(@Nullable CfnUserPool.SmsConfigurationProperty value) The SMS configuration with the settings that your Amazon Cognito user pool must use to send an SMS message from your AWS account through Amazon Simple Notification Service.To send SMS messages with Amazon SNS in the AWS Region that you want, the Amazon Cognito user pool uses an AWS Identity and Access Management (IAM) role in your AWS account .
-
getSmsVerificationMessage
This parameter is no longer used. -
setSmsVerificationMessage
This parameter is no longer used. -
getUserAttributeUpdateSettings
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 . -
setUserAttributeUpdateSettings
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 . -
setUserAttributeUpdateSettings
@Stability(Stable) public void setUserAttributeUpdateSettings(@Nullable CfnUserPool.UserAttributeUpdateSettingsProperty value) 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 . -
getUsernameAttributes
Determines whether email addresses or phone numbers can be specified as user names when a user signs up.Possible values:
phone_numberoremail.This user pool property cannot be updated.
-
setUsernameAttributes
Determines whether email addresses or phone numbers can be specified as user names when a user signs up.Possible values:
phone_numberoremail.This user pool property cannot be updated.
-
getUsernameConfiguration
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. -
setUsernameConfiguration
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. -
setUsernameConfiguration
@Stability(Stable) public void setUsernameConfiguration(@Nullable CfnUserPool.UsernameConfigurationProperty value) 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. -
getUserPoolAddOns
Enables advanced security risk detection.Set the key
AdvancedSecurityModeto the value "AUDIT". -
setUserPoolAddOns
Enables advanced security risk detection.Set the key
AdvancedSecurityModeto the value "AUDIT". -
setUserPoolAddOns
@Stability(Stable) public void setUserPoolAddOns(@Nullable CfnUserPool.UserPoolAddOnsProperty value) Enables advanced security risk detection.Set the key
AdvancedSecurityModeto the value "AUDIT". -
getUserPoolName
A string used to name the user pool. -
setUserPoolName
A string used to name the user pool. -
getVerificationMessageTemplate
The template for the verification message that the user sees when the app requests permission to access the user's information. -
setVerificationMessageTemplate
The template for the verification message that the user sees when the app requests permission to access the user's information. -
setVerificationMessageTemplate
@Stability(Stable) public void setVerificationMessageTemplate(@Nullable CfnUserPool.VerificationMessageTemplateProperty value) The template for the verification message that the user sees when the app requests permission to access the user's information.
-