interface CfnParallelDataProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Translate.CfnParallelDataProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awstranslate#CfnParallelDataProps |
Java | software.amazon.awscdk.services.translate.CfnParallelDataProps |
Python | aws_cdk.aws_translate.CfnParallelDataProps |
TypeScript | aws-cdk-lib » aws_translate » CfnParallelDataProps |
Properties for defining a CfnParallelData.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_translate as translate } from 'aws-cdk-lib';
const cfnParallelDataProps: translate.CfnParallelDataProps = {
name: 'name',
parallelDataConfig: {
format: 'format',
s3Uri: 's3Uri',
},
// the properties below are optional
description: 'description',
encryptionKey: {
id: 'id',
type: 'type',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | A custom name for the parallel data resource. |
| parallel | IResolvable | Parallel | Specifies the format and S3 location of the parallel data input file. |
| description? | string | A custom description for the parallel data resource. |
| encryption | IResolvable | Encryption | The encryption key used to encrypt this object. |
| tags? | Tags[] | Tags associated with the parallel data resource. |
name
Type:
string
A custom name for the parallel data resource.
Must be unique in the account and region.
parallelDataConfig
Type:
IResolvable | Parallel
Specifies the format and S3 location of the parallel data input file.
description?
Type:
string
(optional)
A custom description for the parallel data resource.
encryptionKey?
Type:
IResolvable | Encryption
(optional)
The encryption key used to encrypt this object.
tags?
Type:
Tags[]
(optional)
Tags associated with the parallel data resource.

.NET
Go
Java
Python
TypeScript