interface SignInPolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cognito.CfnUserPool.SignInPolicyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscognito#CfnUserPool_SignInPolicyProperty |
Java | software.amazon.awscdk.services.cognito.CfnUserPool.SignInPolicyProperty |
Python | aws_cdk.aws_cognito.CfnUserPool.SignInPolicyProperty |
TypeScript | aws-cdk-lib » aws_cognito » CfnUserPool » SignInPolicyProperty |
The policy for allowed types of authentication in a user pool.
To activate this setting, your user pool must be in the Essentials tier or higher.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cognito as cognito } from 'aws-cdk-lib';
const signInPolicyProperty: cognito.CfnUserPool.SignInPolicyProperty = {
allowedFirstAuthFactors: ['allowedFirstAuthFactors'],
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | The sign-in methods that a user pool supports as the first factor. |
allowedFirstAuthFactors?
Type:
string[]
(optional)
The sign-in methods that a user pool supports as the first factor.
You can permit users to start authentication with a standard username and password, or with other one-time password and hardware factors.
Supports values of EMAIL_OTP , SMS_OTP , WEB_AUTHN and PASSWORD ,

.NET
Go
Java
Python
TypeScript