Class CfnUserPool.RecoveryOptionProperty
A map containing a priority as a key, and recovery method name as a value.
public class CfnUserPool.RecoveryOptionProperty : CfnUserPool.IRecoveryOptionProperty
- Inheritance
-
CfnUserPool.RecoveryOptionProperty
- Implements
- Inherited Members
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Cognito;
var recoveryOptionProperty = new RecoveryOptionProperty {
Name = "name",
Priority = 123
};
Remarks
ExampleMetadata: fixture=_generated
Constructors
RecoveryOptionProperty()
public RecoveryOptionProperty()
Properties
Name
Specifies the recovery method for a user.
public string? Name { get; set; }
Property Value
Remarks
Priority
A positive integer specifying priority of a method with 1 being the highest priority.
public double? Priority { get; set; }