aws-cdk-lib.aws_customerprofiles.CfnObjectType.ObjectTypeFieldProperty

interface ObjectTypeFieldProperty

LanguageType name
.NETAmazon.CDK.AWS.CustomerProfiles.CfnObjectType.ObjectTypeFieldProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnObjectType_ObjectTypeFieldProperty
Javasoftware.amazon.awscdk.services.customerprofiles.CfnObjectType.ObjectTypeFieldProperty
Pythonaws_cdk.aws_customerprofiles.CfnObjectType.ObjectTypeFieldProperty
TypeScript aws-cdk-lib » aws_customerprofiles » CfnObjectType » ObjectTypeFieldProperty

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 { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const objectTypeFieldProperty: customerprofiles.CfnObjectType.ObjectTypeFieldProperty = {
  contentType: 'contentType',
  source: 'source',
  target: 'target',
};

Properties

NameTypeDescription
contentType?stringThe content type of the field.
source?stringA field of a ProfileObject.
target?stringThe location of the data in the standard ProfileObject model.

contentType?

Type: string (optional)

The content type of the field.

Used for determining equality when searching.


source?

Type: string (optional)

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.


target?

Type: string (optional)

The location of the data in the standard ProfileObject model.

For example: _profile.Address.PostalCode.