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.
8906 8907 8908 8909 8910 8911 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8906 class StringAttributeConstraintsType < Struct.new( :min_length, :max_length) SENSITIVE = [] include Aws::Structure end |
#min_length ⇒ String
The minimum length.
8906 8907 8908 8909 8910 8911 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8906 class StringAttributeConstraintsType < Struct.new( :min_length, :max_length) SENSITIVE = [] include Aws::Structure end |