interface CfnDomainMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VoiceID.Mixins.CfnDomainMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvoiceid/mixins#CfnDomainMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.voiceid.mixins.CfnDomainMixinProps |
Python | aws_cdk.mixins_preview.aws_voiceid.mixins.CfnDomainMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_voiceid » mixins » CfnDomainMixinProps |
Properties for CfnDomainPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-voiceid-domain.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as voiceid_mixins } from '@aws-cdk/mixins-preview/aws-voiceid';
const cfnDomainMixinProps: voiceid_mixins.CfnDomainMixinProps = {
description: 'description',
name: 'name',
serverSideEncryptionConfiguration: {
kmsKeyId: 'kmsKeyId',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the domain. |
| name? | string | The name for the domain. |
| server | IResolvable | Server | The server-side encryption configuration containing the KMS key identifier you want Voice ID to use to encrypt your data. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
description?
Type:
string
(optional)
The description of the domain.
name?
Type:
string
(optional)
The name for the domain.
serverSideEncryptionConfiguration?
Type:
IResolvable | Server
(optional)
The server-side encryption configuration containing the KMS key identifier you want Voice ID to use to encrypt your data.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.

.NET
Go
Java
Python
TypeScript