Interface CfnObjectType.KeyMapProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnObjectType.KeyMapProperty.Jsii$Proxy
- Enclosing class:
CfnObjectType
@Stability(Stable)
public static interface CfnObjectType.KeyMapProperty
extends software.amazon.jsii.JsiiSerializable
A unique key map that can be used to map data to the 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.*; KeyMapProperty keyMapProperty = KeyMapProperty.builder() .name("name") .objectTypeKeyList(List.of(ObjectTypeKeyProperty.builder() .fieldNames(List.of("fieldNames")) .standardIdentifiers(List.of("standardIdentifiers")) .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnObjectType.KeyMapProperty
static final class
An implementation forCfnObjectType.KeyMapProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Name of the key.- See Also:
-
getObjectTypeKeyList
A list of ObjectTypeKey.- See Also:
-
builder
-