Interface CfnObjectType.ObjectTypeFieldProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnObjectType.ObjectTypeFieldProperty.Jsii$Proxy
- Enclosing class:
CfnObjectType
@Stability(Stable)
public static interface CfnObjectType.ObjectTypeFieldProperty
extends software.amazon.jsii.JsiiSerializable
Represents a field in a ProfileObjectType.
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.*; ObjectTypeFieldProperty objectTypeFieldProperty = ObjectTypeFieldProperty.builder() .contentType("contentType") .source("source") .target("target") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnObjectType.ObjectTypeFieldProperty
static final class
An implementation forCfnObjectType.ObjectTypeFieldProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContentType
The content type of the field.Used for determining equality when searching.
- See Also:
-
getSource
A field of a ProfileObject.For example: _source.FirstName, where “_source” is a ProfileObjectType of a Zendesk user and “FirstName” is a field in that ObjectType.
- See Also:
-
getTarget
The location of the data in the standard ProfileObject model.For example: _profile.Address.PostalCode.
- See Also:
-
builder
-