You can send exception feedback from a Lambda to an API Gateway API either by raising a Python exception and handling it via a mapping template, or return a specific set of…
Posts for: #Api-Gateway
API Gateway URL Construction
This is the construction of the base URL of an API Gateway API: https://{restapiid}.execute-api.{region}.amazonaws.com/{stagename}/
AWS Lambda Return Values for API Triggering
A Lambda triggered by an API has to return a dictionary with certain keys and values in order to not cause an error in execution (e.g. “malformed lambda proxy response”). These…
AWS API Gateway Changes Break Deployment
If you try to rename a parameter in a deployed API Gateway object via CDK, deployment will break (you won’t be able to deploy the change). This seems to do with how…