Table of Contents

Interface CfnUserPool.IRecoveryOptionProperty

Namespace
Amazon.CDK.AWS.Cognito
Assembly
Amazon.CDK.AWS.Cognito.dll

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

Properties

Name

Specifies the recovery method for a user.

string? Name { get; }

Property Value

string

Remarks

Priority

A positive integer specifying priority of a method with 1 being the highest priority.

double? Priority { get; }

Property Value

double?

Remarks