Class: Aws::GlueDataBrew::Types::FormatOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::FormatOptions
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass FormatOptions data as a hash:
{
json: {
multi_line: false,
},
excel: {
sheet_names: ["SheetName"],
sheet_indexes: [1],
header_row: false,
},
csv: {
delimiter: "Delimiter",
header_row: false,
},
}
Options that define the structure of either 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.
1716 1717 1718 1719 1720 1721 1722 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1716 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.
1716 1717 1718 1719 1720 1721 1722 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1716 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.
1716 1717 1718 1719 1720 1721 1722 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1716 class FormatOptions < Struct.new( :json, :excel, :csv) SENSITIVE = [] include Aws::Structure end |