Interface NumberAttributeProps

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:14.580Z") @Stability(Stable) public interface NumberAttributeProps extends software.amazon.jsii.JsiiSerializable, NumberAttributeConstraints, CustomAttributeProps
Props for NumberAttr.

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