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

.NET
Go
Java
Python
TypeScript