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