View source: R/sqs_operations.R
sqs_set_queue_attributes | R Documentation |
Sets the value of one or more queue attributes, like a policy. When you change a queue's attributes, the change can take up to 60 seconds for most of the attributes to propagate throughout the Amazon SQS system. Changes made to the MessageRetentionPeriod
attribute can take up to 15 minutes and will impact existing messages in the queue potentially causing them to be expired and deleted if the MessageRetentionPeriod
is reduced below the age of existing messages.
See https://www.paws-r-sdk.com/docs/sqs_set_queue_attributes/ for full documentation.
sqs_set_queue_attributes(QueueUrl, Attributes)
QueueUrl |
[required] The URL of the Amazon SQS queue whose attributes are set. Queue URLs and names are case-sensitive. |
Attributes |
[required] A map of attributes to set. The following lists the names, descriptions, and values of the special
request parameters that the
The following attributes apply only to dead-letter queues:
The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a standard queue must also be a standard queue. The following attributes apply only to server-side-encryption:
The following attribute applies only to FIFO (first-in-first-out) queues:
The following attributes apply only to high throughput for FIFO queues:
To enable high throughput for FIFO queues, do the following:
If you set these attributes to anything other than the values shown for enabling high throughput, normal throughput is in effect and deduplication occurs as specified. For information on throughput quotas, see Quotas related to messages in the Amazon SQS Developer Guide. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.