Table of Contents

Interface CfnUserPool.IAccountRecoverySettingProperty

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

Use this setting to define which verified available method a user can use to recover their password when they call ForgotPassword .

public interface CfnUserPool.IAccountRecoverySettingProperty

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 accountRecoverySettingProperty = new AccountRecoverySettingProperty {
                 RecoveryMechanisms = new [] { new RecoveryOptionProperty {
                     Name = "name",
                     Priority = 123
                 } }
             };

Remarks

It allows you to define a preferred method when a user has more than one method available. With this setting, SMS does not qualify for a valid password recovery mechanism if the user also has SMS MFA enabled. In the absence of this setting, Cognito uses the legacy behavior to determine the recovery method where SMS is preferred over email.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-accountrecoverysetting.html

ExampleMetadata: fixture=_generated

Properties

RecoveryMechanisms

The list of RecoveryOptionTypes .

object? RecoveryMechanisms { get; }

Property Value

object

Remarks