#aws-lambda
Read more stories on Hashnode
Articles with this tag
Let's setup a simple API Gateway that calls a simple Python Lambda function in AWS. For this demo, I'm going to piggy-back off of a previous post in...
I'm working on a more expansive post on Lambda functions and API Gateway, but I wanted to share a find that I think is useful when testing Lambda...
Create a new Python file called app.py Include a handler function that will be what our Lambda function returns def handler(event, context): ...