Skip to content

Instantly share code, notes, and snippets.

@Sonsuz
Last active November 7, 2022 18:36
Embed
What would you like to do?
lambda function for my simple web application project
import json
def lambda_handler(event, context):
name = event['firstname'] +' '+ event['lastname']
return {
'statusCode': 200,
'body': json.dumps('Hello from Lambda, ' + name)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment