...

/

Simple Storage Service Integration

Simple Storage Service Integration

Learn how to integrate AWS Lambda with S3.

What is S3?

Amazon Simple Storage Service (S3) is a highly scalable and durable object storage service provided by AWS. It’s designed to store and retrieve data, from small individual files to very large datasets, across a distributed infrastructure. Amazon S3 is widely used for data storage, backup, archives, content distribution, and serving static assets for web applications.

Press + to interact

AWS Lambda can be used both as a listener to events coming from an S3 instance and as a client that puts data into storage. For example, we can configure an AWS Lambda function to listen to new file uploads and record them in the analytics database. ...