Interface CfnUserPool.AccountRecoverySettingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserPool.AccountRecoverySettingProperty.Jsii$Proxy
Enclosing class:
CfnUserPool

@Stability(Stable) public static interface CfnUserPool.AccountRecoverySettingProperty extends software.amazon.jsii.JsiiSerializable
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.

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.*;
 AccountRecoverySettingProperty accountRecoverySettingProperty = AccountRecoverySettingProperty.builder()
         .recoveryMechanisms(List.of(RecoveryOptionProperty.builder()
                 .name("name")
                 .priority(123)
                 .build()))
         .build();
 

See Also: