Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.
|
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||
|
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
|
||
|
|
|
||
|
|
// snippet-start:[sns.java.redrive_policy]
|
||
|
|
// 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);
|
||
|
|
// snippet-end:[sns.java.redrive_policy]
|