Class: Aws::CognitoIdentityProvider::Types::StringAttributeConstraintsType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::StringAttributeConstraintsType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass StringAttributeConstraintsType data as a hash:
{
min_length: "StringType",
max_length: "StringType",
}
The constraints associated with a string attribute.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_length ⇒ String
The maximum length.
-
#min_length ⇒ String
The minimum length.
Instance Attribute Details
#max_length ⇒ String
The maximum length.
8946 8947 8948 8949 8950 8951 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8946 class StringAttributeConstraintsType < Struct.new( :min_length, :max_length) SENSITIVE = [] include Aws::Structure end |
#min_length ⇒ String
The minimum length.
8946 8947 8948 8949 8950 8951 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8946 class StringAttributeConstraintsType < Struct.new( :min_length, :max_length) SENSITIVE = [] include Aws::Structure end |