Interface CfnIntegration.ObjectTypeMappingProperty

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

@Stability(Stable) public static interface CfnIntegration.ObjectTypeMappingProperty extends software.amazon.jsii.JsiiSerializable
A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an ObjectTypeName (template) used to ingest the event.

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.*;
 ObjectTypeMappingProperty objectTypeMappingProperty = ObjectTypeMappingProperty.builder()
         .key("key")
         .value("value")
         .build();
 

See Also: