Class StringAttribute

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.cognito.StringAttribute
All Implemented Interfaces:
ICustomAttribute, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.059Z") @Stability(Stable) public class StringAttribute extends software.amazon.jsii.JsiiObject implements ICustomAttribute
The String custom attribute type.

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();
 
  • Constructor Details

    • StringAttribute

      protected StringAttribute(software.amazon.jsii.JsiiObjectRef objRef)
    • StringAttribute

      protected StringAttribute(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • StringAttribute

      @Stability(Stable) public StringAttribute(@Nullable StringAttributeProps props)
      Parameters:
      props -
    • StringAttribute

      @Stability(Stable) public StringAttribute()
  • Method Details