Class BooleanAttribute
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.cognito.BooleanAttribute
- All Implemented Interfaces:
ICustomAttribute,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.846Z")
@Stability(Stable)
public class BooleanAttribute
extends software.amazon.jsii.JsiiObject
implements ICustomAttribute
The Boolean 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();
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.cognito.ICustomAttribute
ICustomAttribute.Jsii$Default, ICustomAttribute.Jsii$Proxy -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedBooleanAttribute(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedBooleanAttribute(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionbind()Bind this custom attribute type to the values as expected by CloudFormation.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
BooleanAttribute
protected BooleanAttribute(software.amazon.jsii.JsiiObjectRef objRef) -
BooleanAttribute
protected BooleanAttribute(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
BooleanAttribute
- Parameters:
props-
-
BooleanAttribute
@Stability(Stable) public BooleanAttribute()
-
-
Method Details
-
bind
Bind this custom attribute type to the values as expected by CloudFormation.- Specified by:
bindin interfaceICustomAttribute
-