Skip to content
A simple python script to copy dynamodb table (useful for achieving renaming of table)
Branch: master
Clone or download
Latest commit 2dc1dd1 May 6, 2016
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.gitignore Initial commit Sep 17, 2015
LICENSE Initial commit Sep 17, 2015
README.md Update README.md Sep 17, 2015
dynamodb-copy-table.py Add support for Booleans (#2) May 6, 2016

README.md

dynamodb-copy-table

A simple python script to copy dynamodb table


Requirements

  • Python 2.x
  • boto (pip install boto)

Usage

A simple usage example:

$ python dynamodb-copy-table.py src_table dst_table

You can use the environment variables AWS_DEFAULT_REGION and DISABLE_DATACOPY to select the region (the default region is us-west-2) and disable the copying of data from source table to destination table.

$ AWS_DEFAULT_REGION=us-east-1 DISABLE_DATACOPY=yes python dynamodb-copy-table.py src_table dst_table

References

You can’t perform that action at this time.