interface ParallelDataConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Translate.CfnParallelDataPropsMixin.ParallelDataConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstranslate#CfnParallelDataPropsMixin_ParallelDataConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.translate.CfnParallelDataPropsMixin.ParallelDataConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_translate.CfnParallelDataPropsMixin.ParallelDataConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_translate » CfnParallelDataPropsMixin » 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/cfn-property-mixins';
const parallelDataConfigProperty: translate.CfnParallelDataPropsMixin.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
(optional)
The format of the parallel data input file.
s3Uri?
Type:
string
(optional)
The URI of the Amazon S3 folder that contains the parallel data input file.

.NET
Go
Java
Python
TypeScript