Table of Contents

Class CfnUserPool.RecoveryOptionProperty

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 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

Constructors

RecoveryOptionProperty()

public RecoveryOptionProperty()

Properties

Name

Specifies the recovery method for a user.

public string? Name { get; set; }

Property Value

string

Remarks

Priority

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

public double? Priority { get; set; }

Property Value

double?

Remarks