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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnObjectType.FieldMapPropertystatic final classAn implementation forCfnObjectType.FieldMapProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Name of the field. -
getObjectTypeField
Represents a field in a ProfileObjectType. -
builder
-