Class NumberAttributeConstraintsType
- java.lang.Object
-
- com.amazonaws.services.cognitoidp.model.NumberAttributeConstraintsType
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class NumberAttributeConstraintsType extends Object implements Serializable, Cloneable
The minimum and maximum value of an attribute that is of the number data type.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NumberAttributeConstraintsType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NumberAttributeConstraintsType
clone()
boolean
equals(Object obj)
String
getMaxValue()
The maximum value of an attribute that is of the number data type.String
getMinValue()
The minimum value of an attribute that is of the number data type.int
hashCode()
void
setMaxValue(String maxValue)
The maximum value of an attribute that is of the number data type.void
setMinValue(String minValue)
The minimum value of an attribute that is of the number data type.String
toString()
Returns a string representation of this object; useful for testing and debugging.NumberAttributeConstraintsType
withMaxValue(String maxValue)
The maximum value of an attribute that is of the number data type.NumberAttributeConstraintsType
withMinValue(String minValue)
The minimum value of an attribute that is of the number data type.
-
-
-
Method Detail
-
setMinValue
public void setMinValue(String minValue)
The minimum value of an attribute that is of the number data type.
- Parameters:
minValue
- The minimum value of an attribute that is of the number data type.
-
getMinValue
public String getMinValue()
The minimum value of an attribute that is of the number data type.
- Returns:
- The minimum value of an attribute that is of the number data type.
-
withMinValue
public NumberAttributeConstraintsType withMinValue(String minValue)
The minimum value of an attribute that is of the number data type.
- Parameters:
minValue
- The minimum value of an attribute that is of the number data type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setMaxValue
public void setMaxValue(String maxValue)
The maximum value of an attribute that is of the number data type.
- Parameters:
maxValue
- The maximum value of an attribute that is of the number data type.
-
getMaxValue
public String getMaxValue()
The maximum value of an attribute that is of the number data type.
- Returns:
- The maximum value of an attribute that is of the number data type.
-
withMaxValue
public NumberAttributeConstraintsType withMaxValue(String maxValue)
The maximum value of an attribute that is of the number data type.
- Parameters:
maxValue
- The maximum value of an attribute that is of the number data type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public NumberAttributeConstraintsType clone()
-
-