Interface CustomAttributeConfig

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CustomAttributeConfig.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.010Z") @Stability(Stable) public interface CustomAttributeConfig extends software.amazon.jsii.JsiiSerializable
Configuration that will be fed into CloudFormation for any custom attribute 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.*;
 CustomAttributeConfig customAttributeConfig = CustomAttributeConfig.builder()
         .dataType("dataType")
         // the properties below are optional
         .mutable(false)
         .numberConstraints(NumberAttributeConstraints.builder()
                 .max(123)
                 .min(123)
                 .build())
         .stringConstraints(StringAttributeConstraints.builder()
                 .maxLen(123)
                 .minLen(123)
                 .build())
         .build();