Interface CfnUserPool.NumberAttributeConstraintsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserPool.NumberAttributeConstraintsProperty.Jsii$Proxy
- Enclosing class:
- CfnUserPool
@Stability(Stable)
public static interface CfnUserPool.NumberAttributeConstraintsProperty
extends software.amazon.jsii.JsiiSerializable
The minimum and maximum values of an attribute that is of the number data type.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cognito.*;
NumberAttributeConstraintsProperty numberAttributeConstraintsProperty = NumberAttributeConstraintsProperty.builder()
.maxValue("maxValue")
.minValue("minValue")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserPool.NumberAttributeConstraintsPropertystatic final classAn implementation forCfnUserPool.NumberAttributeConstraintsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxValue
The maximum value of an attribute that is of the number data type. -
getMinValue
The minimum value of an attribute that is of the number data type. -
builder
-