Class: Aws::CognitoIdentityProvider::Types::UserPoolPolicyType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::UserPoolPolicyType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass UserPoolPolicyType data as a hash:
{
password_policy: {
minimum_length: 1,
require_uppercase: false,
require_lowercase: false,
require_numbers: false,
require_symbols: false,
temporary_password_validity_days: 1,
},
}
The policy associated with a user pool.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#password_policy ⇒ Types::PasswordPolicyType
The password policy.
Instance Attribute Details
#password_policy ⇒ Types::PasswordPolicyType
The password policy.
10958 10959 10960 10961 10962 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10958 class UserPoolPolicyType < Struct.new( :password_policy) SENSITIVE = [] include Aws::Structure end |