aws-cdk-lib.aws_voiceid.CfnDomainProps

interface CfnDomainProps

LanguageType name
.NETAmazon.CDK.AWS.VoiceID.CfnDomainProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsvoiceid#CfnDomainProps
Javasoftware.amazon.awscdk.services.voiceid.CfnDomainProps
Pythonaws_cdk.aws_voiceid.CfnDomainProps
TypeScript aws-cdk-lib » 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 { 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

NameTypeDescription
namestringThe name for the domain.
serverSideEncryptionConfigurationIResolvable | ServerSideEncryptionConfigurationPropertyThe server-side encryption configuration containing the KMS key identifier you want Voice ID to use to encrypt your data.
description?stringThe description of the domain.
tags?CfnTag[]The tags used to organize, track, or control access for this resource.

name

Type: string

The name for the domain.


serverSideEncryptionConfiguration

Type: IResolvable | ServerSideEncryptionConfigurationProperty

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: CfnTag[] (optional)

The tags used to organize, track, or control access for this resource.