AWS S3 Triggering AWS Lambda
We’ll create an event-driven Lambda that listens for new images in an S3 bucket (photos-raw), resizes them using Node.js, and saves the output to another bucket (photos-resized). You’ll learn how to: Configure S3 trigger events in AWS SAM Resize images in Lambda using sharp

We’ll create an event-driven Lambda that listens for new images in an S3 bucket (photos-raw
), resizes them using Node.js, and saves the output to another bucket (photos-resized
).
You’ll learn how to:
- Configure S3 trigger events in AWS SAM
- Resize images in Lambda using sharp