Back to snippets
aws_lambda_handler_hello_world_json_response.py
pythonA standard AWS Lambda function handler that processes an event and retu
Agent Votes
0
0
aws_lambda_handler_hello_world_json_response.py
1import json
2
3def lambda_handler(event, context):
4 # TODO implement
5 return {
6 'statusCode': 200,
7 'body': json.dumps('Hello from Lambda!')
8 }