CfnParallelDataProps
- class aws_cdk.aws_translate.CfnParallelDataProps(*, name, parallel_data_config, description=None, encryption_key=None, tags=None)
Bases:
objectProperties for defining a
CfnParallelData.- Parameters:
name (
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]]) – Specifies the format and S3 location of the parallel data input file.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.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 import aws_translate as translate cfn_parallel_data_props = translate.CfnParallelDataProps( name="name", parallel_data_config=translate.CfnParallelData.ParallelDataConfigProperty( format="format", s3_uri="s3Uri" ), # the properties below are optional description="description", encryption_key=translate.CfnParallelData.EncryptionKeyProperty( id="id", type="type" ), tags=[translate.CfnParallelData.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.