Class: Aws::AmplifyBackend::Types::UpdateBackendAuthPasswordPolicyConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyBackend::Types::UpdateBackendAuthPasswordPolicyConfig
- Defined in:
- gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb
Overview
Note:
When making an API call, you may pass UpdateBackendAuthPasswordPolicyConfig data as a hash:
{
additional_constraints: ["REQUIRE_DIGIT"], # accepts REQUIRE_DIGIT, REQUIRE_LOWERCASE, REQUIRE_SYMBOL, REQUIRE_UPPERCASE
minimum_length: 1.0,
}
Describes the password policy for your Amazon Cognito user pool configured as a part of your Amplify project.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#additional_constraints ⇒ Array<String>
Describes additional constraints on password requirements to sign in to the auth resource, configured as a part of your Amplify project.
-
#minimum_length ⇒ Float
Describes the minimum length of the password required to sign in to the auth resource, configured as a part of your Amplify project.
Instance Attribute Details
#additional_constraints ⇒ Array<String>
Describes additional constraints on password requirements to sign in to the auth resource, configured as a part of your Amplify project.
4143 4144 4145 4146 4147 4148 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 4143 class UpdateBackendAuthPasswordPolicyConfig < Struct.new( :additional_constraints, :minimum_length) SENSITIVE = [] include Aws::Structure end |
#minimum_length ⇒ Float
Describes the minimum length of the password required to sign in to the auth resource, configured as a part of your Amplify project.
4143 4144 4145 4146 4147 4148 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 4143 class UpdateBackendAuthPasswordPolicyConfig < Struct.new( :additional_constraints, :minimum_length) SENSITIVE = [] include Aws::Structure end |