interface CfnDomainObjectTypeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnDomainObjectTypeProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnDomainObjectTypeProps |
Java | software.amazon.awscdk.services.customerprofiles.CfnDomainObjectTypeProps |
Python | aws_cdk.aws_customerprofiles.CfnDomainObjectTypeProps |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnDomainObjectTypeProps |
Properties for defining a CfnDomainObjectType.
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 cfnDomainObjectTypeProps: customerprofiles.CfnDomainObjectTypeProps = {
domainName: 'domainName',
fields: {
fieldsKey: {
source: 'source',
target: 'target',
// the properties below are optional
contentType: 'contentType',
featureType: 'featureType',
},
},
objectTypeName: 'objectTypeName',
// the properties below are optional
description: 'description',
encryptionKey: 'encryptionKey',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The unique name of the domain. |
| fields | IResolvable | { [string]: IResolvable | Domain } | A map of the name and ObjectType field. |
| object | string | The name of the domain object type. |
| description? | string | Description of the domain object type. |
| encryption | string | The default encryption key. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
domainName
Type:
string
The unique name of the domain.
fields
Type:
IResolvable | { [string]: IResolvable | Domain }
A map of the name and ObjectType field.
objectTypeName
Type:
string
The name of the domain object type.
description?
Type:
string
(optional)
Description of the domain object type.
encryptionKey?
Type:
string
(optional)
The default encryption key.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript