CfnDomainMixinProps
- class aws_cdk.mixins_preview.aws_voiceid.mixins.CfnDomainMixinProps(*, description=None, name=None, server_side_encryption_configuration=None, tags=None)
Bases:
objectProperties for CfnDomainPropsMixin.
- Parameters:
description (
Optional[str]) – The description of the domain.name (
Optional[str]) – The name for the domain.server_side_encryption_configuration (
Union[IResolvable,ServerSideEncryptionConfigurationProperty,Dict[str,Any],None]) – The server-side encryption configuration containing the KMS key identifier you want Voice ID to use to encrypt your data.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.mixins_preview.aws_voiceid import mixins as voiceid_mixins cfn_domain_mixin_props = voiceid_mixins.CfnDomainMixinProps( description="description", name="name", server_side_encryption_configuration=voiceid_mixins.CfnDomainPropsMixin.ServerSideEncryptionConfigurationProperty( kms_key_id="kmsKeyId" ), 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.