├── LICENSE ├── README.md ├── api-gateway ├── integration-request │ └── mapping_template.json └── swagger.yml ├── iam-policies └── lambda-dynamodb-url-shortener.json ├── url-shortener-create └── lambda_handler.py └── url-shortener-retrieve └── lambda_handler.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruanbekker/aws-serverless-url-shortener/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruanbekker/aws-serverless-url-shortener/HEAD/README.md -------------------------------------------------------------------------------- /api-gateway/integration-request/mapping_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruanbekker/aws-serverless-url-shortener/HEAD/api-gateway/integration-request/mapping_template.json -------------------------------------------------------------------------------- /api-gateway/swagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruanbekker/aws-serverless-url-shortener/HEAD/api-gateway/swagger.yml -------------------------------------------------------------------------------- /iam-policies/lambda-dynamodb-url-shortener.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruanbekker/aws-serverless-url-shortener/HEAD/iam-policies/lambda-dynamodb-url-shortener.json -------------------------------------------------------------------------------- /url-shortener-create/lambda_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruanbekker/aws-serverless-url-shortener/HEAD/url-shortener-create/lambda_handler.py -------------------------------------------------------------------------------- /url-shortener-retrieve/lambda_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruanbekker/aws-serverless-url-shortener/HEAD/url-shortener-retrieve/lambda_handler.py --------------------------------------------------------------------------------