interface RecoveryOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cognito.CfnUserPool.RecoveryOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscognito#CfnUserPool_RecoveryOptionProperty |
Java | software.amazon.awscdk.services.cognito.CfnUserPool.RecoveryOptionProperty |
Python | aws_cdk.aws_cognito.CfnUserPool.RecoveryOptionProperty |
TypeScript | aws-cdk-lib » aws_cognito » CfnUserPool » RecoveryOptionProperty |
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 { aws_cognito as cognito } from 'aws-cdk-lib';
const recoveryOptionProperty: cognito.CfnUserPool.RecoveryOptionProperty = {
name: 'name',
priority: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The recovery method that this object sets a recovery option for. |
| priority? | number | Your priority preference for using the specified attribute in account recovery. |
name?
Type:
string
(optional)
The recovery method that this object sets a recovery option for.
priority?
Type:
number
(optional)
Your priority preference for using the specified attribute in account recovery.
The highest priority is 1 .

.NET
Go
Java
Python
TypeScript