Interface CfnUserPool.StringAttributeConstraintsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserPool.StringAttributeConstraintsProperty.Jsii$Proxy
- Enclosing class:
- CfnUserPool
@Stability(Stable)
public static interface CfnUserPool.StringAttributeConstraintsProperty
extends software.amazon.jsii.JsiiSerializable
The
StringAttributeConstraints property type defines the string attribute constraints of an Amazon Cognito user pool.
StringAttributeConstraints is a subproperty of the SchemaAttribute property 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.*;
StringAttributeConstraintsProperty stringAttributeConstraintsProperty = StringAttributeConstraintsProperty.builder()
.maxLength("maxLength")
.minLength("minLength")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserPool.StringAttributeConstraintsPropertystatic final classAn implementation forCfnUserPool.StringAttributeConstraintsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxLength
The maximum length. -
getMinLength
The minimum length. -
builder
-