View source: R/sqs_operations.R
sqs_create_queue | R Documentation |
Creates a new standard or FIFO queue. You can pass one or more attributes in the request. Keep the following in mind:
See https://www.paws-r-sdk.com/docs/sqs_create_queue/ for full documentation.
sqs_create_queue(QueueName, Attributes = NULL, tags = NULL)
QueueName |
[required] The name of the new queue. The following limits apply to this name:
Queue URLs and names are case-sensitive. |
Attributes |
A map of attributes with their corresponding values. 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 attributes apply 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. |
tags |
Add cost allocation tags to the specified Amazon SQS queue. For an overview, see Tagging Your Amazon SQS Queues in the Amazon SQS Developer Guide. When you use queue tags, keep the following guidelines in mind:
For a full list of tag restrictions, see Quotas related to queues in the Amazon SQS Developer Guide. To be able to tag a queue on creation, you must have the
Cross-account permissions don't apply to this action. For more information, see Grant cross-account permissions to a role and a username in the Amazon SQS Developer Guide. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.