Class: Aws::CognitoIdentityProvider::Types::SignInPolicyType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::SignInPolicyType
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
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.
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.
9952 9953 9954 9955 9956 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 9952 class SignInPolicyType < Struct.new( :allowed_first_auth_factors) SENSITIVE = [] include Aws::Structure end |