Class: Aws::CognitoIdentityProvider::Types::UserPoolPolicyType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::UserPoolPolicyType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
A list of user pool policies. Contains the policy that sets password-complexity requirements.
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
-
#password_policy ⇒ Types::PasswordPolicyType
The password policy settings for a user pool, including complexity, history, and length requirements.
-
#sign_in_policy ⇒ Types::SignInPolicyType
The policy for allowed types of authentication in a user pool.
Instance Attribute Details
#password_policy ⇒ Types::PasswordPolicyType
The password policy settings for a user pool, including complexity, history, and length requirements.
12831 12832 12833 12834 12835 12836 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 12831 class UserPoolPolicyType < Struct.new( :password_policy, :sign_in_policy) SENSITIVE = [] include Aws::Structure end |
#sign_in_policy ⇒ Types::SignInPolicyType
The policy for allowed types of authentication in a user pool.
12831 12832 12833 12834 12835 12836 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 12831 class UserPoolPolicyType < Struct.new( :password_policy, :sign_in_policy) SENSITIVE = [] include Aws::Structure end |