interface CfnDomainProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.VoiceID.CfnDomainProps |
Java | software.amazon.awscdk.services.voiceid.CfnDomainProps |
Python | aws_cdk.aws_voiceid.CfnDomainProps |
TypeScript | @aws-cdk/aws-voiceid » CfnDomainProps |
Properties for defining a CfnDomain
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as voiceid from '@aws-cdk/aws-voiceid';
const cfnDomainProps: voiceid.CfnDomainProps = {
name: 'name',
serverSideEncryptionConfiguration: {
kmsKeyId: 'kmsKeyId',
},
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name for the domain. |
server | Server | IResolvable | The server-side encryption configuration containing the KMS key identifier you want Voice ID to use to encrypt your data. |
description? | string | The description of the domain. |
tags? | Cfn [] | The tags used to organize, track, or control access for this resource. |
name
Type:
string
The name for the domain.
serverSideEncryptionConfiguration
Type:
Server
|
IResolvable
The server-side encryption configuration containing the KMS key identifier you want Voice ID to use to encrypt your data.
description?
Type:
string
(optional)
The description of the domain.
tags?
Type:
Cfn
[]
(optional)
The tags used to organize, track, or control access for this resource.