Class: Aws::LocationService::Types::JobInputOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb

Overview

Configuration for input data location and format.

Input files have a limitation of 10gb per file, and 1gb per Parquet row-group within the file.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#formatString

Input data format. Currently only Parquet is supported.

Input files have a limitation of 10gb per file, and 1gb per Parquet row-group within the file.

Returns:

  • (String)


4230
4231
4232
4233
4234
4235
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 4230

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

#locationString

S3 ARN or URI where input files are stored.

The Amazon S3 bucket must be created in the same Amazon Web Services region where you plan to run your job.

Returns:

  • (String)


4230
4231
4232
4233
4234
4235
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 4230

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