interface ObjectTypeFieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnObjectTypePropsMixin.ObjectTypeFieldProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnObjectTypePropsMixin_ObjectTypeFieldProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnObjectTypePropsMixin.ObjectTypeFieldProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnObjectTypePropsMixin.ObjectTypeFieldProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnObjectTypePropsMixin » 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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const objectTypeFieldProperty: customerprofiles_mixins.CfnObjectTypePropsMixin.ObjectTypeFieldProperty = {
contentType: 'contentType',
source: 'source',
target: 'target',
};
Properties
| Name | Type | Description |
|---|---|---|
| content | string | The content type of the field. |
| source? | string | A field of a ProfileObject. |
| target? | string | The 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.

.NET
Go
Java
Python
TypeScript