CfnDomainProps
- class aws_cdk.aws_voiceid.CfnDomainProps(*, name, server_side_encryption_configuration, description=None, tags=None)
Bases:
object
Properties for defining a
CfnDomain
.- Parameters:
name (
str
) – The name for the domain.server_side_encryption_configuration (
Union
[IResolvable
,ServerSideEncryptionConfigurationProperty
,Dict
[str
,Any
]]) – The server-side encryption configuration containing the KMS key identifier you want Voice ID to use to encrypt your data.description (
Optional
[str
]) – The description of the domain.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The tags used to organize, track, or control access for this resource.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-voiceid-domain.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_voiceid as voiceid cfn_domain_props = voiceid.CfnDomainProps( name="name", server_side_encryption_configuration=voiceid.CfnDomain.ServerSideEncryptionConfigurationProperty( kms_key_id="kmsKeyId" ), # the properties below are optional description="description", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of the domain.
- name
The name for the domain.
- server_side_encryption_configuration
The server-side encryption configuration containing the KMS key identifier you want Voice ID to use to encrypt your data.
- tags
The tags used to organize, track, or control access for this resource.