Class: Aws::DynamoDB::Types::CsvOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::CsvOptions
- 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
-
#delimiter ⇒ String
The delimiter used for separating items in the CSV file being imported.
-
#header_list ⇒ Array<String>
List of the headers used to specify a common header for all source CSV files being imported.
Instance Attribute Details
#delimiter ⇒ String
The delimiter used for separating items in the CSV file being imported.
2146 2147 2148 2149 2150 2151 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 2146 class CsvOptions < Struct.new( :delimiter, :header_list) SENSITIVE = [] include Aws::Structure end |
#header_list ⇒ Array<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.
2146 2147 2148 2149 2150 2151 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 2146 class CsvOptions < Struct.new( :delimiter, :header_list) SENSITIVE = [] include Aws::Structure end |