Class: Aws::GlueDataBrew::Types::FormatOptions

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

Overview

Represents a set of options that define the structure of either comma-separated value (CSV), Excel, or JSON input.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#csvTypes::CsvOptions

Options that define how CSV input is to be interpreted by DataBrew.

Returns:



2031
2032
2033
2034
2035
2036
2037
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2031

class FormatOptions < Struct.new(
  :json,
  :excel,
  :csv)
  SENSITIVE = []
  include Aws::Structure
end

#excelTypes::ExcelOptions

Options that define how Excel input is to be interpreted by DataBrew.

Returns:



2031
2032
2033
2034
2035
2036
2037
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2031

class FormatOptions < Struct.new(
  :json,
  :excel,
  :csv)
  SENSITIVE = []
  include Aws::Structure
end

#jsonTypes::JsonOptions

Options that define how JSON input is to be interpreted by DataBrew.

Returns:



2031
2032
2033
2034
2035
2036
2037
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2031

class FormatOptions < Struct.new(
  :json,
  :excel,
  :csv)
  SENSITIVE = []
  include Aws::Structure
end