Handling S3 Bucket Trigger Event in Lambda Using Python

Viewed 6872

The AWS Lambda handler has a signature of

def lambda_handler(event, context):

However, I cannot find any documentation as to the event's structure when the trigger is an S3 Bucket receiving a put

I thought that it might be defined in the s3 console, but couldn't find that there.

Anyone have any leads?

3 Answers
Related