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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnObjectType.FieldMapProperty
static final class
An implementation forCfnObjectType.FieldMapProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Name of the field.- See Also:
-
getObjectTypeField
Represents a field in a ProfileObjectType.- See Also:
-
builder
-