Configuring an Amazon SNS dead-letter queue for a subscription - Amazon Simple Notification Service
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Configuring an Amazon SNS dead-letter queue for a subscription

A dead-letter queue is an Amazon SQS queue that an Amazon SNS subscription can target for messages that can't be delivered to subscribers successfully. Messages that can't be delivered due to client errors or server errors are held in the dead-letter queue for further analysis or reprocessing. For more information, see Amazon SNS dead-letter queues (DLQs) and Amazon SNS message delivery retries.

This page shows how you can use the Amazon Web Services Management Console, an Amazon SDK, the Amazon CLI, and Amazon CloudFormation to configure a dead-letter queue for an Amazon SNS subscription.

Note

For a FIFO topic, you can use an Amazon SQS queue as a dead-letter queue for the Amazon SNS subscription. FIFO topic subscriptions use FIFO queues, and standard topic subscriptions use standard queues.

Prerequisites

Before you configure a dead-letter queue, complete the following prerequisites:

  1. Create an Amazon SNS topic named MyTopic.

  2. Create an Amazon SQS queue named MyEndpoint, to be used as the endpoint for the Amazon SNS subscription.

  3. (Skip for Amazon CloudFormation) Subscribe the queue to the topic.

  4. Create another Amazon SQS queue named MyDeadLetterQueue, to be used as the dead-letter queue for the Amazon SNS subscription.

  5. To give Amazon SNS principal access to the Amazon SQS API action, set the following queue policy for MyDeadLetterQueue.

    { "Statement": [{ "Effect": "Allow", "Principal": { "Service": "sns.amazonaws.com" }, "Action": "SQS:SendMessage", "Resource": "arn:aws-cn:sqs:us-east-2:123456789012:MyDeadLetterQueue", "Condition": { "ArnEquals": { "aws:SourceArn": "arn:aws-cn:sns:us-east-2:123456789012:MyTopic" } } }] }

To configure a dead-letter queue for an Amazon SNS subscription using the Amazon Web Services Management Console

Before your begin this tutorial, make sure you complete the prerequisites.

  1. Sign in to the Amazon SQS console.

  2. Create an Amazon SQS queue or use an existing queue and note the ARN of the queue on the Details tab of the queue, for example:

    arn:aws-cn:sqs:us-east-2:123456789012:MyDeadLetterQueue
  3. Sign in to the Amazon SNS console.

  4. On the navigation panel, choose Subscriptions.

  5. On the Subscriptions page, select an existing subscription and then choose Edit.

  6. On the Edit 1234a567-bc89-012d-3e45-6fg7h890123i page, expand the Redrive policy (dead-letter queue) section, and then do the following:

    1. Choose Enabled.

    2. Specify the ARN of an Amazon SQS queue.

  7. Choose Save changes.

    Your subscription is configured to use a dead-letter queue.

To configure a dead-letter queue for an Amazon SNS subscription using an Amazon SDK

Before you run this example, make sure that you complete the prerequisites.

To use an Amazon SDK, you must configure it with your credentials. For more information, see The shared config and credentials files in the Amazon SDKs and Tools Reference Guide.

The following code example shows how to use SetSubscriptionAttributesRedrivePolicy.

Java
SDK for Java 1.x
Note

There's more on GitHub. Find the complete example and learn how to set up and run in the Amazon Code Examples Repository.

// Specify the ARN of the Amazon SNS subscription. String subscriptionArn = "arn:aws:sns:us-east-2:123456789012:MyEndpoint:1234a567-bc89-012d-3e45-6fg7h890123i"; // Specify the ARN of the Amazon SQS queue to use as a dead-letter queue. String redrivePolicy = "{\"deadLetterTargetArn\":\"arn:aws:sqs:us-east-2:123456789012:MyDeadLetterQueue\"}"; // Set the specified Amazon SQS queue as a dead-letter queue // of the specified Amazon SNS subscription by setting the RedrivePolicy attribute. SetSubscriptionAttributesRequest request = new SetSubscriptionAttributesRequest() .withSubscriptionArn(subscriptionArn) .withAttributeName("RedrivePolicy") .withAttributeValue(redrivePolicy); sns.setSubscriptionAttributes(request);

To configure a dead-letter queue for an Amazon SNS subscription using the Amazon CLI

Before your begin this tutorial, make sure you complete the prerequisites.

  1. Install and configure the Amazon CLI. For more information, see the Amazon Command Line Interface User Guide.

  2. Use the following command.

    aws sns set-subscription-attributes \ --subscription-arn arn:aws-cn:sns:us-east-2:123456789012:MyEndpoint:1234a567-bc89-012d-3e45-6fg7h890123i --attribute-name RedrivePolicy --attribute-value "{\"deadLetterTargetArn\": \"arn:aws-cn:sqs:us-east-2:123456789012:MyDeadLetterQueue\"}"

To configure a dead-letter queue for an Amazon SNS subscription using Amazon CloudFormation

Before your begin this tutorial, make sure you complete the prerequisites.

  1. Copy the following JSON code to a file named MyDeadLetterQueue.json.

    { "Resources": { "mySubscription": { "Type" : "AWS::SNS::Subscription", "Properties" : { "Protocol": "sqs", "Endpoint": "arn:aws-cn:sqs:us-east-2:123456789012:MyEndpoint", "TopicArn": "arn:aws-cn:sns:us-east-2:123456789012:MyTopic", "RedrivePolicy": { "deadLetterTargetArn": "arn:aws-cn:sqs:us-east-2:123456789012:MyDeadLetterQueue" } } } } }
  2. Sign in to the Amazon CloudFormation console.

  3. On the Select Template page, choose Upload a template to Amazon S3, choose your MyDeadLetterQueue.json file, and then choose Next.

  4. On the Specify Details page, enter MyDeadLetterQueue for Stack Name, and then choose Next.

  5. On the Options page, choose Next.

  6. On the Review page, choose Create.

    Amazon CloudFormation begins to create the MyDeadLetterQueue stack and displays the CREATE_IN_PROGRESS status. When the process is complete, Amazon CloudFormation displays the CREATE_COMPLETE status.