dynamodump
dynamodump copied to clipboard
Simple backup and restore for Amazon DynamoDB using AWS SDK for Python (boto3)
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/bchew/dynamodump). ## Config Migration Needed - [ ]...
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [PyCQA/flake8](https://togithub.com/PyCQA/flake8) | repository | major | `4.0.1` -> `5.0.4` | Note:...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [flake8](https://togithub.com/pycqa/flake8) ([changelog](https://flake8.pycqa.org/en/latest/release-notes/index.html)) | `==4.0.1` -> `==5.0.4` |...
`dynamodump` has an option to use local DynamoDB by setting the region to `local`. The problem is that the AWS regions are defined explicitly in the C# client in an...
This add DynamoDB Streams restoration feature to dynamodump. Can be disabled by setting `--skipStreams` if needed.
I implemented this feature since we needed to limit the read capacity when performing the backup to avoid throttling, errors, and degrading running application performance. I am submitting this pull...
In my organization, we have a number of AWS accounts that require temporary AWS session tokens in order to perform any action from the terminal, also known as security tokens...
I have the need to restore tables with the Time To Live property set on a table. This PR adds a new function do_ttl_attribute() that executes the boto3 client call...
This PR adds an option to filter attributes when creating a backup. The motivation for this was that when backing up and restoring global tables, there are certain attributes added...
Unike boto3, the boto library needs to reference AWS_CONTAINER_CREDENTIALS_RELATIVE_URI for credentials in ECS. This adds support.