Class: Aws::DynamoDB::Types::InputFormatOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::InputFormatOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
The format options for the data that was imported into the target table. There is one value, CsvOption.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#csv ⇒ Types::CsvOptions
The options for imported source files in CSV format.
Instance Attribute Details
#csv ⇒ Types::CsvOptions
The options for imported source files in CSV format. The values are Delimiter and HeaderList.
4837 4838 4839 4840 4841 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4837 class InputFormatOptions < Struct.new( :csv) SENSITIVE = [] include Aws::Structure end |