0.1.0 • Published 2 years ago

migrate-dynamodb v0.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Migrate DynamoDB

A cli for DynamoDB migration.

Usage

migrate-dynamodb -c [PATH_TO_YOUR_CONFIG]

Notes

Each batch/page will migrate 25 items as it is the batchPut limit for AWS.

Sample config

{
    "accessKeyId":"[AWS_ACCESS_KEY_ID]",
    "secretAccessKey": "[AWS_SECRET_ACCESS_KEY]",
    "region": "eu-west-1",
    "tables": [
        {
            "from": "from_table_name",
            "to": "to_table_name"
        }
    ]
}