Interface NumberAttributeProps
- All Superinterfaces:
CustomAttributeProps
,software.amazon.jsii.JsiiSerializable
,NumberAttributeConstraints
- All Known Implementing Classes:
NumberAttributeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:06.403Z")
@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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forNumberAttributeProps
static final class
An implementation forNumberAttributeProps
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.cognito.CustomAttributeProps
getMutable
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.cognito.NumberAttributeConstraints
getMax, getMin
-
Method Details
-
builder
- Returns:
- a
NumberAttributeProps.Builder
ofNumberAttributeProps
-