Class: Aws::CognitoIdentityProvider::Types::NumberAttributeConstraintsType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::NumberAttributeConstraintsType
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/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 value of an attribute that is of the number data type.
-
#min_value ⇒ String
The minimum value of an attribute that is of the number data type.
Instance Attribute Details
#max_value ⇒ String
The maximum value of an attribute that is of the number data type.
6389 6390 6391 6392 6393 6394 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 6389 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.
6389 6390 6391 6392 6393 6394 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 6389 class NumberAttributeConstraintsType < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |