Skip to content
This repository has been archived by the owner on Jan 20, 2021. It is now read-only.

Latest commit

 

History

History
77 lines (63 loc) · 4.61 KB

setup-event-notification-destination.md

File metadata and controls

77 lines (63 loc) · 4.61 KB

Setting a destination to receive Amazon S3 event notifications

Before you can enable event notifications for your bucket you must set up one of the following destination types.

Topics

Amazon SNS topic

Amazon Simple Notification Service (Amazon SNS) is a web service that coordinates and manages the delivery or sending of messages to subscribing endpoints or clients. You can use the Amazon SNS console to create an Amazon SNS topic that your notifications can be sent to. The Amazon SNS topic must be in the same region as your Amazon S3 bucket. For information about creating an Amazon SNS topic, see Getting Started in the Amazon Simple Notification Service Developer Guide and the SNS FAQ.

Before you can use the Amazon SNS topic that you create as an event notification destination, you need the following:

  • The Amazon Resource Name (ARN) for the Amazon SNS topic

  • A valid Amazon SNS topic subscription (the topic subscribers are notified when a message is published to your Amazon SNS topic)

  • A permissions policy that you set up in the Amazon SNS console (as shown in the following example)

    {
      "Version":"2012-10-17",
      "Id": "__example_policy_ID",
      "Statement":[
        {
          "Sid": "example-statement-ID",
          "Effect":"Allow",
          "Principal": "*",
          "Action": "SNS:Publish",
          "Resource":"arn:aws:sns:region:account-number:topic-name", 
          "Condition": { 
            "ArnEquals": {
    	       "aws:SourceArn": "arn:aws:s3:::bucket-name"
             }
           } 
         }
       ]
    }
    

Amazon SQS queue

Amazon Simple Queue Service (Amazon SQS) offers reliable and scalable hosted queues for storing messages as they travel between computers. You can use the Amazon SQS console to create an Amazon SQS queue that your notifications can be sent to. The Amazon SQS queue must be in the same region as your Amazon S3 bucket. For information about creating an Amazon SQS queue, see What is Amazon Simple Queue Service and Getting Started with Amazon SQS in the Amazon Simple Queue Service Developer Guide.

Before you can use the Amazon SQS queue as an event notification destination, you need the following:

  • The Amazon Resource Name (ARN) for the Amazon SQS topic

  • A permissions policy that you set up in the Amazon SQS console (as shown in the following example)

    {
      "Version":"2012-10-17",
      "Id": "__example_policy_ID",
      "Statement":[
        {
          "Sid": "example-statement-ID",
          "Effect":"Allow",
          "Principal": "*",
          "Action": "SQS:*",
          "Resource":"arn:aws:sqs:region:account-number:queue-name", 
          "Condition": { 
            "ArnEquals": {
    	       "aws:SourceArn": "arn:aws:s3:::bucket-name"
             }
           } 
         }
       ]
    }
    

Lambda function

You can use the AWS Lambda console to create a Lambda function that uses the AWS infrastructure to run the code on your behalf. . The Lambda function must be in the same region as your S3 bucket. You must also have the name or the ARN of a Lambda function to set up the Lambda function as a event notification destination.

Warning
If your notification ends up writing to the bucket that triggers the notification, this could cause an execution loop. For example, if the bucket triggers a Lambda function each time an object is uploaded, and the function uploads an object to the bucket, then the function indirectly triggers itself. To avoid this, use two buckets, or configure the trigger to only apply to a prefix used for incoming objects.
For more information and an example of using Amazon S3 notifications with AWS Lambda, see Using AWS Lambda with Amazon S3 in the AWS Lambda Developer Guide.

For more information about granting the Amazon S3 the permissions required to publish event notifications to a destination, see Granting Permissions to Publish Event Notification Messages to a Destination in the Amazon S3 Developer Guide.