Class: Aws::GlueDataBrew::Types::ExcelOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::ExcelOptions
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Represents a set of options that define how DataBrew will interpret a Microsoft Excel file when creating a dataset from that file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#header_row ⇒ Boolean
A variable that specifies whether the first row in the file is parsed as the header.
-
#sheet_indexes ⇒ Array<Integer>
One or more sheet numbers in the Excel file that will be included in the dataset.
-
#sheet_names ⇒ Array<String>
One or more named sheets in the Excel file that will be included in the dataset.
Instance Attribute Details
#header_row ⇒ Boolean
A variable that specifies whether the first row in the file is parsed as the header. If this value is false, column names are auto-generated.
1946 1947 1948 1949 1950 1951 1952 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1946 class ExcelOptions < Struct.new( :sheet_names, :sheet_indexes, :header_row) SENSITIVE = [] include Aws::Structure end |
#sheet_indexes ⇒ Array<Integer>
One or more sheet numbers in the Excel file that will be included in the dataset.
1946 1947 1948 1949 1950 1951 1952 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1946 class ExcelOptions < Struct.new( :sheet_names, :sheet_indexes, :header_row) SENSITIVE = [] include Aws::Structure end |
#sheet_names ⇒ Array<String>
One or more named sheets in the Excel file that will be included in the dataset.
1946 1947 1948 1949 1950 1951 1952 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1946 class ExcelOptions < Struct.new( :sheet_names, :sheet_indexes, :header_row) SENSITIVE = [] include Aws::Structure end |