@Stability(value=Stable)
public static interface CfnObjectType.ObjectTypeFieldProperty
extends software.amazon.jsii.JsiiSerializable
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 String |
getContentType()
The content type of the field.
|
default String |
getSource()
A field of a ProfileObject.
|
default String |
getTarget()
The location of the data in the standard ProfileObject model.
|
@Stability(value=Stable) @Nullable default String getContentType()
Used for determining equality when searching.
@Stability(value=Stable) @Nullable default String getSource()
For example: _source.FirstName, where “_source” is a ProfileObjectType of a Zendesk user and “FirstName” is a field in that ObjectType.
@Stability(value=Stable) @Nullable default String getTarget()
For example: _profile.Address.PostalCode.
@Stability(value=Stable) static CfnObjectType.ObjectTypeFieldProperty.Builder builder()
Copyright © 2022. All rights reserved.