Class: Aws::GlueDataBrew::Types::CsvOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::CsvOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
Represents a set of options that define how DataBrew will read a comma-separated value (CSV) file when creating a dataset from that file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delimiter ⇒ String
A single character that specifies the delimiter being used in the CSV file.
-
#header_row ⇒ Boolean
A variable that specifies whether the first row in the file is parsed as the header.
Instance Attribute Details
#delimiter ⇒ String
A single character that specifies the delimiter being used in the CSV file.
654 655 656 657 658 659 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 654 class CsvOptions < Struct.new( :delimiter, :header_row) SENSITIVE = [] include Aws::Structure end |
#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.
654 655 656 657 658 659 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 654 class CsvOptions < Struct.new( :delimiter, :header_row) SENSITIVE = [] include Aws::Structure end |