Interface CfnUserPool.RecoveryOptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserPool.RecoveryOptionProperty.Jsii$Proxy
- Enclosing class:
CfnUserPool
@Stability(Stable)
public static interface CfnUserPool.RecoveryOptionProperty
extends software.amazon.jsii.JsiiSerializable
A recovery option for a user.
The AccountRecoverySettingType data type is an array of this object. Each RecoveryOptionType has a priority property that determines whether it is a primary or secondary option.
For example, if verified_email has a priority of 1 and verified_phone_number has a priority of 2 , your user pool sends account-recovery messages to a verified email address but falls back to an SMS message if the user has a verified phone number. The admin_only option prevents self-service account recovery.
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.*;
RecoveryOptionProperty recoveryOptionProperty = RecoveryOptionProperty.builder()
.name("name")
.priority(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserPool.RecoveryOptionPropertystatic final classAn implementation forCfnUserPool.RecoveryOptionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The recovery method that this object sets a recovery option for.- See Also:
-
getPriority
Your priority preference for using the specified attribute in account recovery.The highest priority is
1.- See Also:
-
builder
-