Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 757 Bytes

File metadata and controls

36 lines (24 loc) · 757 Bytes

csv2dynamodb

Rust

import csv to AWS DynamoDB.

usage

csv2dynamodb --file-path <file-path> --table <table>
   --file-path value    file to import e.g ./tablename.csv (required)
   --table value        target dynamo db tabe name (required)

example

csv2dynamodb --file-path ./test_data.csv --table sample-table

How to specify data types in DynamoDB

It is specified in the CSV header by writing (). e.g. price(N) If not specified, it will be imported as S (string).

name(S),price(N),visible(BOOL)
"abc",100,true

License

The MIT License