Show / Hide Table of Contents

Enum PasskeyUserVerification

The user-pool treatment for MFA with a passkey.

Namespace: Amazon.CDK.AWS.Cognito
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum PasskeyUserVerification
Syntax (vb)
Public Enum PasskeyUserVerification
Remarks

See: https://docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-user-pools-authentication-flow-methods.html#amazon-cognito-user-pools-authentication-flow-methods-passkey

ExampleMetadata: infused

Examples
new UserPool(this, "myuserpool", new UserPoolProps {
                 SignInPolicy = new SignInPolicy {
                     AllowedFirstAuthFactors = new AllowedFirstAuthFactors { Password = true, Passkey = true }
                 },
                 PasskeyRelyingPartyId = "auth.example.com",
                 PasskeyUserVerification = PasskeyUserVerification.REQUIRED
             });

Synopsis

Fields

PREFERRED

Passkey MFA is preferred.

REQUIRED

Passkey MFA is required.

Fields

Name Description
PREFERRED

Passkey MFA is preferred.

REQUIRED

Passkey MFA is required.

Back to top Generated by DocFX