Class: Aws::GlueDataBrew::Types::FormatOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::FormatOptions
- Includes:
- Structure
- Defined in:
- 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
-
#csv ⇒ Types::CsvOptions
Options that define how CSV input is to be interpreted by DataBrew.
-
#excel ⇒ Types::ExcelOptions
Options that define how Excel input is to be interpreted by DataBrew.
-
#json ⇒ Types::JsonOptions
Options that define how JSON input is to be interpreted by DataBrew.
Instance Attribute Details
#csv ⇒ Types::CsvOptions
Options that define how CSV input is to be interpreted by DataBrew.
2031 2032 2033 2034 2035 2036 2037 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2031 class FormatOptions < Struct.new( :json, :excel, :csv) SENSITIVE = [] include Aws::Structure end |
#excel ⇒ Types::ExcelOptions
Options that define how Excel input is to be interpreted by DataBrew.
2031 2032 2033 2034 2035 2036 2037 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2031 class FormatOptions < Struct.new( :json, :excel, :csv) SENSITIVE = [] include Aws::Structure end |
#json ⇒ Types::JsonOptions
Options that define how JSON input is to be interpreted by DataBrew.
2031 2032 2033 2034 2035 2036 2037 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2031 class FormatOptions < Struct.new( :json, :excel, :csv) SENSITIVE = [] include Aws::Structure end |