Skip to content

poad/csv2dynamodb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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