@Stability(value=Stable)
public static interface CfnUserPool.SchemaAttributeProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
SchemaAttributeProperty schemaAttributeProperty = SchemaAttributeProperty.builder()
.attributeDataType("attributeDataType")
.developerOnlyAttribute(false)
.mutable(false)
.name("name")
.numberAttributeConstraints(NumberAttributeConstraintsProperty.builder()
.maxValue("maxValue")
.minValue("minValue")
.build())
.required(false)
.stringAttributeConstraints(StringAttributeConstraintsProperty.builder()
.maxLength("maxLength")
.minLength("minLength")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnUserPool.SchemaAttributeProperty.Builder
A builder for
CfnUserPool.SchemaAttributeProperty |
static class |
CfnUserPool.SchemaAttributeProperty.Jsii$Proxy
An implementation for
CfnUserPool.SchemaAttributeProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnUserPool.SchemaAttributeProperty.Builder |
builder() |
default String |
getAttributeDataType()
`CfnUserPool.SchemaAttributeProperty.AttributeDataType`.
|
default Object |
getDeveloperOnlyAttribute()
`CfnUserPool.SchemaAttributeProperty.DeveloperOnlyAttribute`.
|
default Object |
getMutable()
`CfnUserPool.SchemaAttributeProperty.Mutable`.
|
default String |
getName()
`CfnUserPool.SchemaAttributeProperty.Name`.
|
default Object |
getNumberAttributeConstraints()
`CfnUserPool.SchemaAttributeProperty.NumberAttributeConstraints`.
|
default Object |
getRequired()
`CfnUserPool.SchemaAttributeProperty.Required`.
|
default Object |
getStringAttributeConstraints()
`CfnUserPool.SchemaAttributeProperty.StringAttributeConstraints`.
|
@Stability(value=Stable) @Nullable default String getAttributeDataType()
@Stability(value=Stable) @Nullable default Object getDeveloperOnlyAttribute()
@Stability(value=Stable) @Nullable default Object getMutable()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getNumberAttributeConstraints()
@Stability(value=Stable) @Nullable default Object getRequired()
@Stability(value=Stable) @Nullable default Object getStringAttributeConstraints()
@Stability(value=Stable) static CfnUserPool.SchemaAttributeProperty.Builder builder()
Copyright © 2021. All rights reserved.