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();
 

See Also: