Interface StringAttributeProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.061Z") @Stability(Stable) public interface StringAttributeProps extends software.amazon.jsii.JsiiSerializable, StringAttributeConstraints, CustomAttributeProps
Props for constructing a StringAttr.

Example:

 UserPool.Builder.create(this, "myuserpool")
         // ...
         .standardAttributes(StandardAttributes.builder()
                 .fullname(StandardAttribute.builder()
                         .required(true)
                         .mutable(false)
                         .build())
                 .address(StandardAttribute.builder()
                         .required(false)
                         .mutable(true)
                         .build())
                 .build())
         .customAttributes(Map.of(
                 "myappid", StringAttribute.Builder.create().minLen(5).maxLen(15).mutable(false).build(),
                 "callingcode", NumberAttribute.Builder.create().min(1).max(3).mutable(true).build(),
                 "isEmployee", BooleanAttribute.Builder.create().mutable(true).build(),
                 "joinedOn", new DateTimeAttribute()))
         .build();