interface DomainObjectTypeFieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnDomainObjectType.DomainObjectTypeFieldProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnDomainObjectType_DomainObjectTypeFieldProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnDomainObjectType.DomainObjectTypeFieldProperty |
Python | aws_cdk.aws_customerprofiles.CfnDomainObjectType.DomainObjectTypeFieldProperty |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnDomainObjectType » DomainObjectTypeFieldProperty |
Represents a field in a DomainObjectType.
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 domainObjectTypeFieldProperty: customerprofiles.CfnDomainObjectType.DomainObjectTypeFieldProperty = {
source: 'source',
target: 'target',
// the properties below are optional
contentType: 'contentType',
featureType: 'featureType',
};
Properties
| Name | Type | Description |
|---|---|---|
| source | string | The source field name. |
| target | string | The target field name. |
| content | string | The content type of the field. |
| feature | string | The feature type of the field. |
source
Type:
string
The source field name.
target
Type:
string
The target field name.
contentType?
Type:
string
(optional)
The content type of the field.
featureType?
Type:
string
(optional)
The feature type of the field.

.NET
Go
Java
Python
TypeScript