Notification of new S3 objects

后端 未结 3 361
遥遥无期
遥遥无期 2020-12-09 01:36

I have a scenario where we have many clients uploading to s3.

  • What is the best approach to knowing that there is a new file?
  • Is it realistic/good idea
3条回答
  •  北海茫月
    2020-12-09 02:03

    Your best option nowadays is using the AWS Lambda service. You can write a Lambda using either node.js javascript, java or Python (probably more options will be added in time). The lambda service allows you to write functions that respond to events from S3 such as file upload. Cost effective, scalable and easy to use.

提交回复
热议问题