@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:05.733Z") @Stability(value=Stable) public interface CfnObjectTypeProps extends software.amazon.jsii.JsiiSerializable
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.customerprofiles.*;
CfnObjectTypeProps cfnObjectTypeProps = CfnObjectTypeProps.builder()
.domainName("domainName")
// the properties below are optional
.allowProfileCreation(false)
.description("description")
.encryptionKey("encryptionKey")
.expirationDays(123)
.fields(List.of(FieldMapProperty.builder()
.name("name")
.objectTypeField(ObjectTypeFieldProperty.builder()
.contentType("contentType")
.source("source")
.target("target")
.build())
.build()))
.keys(List.of(KeyMapProperty.builder()
.name("name")
.objectTypeKeyList(List.of(ObjectTypeKeyProperty.builder()
.fieldNames(List.of("fieldNames"))
.standardIdentifiers(List.of("standardIdentifiers"))
.build()))
.build()))
.objectTypeName("objectTypeName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.templateId("templateId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnObjectTypeProps.Builder
A builder for
CfnObjectTypeProps |
static class |
CfnObjectTypeProps.Jsii$Proxy
An implementation for
CfnObjectTypeProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnObjectTypeProps.Builder |
builder() |
default Object |
getAllowProfileCreation()
`AWS::CustomerProfiles::ObjectType.AllowProfileCreation`.
|
default String |
getDescription()
`AWS::CustomerProfiles::ObjectType.Description`.
|
String |
getDomainName()
`AWS::CustomerProfiles::ObjectType.DomainName`.
|
default String |
getEncryptionKey()
`AWS::CustomerProfiles::ObjectType.EncryptionKey`.
|
default Number |
getExpirationDays()
`AWS::CustomerProfiles::ObjectType.ExpirationDays`.
|
default Object |
getFields()
`AWS::CustomerProfiles::ObjectType.Fields`.
|
default Object |
getKeys()
`AWS::CustomerProfiles::ObjectType.Keys`.
|
default String |
getObjectTypeName()
`AWS::CustomerProfiles::ObjectType.ObjectTypeName`.
|
default List<CfnTag> |
getTags()
`AWS::CustomerProfiles::ObjectType.Tags`.
|
default String |
getTemplateId()
`AWS::CustomerProfiles::ObjectType.TemplateId`.
|
@Stability(value=Stable) @Nullable default Object getAllowProfileCreation()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @NotNull String getDomainName()
@Stability(value=Stable) @Nullable default String getEncryptionKey()
@Stability(value=Stable) @Nullable default Number getExpirationDays()
@Stability(value=Stable) @Nullable default Object getFields()
@Stability(value=Stable) @Nullable default Object getKeys()
@Stability(value=Stable) @Nullable default String getObjectTypeName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default String getTemplateId()
@Stability(value=Stable) static CfnObjectTypeProps.Builder builder()
CfnObjectTypeProps.Builder of CfnObjectTypePropsCopyright © 2021. All rights reserved.