Interface CfnUserPool.IRecoveryOptionProperty
A map containing a priority as a key, and recovery method name as a value.
public interface CfnUserPool.IRecoveryOptionProperty
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
Properties
Name
Specifies the recovery method for a user.
string? Name { get; }
Property Value
Remarks
Priority
A positive integer specifying priority of a method with 1 being the highest priority.
double? Priority { get; }