├── .github └── PULL_REQUEST_TEMPLATE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cookiecutter.json └── {{ cookiecutter.project_name }} ├── LICENSE ├── README.md ├── read_dynamodb_event ├── __init__.py ├── app.py └── requirements.txt └── template.yaml /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cookiecutter-aws-sam-dynamodb-python/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cookiecutter-aws-sam-dynamodb-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cookiecutter-aws-sam-dynamodb-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cookiecutter-aws-sam-dynamodb-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cookiecutter-aws-sam-dynamodb-python/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cookiecutter-aws-sam-dynamodb-python/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cookiecutter-aws-sam-dynamodb-python/HEAD/{{ cookiecutter.project_name }}/LICENSE -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cookiecutter-aws-sam-dynamodb-python/HEAD/{{ cookiecutter.project_name }}/README.md -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/read_dynamodb_event/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/read_dynamodb_event/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cookiecutter-aws-sam-dynamodb-python/HEAD/{{ cookiecutter.project_name }}/read_dynamodb_event/app.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/read_dynamodb_event/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cookiecutter-aws-sam-dynamodb-python/HEAD/{{ cookiecutter.project_name }}/template.yaml --------------------------------------------------------------------------------