Interface StringAttributeConstraints

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
StringAttributeProps
All Known Implementing Classes:
StringAttributeConstraints.Jsii$Proxy, StringAttributeProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-05T03:43:40.867Z") @Stability(Stable) public interface StringAttributeConstraints extends software.amazon.jsii.JsiiSerializable
Constraints that can be applied to a custom attribute of string 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.*;
 StringAttributeConstraints stringAttributeConstraints = StringAttributeConstraints.builder()
         .maxLen(123)
         .minLen(123)
         .build();