interface ParallelDataConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Translate.CfnParallelData.ParallelDataConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awstranslate#CfnParallelData_ParallelDataConfigProperty |
Java | software.amazon.awscdk.services.translate.CfnParallelData.ParallelDataConfigProperty |
Python | aws_cdk.aws_translate.CfnParallelData.ParallelDataConfigProperty |
TypeScript | aws-cdk-lib » aws_translate » CfnParallelData » ParallelDataConfigProperty |
Specifies the format and S3 location of the parallel data input file.
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 parallelDataConfigProperty: translate.CfnParallelData.ParallelDataConfigProperty = {
format: 'format',
s3Uri: 's3Uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| format | string | The format of the parallel data input file. |
| s3 | string | The URI of the Amazon S3 folder that contains the parallel data input file. |
format
Type:
string
The format of the parallel data input file.
s3Uri
Type:
string
The URI of the Amazon S3 folder that contains the parallel data input file.

.NET
Go
Java
Python
TypeScript