Interface CfnObjectType.FieldMapProperty

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

@Stability(Stable) public static interface CfnObjectType.FieldMapProperty extends software.amazon.jsii.JsiiSerializable
A map of the name and ObjectType field.

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.*;
 FieldMapProperty fieldMapProperty = FieldMapProperty.builder()
         .name("name")
         .objectTypeField(ObjectTypeFieldProperty.builder()
                 .contentType("contentType")
                 .source("source")
                 .target("target")
                 .build())
         .build();
 

See Also: