@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.812Z") @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()
Indicates whether a profile should be created when data is received if one doesn’t exist for an object of this type.
|
default String |
getDescription()
The description of the profile object type mapping.
|
String |
getDomainName()
The unique name of the domain.
|
default String |
getEncryptionKey()
The customer-provided key to encrypt the profile object that will be created in this profile object type mapping.
|
default Number |
getExpirationDays()
The number of days until the data of this type expires.
|
default Object |
getFields()
A list of field definitions for the object type mapping.
|
default Object |
getKeys()
A list of keys that can be used to map data to the profile or search for the profile.
|
default String |
getObjectTypeName()
The name of the profile object type.
|
default List<CfnTag> |
getTags()
The tags used to organize, track, or control access for this resource.
|
default String |
getTemplateId()
A unique identifier for the template mapping.
|
@Stability(value=Stable) @NotNull String getDomainName()
@Stability(value=Stable) @Nullable default Object getAllowProfileCreation()
The default is FALSE . If the AllowProfileCreation flag is set to FALSE , then the service tries to fetch a standard profile and associate this object with the profile. If it is set to TRUE , and if no match is found, then the service creates a new standard profile.
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getEncryptionKey()
If not specified the system will use the encryption key of the domain.
@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()
This can be used instead of specifying the Keys and Fields properties directly.
@Stability(value=Stable) static CfnObjectTypeProps.Builder builder()
CfnObjectTypeProps.Builder of CfnObjectTypePropsCopyright © 2022. All rights reserved.