CfnParallelDataMixinProps
- class aws_cdk.cfn_property_mixins.aws_translate.CfnParallelDataMixinProps(*, description=None, encryption_key=None, name=None, parallel_data_config=None, tags=None)
Bases:
objectProperties for CfnParallelDataPropsMixin.
- Parameters:
description (
Optional[str]) – A custom description for the parallel data resource.encryption_key (
Union[IResolvable,EncryptionKeyProperty,Dict[str,Any],None]) – The encryption key used to encrypt this object.name (
Optional[str]) – A custom name for the parallel data resource. Must be unique in the account and region.parallel_data_config (
Union[IResolvable,ParallelDataConfigProperty,Dict[str,Any],None]) – Specifies the format and S3 location of the parallel data input file.tags (
Optional[Sequence[Union[TagsItemsProperty,Dict[str,Any]]]]) – Tags associated with the parallel data resource.
- See:
- 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.cfn_property_mixins import aws_translate as translate cfn_parallel_data_mixin_props = translate.CfnParallelDataMixinProps( description="description", encryption_key=translate.CfnParallelDataPropsMixin.EncryptionKeyProperty( id="id", type="type" ), name="name", parallel_data_config=translate.CfnParallelDataPropsMixin.ParallelDataConfigProperty( format="format", s3_uri="s3Uri" ), tags=[translate.CfnParallelDataPropsMixin.TagsItemsProperty( key="key", value="value" )] )
Attributes
- description
A custom description for the parallel data resource.
- encryption_key
The encryption key used to encrypt this object.
- name
A custom name for the parallel data resource.
Must be unique in the account and region.
- parallel_data_config
Specifies the format and S3 location of the parallel data input file.
- tags
Tags associated with the parallel data resource.