66.2k views
2 votes
How do I set up Amazon S3 event notifications?

1 Answer

4 votes

To set up Amazon S3 event notifications, use the S3 console to add a notification to your bucket, select event types, choose a destination for the notification, and save to enable.

To set up Amazon S3 event notifications, follow these steps:

  1. Open the Amazon S3 console and navigate to the bucket for which you want to set up notifications.
  2. In the bucket properties, find the Event notifications section.
  3. Click Add notification.
  4. Name your notification and select the event types you want AWS to respond to (e.g., PUT, POST, DELETE, etc.).
  5. Choose the destination where the event notification will be sent (such as an Amazon Simple Notification Service topic, AWS Lambda function, or Amazon Simple Queue Service queue).
  6. Set any necessary filters if you want only specific objects to trigger an event.
  7. Click Save to enable the notification.

After saving, whenever the specified events occur, AWS will send a message to the selected destination, effectively notifying you or triggering a predefined process.

User Oliver Curting
by
8.6k points