Class: Aws::CognitoIdentityProvider::Types::NumberAttributeConstraintsType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::NumberAttributeConstraintsType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
The minimum and maximum values of an attribute that is of the number data type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_value ⇒ String
The maximum length of a number attribute value.
-
#min_value ⇒ String
The minimum value of an attribute that is of the number data type.
Instance Attribute Details
#max_value ⇒ String
The maximum length of a number attribute value. Must be a number less than or equal to ‘2^1023`, represented as a string with a length of 131072 characters or fewer.
6906 6907 6908 6909 6910 6911 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6906 class NumberAttributeConstraintsType < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |
#min_value ⇒ String
The minimum value of an attribute that is of the number data type.
6906 6907 6908 6909 6910 6911 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6906 class NumberAttributeConstraintsType < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |