Class: Aws::Translate::Types::ParallelDataConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-translate/types.rb

Overview

Note:

When making an API call, you may pass ParallelDataConfig data as a hash:

{
  s3_uri: "S3Uri", # required
  format: "TSV", # required, accepts TSV, CSV, TMX
}

Specifies the format and S3 location of the parallel data input file.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#formatString

The format of the parallel data input file.

Returns:

  • (String)


854
855
856
857
858
859
# File 'lib/aws-sdk-translate/types.rb', line 854

class ParallelDataConfig < Struct.new(
  :s3_uri,
  :format)
  SENSITIVE = []
  include Aws::Structure
end

#s3_uriString

The URI of the Amazon S3 folder that contains the parallel data input file. The folder must be in the same Region as the API endpoint you are calling.

Returns:

  • (String)


854
855
856
857
858
859
# File 'lib/aws-sdk-translate/types.rb', line 854

class ParallelDataConfig < Struct.new(
  :s3_uri,
  :format)
  SENSITIVE = []
  include Aws::Structure
end