Interface CfnObjectType.ObjectTypeKeyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnObjectType.ObjectTypeKeyProperty.Jsii$Proxy
Enclosing class:
CfnObjectType

@Stability(Stable) public static interface CfnObjectType.ObjectTypeKeyProperty extends software.amazon.jsii.JsiiSerializable
An object that defines the Key element of a ProfileObject.

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

See Also: