Create a Python Lambda Function in AWS in 5 minutes
Create a new Python file called app.py
Include a handler function that will be what our Lambda function returns
def handler(event, context):
return "Greetings %s from %s!" % (event["name"], event["city"])
In this case our function will take a ...
blog.ajbothe.com3 min read