Class: Aws::DynamoDB::Types::CsvOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb

Overview

Processing options for the CSV file being imported.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#delimiterString

The delimiter used for separating items in the CSV file being imported.

Returns:

  • (String)


2209
2210
2211
2212
2213
2214
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 2209

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

#header_listArray<String>

List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.

Returns:

  • (Array<String>)


2209
2210
2211
2212
2213
2214
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 2209

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