├── .gitignore ├── README.md ├── dynamodb └── 2012-08-10 │ ├── examples-1.json │ ├── paginators-1.json │ ├── service-2.json │ └── waiters-2.json ├── handler.py ├── serverless.yml └── tables.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdebrie/serverless-dynamodb-backups/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdebrie/serverless-dynamodb-backups/HEAD/README.md -------------------------------------------------------------------------------- /dynamodb/2012-08-10/examples-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdebrie/serverless-dynamodb-backups/HEAD/dynamodb/2012-08-10/examples-1.json -------------------------------------------------------------------------------- /dynamodb/2012-08-10/paginators-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdebrie/serverless-dynamodb-backups/HEAD/dynamodb/2012-08-10/paginators-1.json -------------------------------------------------------------------------------- /dynamodb/2012-08-10/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdebrie/serverless-dynamodb-backups/HEAD/dynamodb/2012-08-10/service-2.json -------------------------------------------------------------------------------- /dynamodb/2012-08-10/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdebrie/serverless-dynamodb-backups/HEAD/dynamodb/2012-08-10/waiters-2.json -------------------------------------------------------------------------------- /handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdebrie/serverless-dynamodb-backups/HEAD/handler.py -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdebrie/serverless-dynamodb-backups/HEAD/serverless.yml -------------------------------------------------------------------------------- /tables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdebrie/serverless-dynamodb-backups/HEAD/tables.json --------------------------------------------------------------------------------