@Stability(value=Stable)
public static interface CfnObjectType.ObjectTypeKeyProperty
extends software.amazon.jsii.JsiiSerializable
A Key is a special element that can be used to search for a customer profile.
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.*;
ObjectTypeKeyProperty objectTypeKeyProperty = ObjectTypeKeyProperty.builder()
.fieldNames(List.of("fieldNames"))
.standardIdentifiers(List.of("standardIdentifiers"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnObjectType.ObjectTypeKeyProperty.Builder
A builder for
CfnObjectType.ObjectTypeKeyProperty |
static class |
CfnObjectType.ObjectTypeKeyProperty.Jsii$Proxy
An implementation for
CfnObjectType.ObjectTypeKeyProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnObjectType.ObjectTypeKeyProperty.Builder |
builder() |
default List<String> |
getFieldNames()
The reference for the key name of the fields map.
|
default List<String> |
getStandardIdentifiers()
The types of keys that a ProfileObject can have.
|
@Stability(value=Stable) @Nullable default List<String> getFieldNames()
@Stability(value=Stable) @Nullable default List<String> getStandardIdentifiers()
Each ProfileObject can have only 1 UNIQUE key but multiple PROFILE keys. PROFILE means that this key can be used to tie an object to a PROFILE. UNIQUE means that it can be used to uniquely identify an object. If a key a is marked as SECONDARY, it will be used to search for profiles after all other PROFILE keys have been searched. A LOOKUP_ONLY key is only used to match a profile but is not persisted to be used for searching of the profile. A NEW_ONLY key is only used if the profile does not already exist before the object is ingested, otherwise it is only used for matching objects to profiles.
@Stability(value=Stable) static CfnObjectType.ObjectTypeKeyProperty.Builder builder()
Copyright © 2022. All rights reserved.