interface DomainObjectTypeFieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnDomainObjectTypePropsMixin.DomainObjectTypeFieldProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnDomainObjectTypePropsMixin_DomainObjectTypeFieldProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnDomainObjectTypePropsMixin.DomainObjectTypeFieldProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnDomainObjectTypePropsMixin.DomainObjectTypeFieldProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » CfnDomainObjectTypePropsMixin » 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/cfn-property-mixins';
const domainObjectTypeFieldProperty: customerprofiles.CfnDomainObjectTypePropsMixin.DomainObjectTypeFieldProperty = {
contentType: 'contentType',
featureType: 'featureType',
source: 'source',
target: 'target',
};
Properties
| Name | Type | Description |
|---|---|---|
| content | string | The content type of the field. |
| feature | string | The feature type of the field. |
| source? | string | The source field name. |
| target? | 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.
source?
Type:
string
(optional)
The source field name.
target?
Type:
string
(optional)
The target field name.

.NET
Go
Java
Python
TypeScript