Category: boto3

Problem

Minimal Lambda function handler.

Solution

  def handler(event, context):
    return {'statusCode': 200, 'body': json.dumps(event)}
  

Notes

  • Adapt variable names and paths to your project
  • Add error handling for production use
  • See related chapters in the Learning Path