public static interface CfnObjectType.ObjectTypeFieldProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnObjectType.ObjectTypeFieldProperty.Builder
A builder for
CfnObjectType.ObjectTypeFieldProperty |
static class |
CfnObjectType.ObjectTypeFieldProperty.Jsii$Proxy
An implementation for
CfnObjectType.ObjectTypeFieldProperty |
Modifier and Type | Method and Description |
---|---|
static CfnObjectType.ObjectTypeFieldProperty.Builder |
builder() |
default java.lang.String |
getContentType()
The content type of the field.
|
default java.lang.String |
getSource()
A field of a ProfileObject.
|
default java.lang.String |
getTarget()
The location of the data in the standard ProfileObject model.
|
default java.lang.String getContentType()
Used for determining equality when searching.
default java.lang.String getSource()
For example: _source.FirstName, where “_source” is a ProfileObjectType of a Zendesk user and “FirstName” is a field in that ObjectType.
default java.lang.String getTarget()
For example: _profile.Address.PostalCode.
static CfnObjectType.ObjectTypeFieldProperty.Builder builder()