Class: Aws::CognitoIdentityProvider::Types::SignInPolicyType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::SignInPolicyType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
The policy for allowed types of authentication in a user pool.
This data type is a request and response parameter of
- CreateUserPool][1
-
and [UpdateUserPool], and a response parameter
of [DescribeUserPool].
[1]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_CreateUserPool.html [2]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_UpdateUserPool.html [3]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_DescribeUserPool.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allowed_first_auth_factors ⇒ Array<String>
The sign-in methods that a user pool supports as the first factor.
Instance Attribute Details
#allowed_first_auth_factors ⇒ Array<String>
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.
10004 10005 10006 10007 10008 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10004 class SignInPolicyType < Struct.new( :allowed_first_auth_factors) SENSITIVE = [] include Aws::Structure end |