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.
4882 4883 4884 4885 4886 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4882 class InputFormatOptions < Struct.new( :csv) SENSITIVE = [] include Aws::Structure end |