Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

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