Class: Aws::GlueDataBrew::Types::CsvOptions

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 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

Instance Attribute Details

#delimiterString

A single character that specifies the delimiter being used in the CSV file.

Returns:

  • (String)


654
655
656
657
658
659
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 654

class CsvOptions < Struct.new(
  :delimiter,
  :header_row)
  SENSITIVE = []
  include Aws::Structure
end

#header_rowBoolean

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.

Returns:

  • (Boolean)


654
655
656
657
658
659
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 654

class CsvOptions < Struct.new(
  :delimiter,
  :header_row)
  SENSITIVE = []
  include Aws::Structure
end