AWSDynamoDBCsvOptions
Objective-C
@interface AWSDynamoDBCsvOptions
Swift
class AWSDynamoDBCsvOptions
Processing options for the CSV file being imported.
-
The delimiter used for separating items in the CSV file being imported.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable delimiter;
Swift
var delimiter: String? { get set }
-
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.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable headerList;
Swift
var headerList: [String]? { get set }