interface CfnDomainProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.VoiceID.CfnDomainProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsvoiceid#CfnDomainProps |
![]() | software.amazon.awscdk.services.voiceid.CfnDomainProps |
![]() | aws_cdk.aws_voiceid.CfnDomainProps |
![]() | aws-cdk-lib » aws_voiceid » CfnDomainProps |
Properties for defining a CfnDomain
.
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 { aws_voiceid as voiceid } from 'aws-cdk-lib';
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 | IResolvable | Server | 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:
IResolvable
|
Server
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.