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();