{ "metadata":{ "apiVersion":"2012-11-05", "endpointPrefix":"sqs", "serviceAbbreviation":"Amazon SQS", "serviceFullName":"Amazon Simple Queue Service", "signatureVersion":"v4", "xmlNamespace":"http://queue.amazonaws.com/doc/2012-11-05/", "protocol":"query" }, "documentation":"

Welcome to the Amazon Simple Queue Service API Reference. This section describes who should read this guide, how the guide is organized, and other resources related to the Amazon Simple Queue Service (Amazon SQS).

Amazon SQS offers reliable and scalable hosted queues for storing messages as they travel between computers. By using Amazon SQS, you can move data between distributed components of your applications that perform different tasks without losing messages or requiring each component to be always available.

Helpful Links:

We also provide SDKs that enable you to access Amazon SQS from your preferred programming language. The SDKs contain functionality that automatically takes care of tasks such as:

For a list of available SDKs, go to Tools for Amazon Web Services.

", "operations":{ "AddPermission":{ "name":"AddPermission", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"AddPermissionRequest"}, "errors":[ { "shape":"OverLimit", "error":{ "code":"OverLimit", "httpStatusCode":403, "senderFault":true }, "exception":true, "documentation":"

The action that you requested would violate a limit. For example, ReceiveMessage returns this error if the maximum number of messages inflight has already been reached. AddPermission returns this error if the maximum number of permissions for the queue has already been reached.

" } ], "documentation":"

Adds a permission to a queue for a specific principal. This allows for sharing access to the queue.

When you create a queue, you have full control access rights for the queue. Only you (as owner of the queue) can grant or deny permissions to the queue. For more information about these permissions, see Shared Queues in the Amazon SQS Developer Guide.

AddPermission writes an Amazon SQS-generated policy. If you want to write your own policy, use SetQueueAttributes to upload your policy. For more information about writing your own policy, see Using The Access Policy Language in the Amazon SQS Developer Guide.

Some API actions take lists of parameters. These lists are specified using the param.n notation. Values of n are integers starting from 1. For example, a parameter list with two elements looks like this:

&Attribute.1=this

&Attribute.2=that

" }, "ChangeMessageVisibility":{ "name":"ChangeMessageVisibility", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"ChangeMessageVisibilityRequest"}, "errors":[ { "shape":"MessageNotInflight", "error":{ "code":"AWS.SimpleQueueService.MessageNotInflight", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

The message referred to is not in flight.

" }, { "shape":"ReceiptHandleIsInvalid", "exception":true, "documentation":"

The receipt handle provided is not valid.

" } ], "documentation":"

Changes the visibility timeout of a specified message in a queue to a new value. The maximum allowed timeout value you can set the value to is 12 hours. This means you can't extend the timeout of a message in an existing queue to more than a total visibility timeout of 12 hours. (For more information visibility timeout, see Visibility Timeout in the Amazon SQS Developer Guide.)

For example, let's say you have a message and its default message visibility timeout is 30 minutes. You could call ChangeMessageVisiblity with a value of two hours and the effective timeout would be two hours and 30 minutes. When that time comes near you could again extend the time out by calling ChangeMessageVisiblity, but this time the maximum allowed timeout would be 9 hours and 30 minutes.

There is a 120,000 limit for the number of inflight messages per queue. Messages are inflight after they have been received from the queue by a consuming component, but have not yet been deleted from the queue. If you reach the 120,000 limit, you will receive an OverLimit error message from Amazon SQS. To help avoid reaching the limit, you should delete the messages from the queue after they have been processed. You can also increase the number of queues you use to process the messages.

If you attempt to set the VisibilityTimeout to an amount more than the maximum time left, Amazon SQS returns an error. It will not automatically recalculate and increase the timeout to the maximum time remaining. Unlike with a queue, when you change the visibility timeout for a specific message, that timeout value is applied immediately but is not saved in memory for that message. If you don't delete a message after it is received, the visibility timeout for the message the next time it is received reverts to the original timeout value, not the value you set with the ChangeMessageVisibility action." }, "ChangeMessageVisibilityBatch":{ "name":"ChangeMessageVisibilityBatch", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"ChangeMessageVisibilityBatchRequest"}, "output":{ "shape":"ChangeMessageVisibilityBatchResult", "documentation":"

For each message in the batch, the response contains a ChangeMessageVisibilityBatchResultEntry tag if the message succeeds or a BatchResultErrorEntry tag if the message fails.

", "resultWrapper":"ChangeMessageVisibilityBatchResult" }, "errors":[ { "shape":"TooManyEntriesInBatchRequest", "error":{ "code":"AWS.SimpleQueueService.TooManyEntriesInBatchRequest", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Batch request contains more number of entries than permissible.

" }, { "shape":"EmptyBatchRequest", "error":{ "code":"AWS.SimpleQueueService.EmptyBatchRequest", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Batch request does not contain an entry.

" }, { "shape":"BatchEntryIdsNotDistinct", "error":{ "code":"AWS.SimpleQueueService.BatchEntryIdsNotDistinct", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Two or more batch entries have the same Id in the request.

" }, { "shape":"InvalidBatchEntryId", "error":{ "code":"AWS.SimpleQueueService.InvalidBatchEntryId", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

The Id of a batch entry in a batch request does not abide by the specification.

" } ], "documentation":"

Changes the visibility timeout of multiple messages. This is a batch version of ChangeMessageVisibility. The result of the action on each message is reported individually in the response. You can send up to 10 ChangeMessageVisibility requests with each ChangeMessageVisibilityBatch action.

Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200. Some API actions take lists of parameters. These lists are specified using the param.n notation. Values of n are integers starting from 1. For example, a parameter list with two elements looks like this:

&Attribute.1=this

&Attribute.2=that

" }, "CreateQueue":{ "name":"CreateQueue", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"CreateQueueRequest"}, "output":{ "shape":"CreateQueueResult", "documentation":"

Returns the QueueUrl element of the created queue.

", "resultWrapper":"CreateQueueResult" }, "errors":[ { "shape":"QueueDeletedRecently", "error":{ "code":"AWS.SimpleQueueService.QueueDeletedRecently", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

You must wait 60 seconds after deleting a queue before you can create another with the same name.

" }, { "shape":"QueueNameExists", "error":{ "code":"QueueAlreadyExists", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

A queue already exists with this name. Amazon SQS returns this error only if the request includes attributes whose values differ from those of the existing queue.

" } ], "documentation":"

Creates a new queue, or returns the URL of an existing one. When you request CreateQueue, you provide a name for the queue. To successfully create a new queue, you must provide a name that is unique within the scope of your own queues.

If you delete a queue, you must wait at least 60 seconds before creating a queue with the same name.

You may pass one or more attributes in the request. If you do not provide a value for any attribute, the queue will have the default value for that attribute. Permitted attributes are the same that can be set using SetQueueAttributes.

Use GetQueueUrl to get a queue's URL. GetQueueUrl requires only the QueueName parameter.

If you provide the name of an existing queue, along with the exact names and values of all the queue's attributes, CreateQueue returns the queue URL for the existing queue. If the queue name, attribute names, or attribute values do not match an existing queue, CreateQueue returns an error.

Some API actions take lists of parameters. These lists are specified using the param.n notation. Values of n are integers starting from 1. For example, a parameter list with two elements looks like this:

&Attribute.1=this

&Attribute.2=that

" }, "DeleteMessage":{ "name":"DeleteMessage", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DeleteMessageRequest"}, "errors":[ { "shape":"InvalidIdFormat", "exception":true, "documentation":"

The receipt handle is not valid for the current version.

" }, { "shape":"ReceiptHandleIsInvalid", "exception":true, "documentation":"

The receipt handle provided is not valid.

" } ], "documentation":"

Deletes the specified message from the specified queue. You specify the message by using the message's receipt handle and not the message ID you received when you sent the message. Even if the message is locked by another reader due to the visibility timeout setting, it is still deleted from the queue. If you leave a message in the queue for longer than the queue's configured retention period, Amazon SQS automatically deletes it.

The receipt handle is associated with a specific instance of receiving the message. If you receive a message more than once, the receipt handle you get each time you receive the message is different. When you request DeleteMessage, if you don't provide the most recently received receipt handle for the message, the request will still succeed, but the message might not be deleted.

It is possible you will receive a message even after you have deleted it. This might happen on rare occasions if one of the servers storing a copy of the message is unavailable when you request to delete the message. The copy remains on the server and might be returned to you again on a subsequent receive request. You should create your system to be idempotent so that receiving a particular message more than once is not a problem.

" }, "DeleteMessageBatch":{ "name":"DeleteMessageBatch", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DeleteMessageBatchRequest"}, "output":{ "shape":"DeleteMessageBatchResult", "documentation":"

For each message in the batch, the response contains a DeleteMessageBatchResultEntry tag if the message is deleted or a BatchResultErrorEntry tag if the message cannot be deleted.

", "resultWrapper":"DeleteMessageBatchResult" }, "errors":[ { "shape":"TooManyEntriesInBatchRequest", "error":{ "code":"AWS.SimpleQueueService.TooManyEntriesInBatchRequest", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Batch request contains more number of entries than permissible.

" }, { "shape":"EmptyBatchRequest", "error":{ "code":"AWS.SimpleQueueService.EmptyBatchRequest", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Batch request does not contain an entry.

" }, { "shape":"BatchEntryIdsNotDistinct", "error":{ "code":"AWS.SimpleQueueService.BatchEntryIdsNotDistinct", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Two or more batch entries have the same Id in the request.

" }, { "shape":"InvalidBatchEntryId", "error":{ "code":"AWS.SimpleQueueService.InvalidBatchEntryId", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

The Id of a batch entry in a batch request does not abide by the specification.

" } ], "documentation":"

Deletes up to ten messages from the specified queue. This is a batch version of DeleteMessage. The result of the delete action on each message is reported individually in the response.

Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200.

Some API actions take lists of parameters. These lists are specified using the param.n notation. Values of n are integers starting from 1. For example, a parameter list with two elements looks like this:

&Attribute.1=this

&Attribute.2=that

" }, "DeleteQueue":{ "name":"DeleteQueue", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DeleteQueueRequest"}, "documentation":"

Deletes the queue specified by the queue URL, regardless of whether the queue is empty. If the specified queue does not exist, Amazon SQS returns a successful response.

Use DeleteQueue with care; once you delete your queue, any messages in the queue are no longer available.

When you delete a queue, the deletion process takes up to 60 seconds. Requests you send involving that queue during the 60 seconds might succeed. For example, a SendMessage request might succeed, but after the 60 seconds, the queue and that message you sent no longer exist. Also, when you delete a queue, you must wait at least 60 seconds before creating a queue with the same name.

We reserve the right to delete queues that have had no activity for more than 30 days. For more information, see How Amazon SQS Queues Work in the Amazon SQS Developer Guide.

" }, "GetQueueAttributes":{ "name":"GetQueueAttributes", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"GetQueueAttributesRequest"}, "output":{ "shape":"GetQueueAttributesResult", "documentation":"A list of returned queue attributes.", "resultWrapper":"GetQueueAttributesResult" }, "errors":[ { "shape":"InvalidAttributeName", "exception":true, "documentation":"

The attribute referred to does not exist.

" } ], "documentation":"

Gets attributes for the specified queue. The following attributes are supported:

Going forward, new attributes might be added. If you are writing code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully. Some API actions take lists of parameters. These lists are specified using the param.n notation. Values of n are integers starting from 1. For example, a parameter list with two elements looks like this:

&Attribute.1=this

&Attribute.2=that

" }, "GetQueueUrl":{ "name":"GetQueueUrl", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"GetQueueUrlRequest"}, "output":{ "shape":"GetQueueUrlResult", "documentation":"

For more information, see Responses in the Amazon SQS Developer Guide.

", "resultWrapper":"GetQueueUrlResult" }, "errors":[ { "shape":"QueueDoesNotExist", "error":{ "code":"AWS.SimpleQueueService.NonExistentQueue", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

The queue referred to does not exist.

" } ], "documentation":"

Returns the URL of an existing queue. This action provides a simple way to retrieve the URL of an Amazon SQS queue.

To access a queue that belongs to another AWS account, use the QueueOwnerAWSAccountId parameter to specify the account ID of the queue's owner. The queue's owner must grant you permission to access the queue. For more information about shared queue access, see AddPermission or go to Shared Queues in the Amazon SQS Developer Guide.

" }, "ListDeadLetterSourceQueues":{ "name":"ListDeadLetterSourceQueues", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"ListDeadLetterSourceQueuesRequest"}, "output":{ "shape":"ListDeadLetterSourceQueuesResult", "documentation":"A list of your dead letter source queues.", "resultWrapper":"ListDeadLetterSourceQueuesResult" }, "errors":[ { "shape":"QueueDoesNotExist", "error":{ "code":"AWS.SimpleQueueService.NonExistentQueue", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

The queue referred to does not exist.

" } ], "documentation":"

Returns a list of your queues that have the RedrivePolicy queue attribute configured with a dead letter queue.

For more information about using dead letter queues, see Using Amazon SQS Dead Letter Queues.

" }, "ListQueues":{ "name":"ListQueues", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"ListQueuesRequest"}, "output":{ "shape":"ListQueuesResult", "documentation":"A list of your queues.", "resultWrapper":"ListQueuesResult" }, "documentation":"

Returns a list of your queues. The maximum number of queues that can be returned is 1000. If you specify a value for the optional QueueNamePrefix parameter, only queues with a name beginning with the specified value are returned.

" }, "PurgeQueue":{ "name":"PurgeQueue", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"PurgeQueueRequest"}, "errors":[ { "shape":"QueueDoesNotExist", "error":{ "code":"AWS.SimpleQueueService.NonExistentQueue", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

The queue referred to does not exist.

" }, { "shape":"PurgeQueueInProgress", "error":{ "code":"AWS.SimpleQueueService.PurgeQueueInProgress", "httpStatusCode":403, "senderFault":true }, "exception":true, "documentation":"

Indicates that the specified queue previously received a PurgeQueue request within the last 60 seconds, the time it can take to delete the messages in the queue.

" } ], "documentation":"

Deletes the messages in a queue specified by the queue URL.

When you use the PurgeQueue API, the deleted messages in the queue cannot be retrieved.

When you purge a queue, the message deletion process takes up to 60 seconds. All messages sent to the queue before calling PurgeQueue will be deleted; messages sent to the queue while it is being purged may be deleted. While the queue is being purged, messages sent to the queue before PurgeQueue was called may be received, but will be deleted within the next minute.

" }, "ReceiveMessage":{ "name":"ReceiveMessage", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"ReceiveMessageRequest"}, "output":{ "shape":"ReceiveMessageResult", "documentation":"A list of received messages.", "resultWrapper":"ReceiveMessageResult" }, "errors":[ { "shape":"OverLimit", "error":{ "code":"OverLimit", "httpStatusCode":403, "senderFault":true }, "exception":true, "documentation":"

The action that you requested would violate a limit. For example, ReceiveMessage returns this error if the maximum number of messages inflight has already been reached. AddPermission returns this error if the maximum number of permissions for the queue has already been reached.

" } ], "documentation":"

Retrieves one or more messages, with a maximum limit of 10 messages, from the specified queue. Long poll support is enabled by using the WaitTimeSeconds parameter. For more information, see Amazon SQS Long Poll in the Amazon SQS Developer Guide.

Short poll is the default behavior where a weighted random set of machines is sampled on a ReceiveMessage call. This means only the messages on the sampled machines are returned. If the number of messages in the queue is small (less than 1000), it is likely you will get fewer messages than you requested per ReceiveMessage call. If the number of messages in the queue is extremely small, you might not receive any messages in a particular ReceiveMessage response; in which case you should repeat the request.

For each message returned, the response includes the following:

The receipt handle is the identifier you must provide when deleting the message. For more information, see Queue and Message Identifiers in the Amazon SQS Developer Guide.

You can provide the VisibilityTimeout parameter in your request, which will be applied to the messages that Amazon SQS returns in the response. If you do not include the parameter, the overall visibility timeout for the queue is used for the returned messages. For more information, see Visibility Timeout in the Amazon SQS Developer Guide.

Going forward, new attributes might be added. If you are writing code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully.

" }, "RemovePermission":{ "name":"RemovePermission", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"RemovePermissionRequest"}, "documentation":"

Revokes any permissions in the queue policy that matches the specified Label parameter. Only the owner of the queue can remove permissions.

" }, "SendMessage":{ "name":"SendMessage", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"SendMessageRequest"}, "output":{ "shape":"SendMessageResult", "documentation":"

The MD5OfMessageBody and MessageId elements.

", "resultWrapper":"SendMessageResult" }, "errors":[ { "shape":"InvalidMessageContents", "exception":true, "documentation":"

The message contains characters outside the allowed set.

" }, { "shape":"UnsupportedOperation", "error":{ "code":"AWS.SimpleQueueService.UnsupportedOperation", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Error code 400. Unsupported operation.

" } ], "documentation":"

Delivers a message to the specified queue. With Amazon SQS, you now have the ability to send large payload messages that are up to 256KB (262,144 bytes) in size. To send large payloads, you must use an AWS SDK that supports SigV4 signing. To verify whether SigV4 is supported for an AWS SDK, check the SDK release notes.

The following list shows the characters (in Unicode) allowed in your message, according to the W3C XML specification. For more information, go to http://www.w3.org/TR/REC-xml/#charsets If you send any characters not included in the list, your request will be rejected.

#x9 | #xA | #xD | [#x20 to #xD7FF] | [#xE000 to #xFFFD] | [#x10000 to #x10FFFF]

" }, "SendMessageBatch":{ "name":"SendMessageBatch", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"SendMessageBatchRequest"}, "output":{ "shape":"SendMessageBatchResult", "documentation":"

For each message in the batch, the response contains a SendMessageBatchResultEntry tag if the message succeeds or a BatchResultErrorEntry tag if the message fails.

", "resultWrapper":"SendMessageBatchResult" }, "errors":[ { "shape":"TooManyEntriesInBatchRequest", "error":{ "code":"AWS.SimpleQueueService.TooManyEntriesInBatchRequest", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Batch request contains more number of entries than permissible.

" }, { "shape":"EmptyBatchRequest", "error":{ "code":"AWS.SimpleQueueService.EmptyBatchRequest", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Batch request does not contain an entry.

" }, { "shape":"BatchEntryIdsNotDistinct", "error":{ "code":"AWS.SimpleQueueService.BatchEntryIdsNotDistinct", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Two or more batch entries have the same Id in the request.

" }, { "shape":"BatchRequestTooLong", "error":{ "code":"AWS.SimpleQueueService.BatchRequestTooLong", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

The length of all the messages put together is more than the limit.

" }, { "shape":"InvalidBatchEntryId", "error":{ "code":"AWS.SimpleQueueService.InvalidBatchEntryId", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

The Id of a batch entry in a batch request does not abide by the specification.

" }, { "shape":"UnsupportedOperation", "error":{ "code":"AWS.SimpleQueueService.UnsupportedOperation", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Error code 400. Unsupported operation.

" } ], "documentation":"

Delivers up to ten messages to the specified queue. This is a batch version of SendMessage. The result of the send action on each message is reported individually in the response. The maximum allowed individual message size is 256 KB (262,144 bytes).

The maximum total payload size (i.e., the sum of all a batch's individual message lengths) is also 256 KB (262,144 bytes).

If the DelaySeconds parameter is not specified for an entry, the default for the queue is used.

The following list shows the characters (in Unicode) that are allowed in your message, according to the W3C XML specification. For more information, go to http://www.faqs.org/rfcs/rfc1321.html. If you send any characters that are not included in the list, your request will be rejected.

#x9 | #xA | #xD | [#x20 to #xD7FF] | [#xE000 to #xFFFD] | [#x10000 to #x10FFFF]

Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200. Some API actions take lists of parameters. These lists are specified using the param.n notation. Values of n are integers starting from 1. For example, a parameter list with two elements looks like this:

&Attribute.1=this

&Attribute.2=that

" }, "SetQueueAttributes":{ "name":"SetQueueAttributes", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"SetQueueAttributesRequest"}, "errors":[ { "shape":"InvalidAttributeName", "exception":true, "documentation":"

The attribute referred to does not exist.

" } ], "documentation":"

Sets the value of one or more queue attributes. When you change a queue's attributes, the change can take up to 60 seconds for most of the attributes to propagate throughout the SQS system. Changes made to the MessageRetentionPeriod attribute can take up to 15 minutes.

Going forward, new attributes might be added. If you are writing code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully." } }, "shapes":{ "AWSAccountIdList":{ "type":"list", "member":{ "shape":"String", "locationName":"AWSAccountId" }, "flattened":true }, "ActionNameList":{ "type":"list", "member":{ "shape":"String", "locationName":"ActionName" }, "flattened":true }, "AddPermissionRequest":{ "type":"structure", "required":[ "QueueUrl", "Label", "AWSAccountIds", "Actions" ], "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL of the Amazon SQS queue to take action on.

" }, "Label":{ "shape":"String", "documentation":"

The unique identification of the permission you're setting (e.g., AliceSendMessage). Constraints: Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.

" }, "AWSAccountIds":{ "shape":"AWSAccountIdList", "documentation":"

The AWS account number of the principal who will be given permission. The principal must have an AWS account, but does not need to be signed up for Amazon SQS. For information about locating the AWS account identification, see Your AWS Identifiers in the Amazon SQS Developer Guide.

" }, "Actions":{ "shape":"ActionNameList", "documentation":"

The action the client wants to allow for the specified principal. The following are valid values: * | SendMessage | ReceiveMessage | DeleteMessage | ChangeMessageVisibility | GetQueueAttributes | GetQueueUrl. For more information about these actions, see Understanding Permissions in the Amazon SQS Developer Guide.

Specifying SendMessage, DeleteMessage, or ChangeMessageVisibility for the ActionName.n also grants permissions for the corresponding batch versions of those actions: SendMessageBatch, DeleteMessageBatch, and ChangeMessageVisibilityBatch.

" } } }, "AttributeMap":{ "type":"map", "key":{ "shape":"QueueAttributeName", "documentation":"

The name of a queue attribute.

", "locationName":"Name" }, "value":{ "shape":"String", "documentation":"

The value of a queue attribute.

", "locationName":"Value" }, "flattened":true, "locationName":"Attribute" }, "AttributeNameList":{ "type":"list", "member":{ "shape":"QueueAttributeName", "locationName":"AttributeName" }, "flattened":true }, "BatchEntryIdsNotDistinct":{ "type":"structure", "members":{ }, "error":{ "code":"AWS.SimpleQueueService.BatchEntryIdsNotDistinct", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Two or more batch entries have the same Id in the request.

" }, "BatchRequestTooLong":{ "type":"structure", "members":{ }, "error":{ "code":"AWS.SimpleQueueService.BatchRequestTooLong", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

The length of all the messages put together is more than the limit.

" }, "BatchResultErrorEntry":{ "type":"structure", "required":[ "Id", "SenderFault", "Code" ], "members":{ "Id":{ "shape":"String", "documentation":"

The id of an entry in a batch request.

" }, "SenderFault":{ "shape":"Boolean", "documentation":"

Whether the error happened due to the sender's fault.

" }, "Code":{ "shape":"String", "documentation":"

An error code representing why the action failed on this entry.

" }, "Message":{ "shape":"String", "documentation":"

A message explaining why the action failed on this entry.

" } }, "documentation":"

This is used in the responses of batch API to give a detailed description of the result of an action on each entry in the request.

" }, "BatchResultErrorEntryList":{ "type":"list", "member":{ "shape":"BatchResultErrorEntry", "locationName":"BatchResultErrorEntry" }, "flattened":true }, "Binary":{"type":"blob"}, "BinaryList":{ "type":"list", "member":{ "shape":"Binary", "locationName":"BinaryListValue" } }, "Boolean":{"type":"boolean"}, "ChangeMessageVisibilityBatchRequest":{ "type":"structure", "required":[ "QueueUrl", "Entries" ], "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL of the Amazon SQS queue to take action on.

" }, "Entries":{ "shape":"ChangeMessageVisibilityBatchRequestEntryList", "documentation":"

A list of receipt handles of the messages for which the visibility timeout must be changed.

" } } }, "ChangeMessageVisibilityBatchRequestEntry":{ "type":"structure", "required":[ "Id", "ReceiptHandle" ], "members":{ "Id":{ "shape":"String", "documentation":"

An identifier for this particular receipt handle. This is used to communicate the result. Note that the Ids of a batch request need to be unique within the request.

" }, "ReceiptHandle":{ "shape":"String", "documentation":"

A receipt handle.

" }, "VisibilityTimeout":{ "shape":"Integer", "documentation":"

The new value (in seconds) for the message's visibility timeout.

" } }, "documentation":"

Encloses a receipt handle and an entry id for each message in ChangeMessageVisibilityBatch.

All of the following parameters are list parameters that must be prefixed with ChangeMessageVisibilityBatchRequestEntry.n, where n is an integer value starting with 1. For example, a parameter list for this action might look like this:

&ChangeMessageVisibilityBatchRequestEntry.1.Id=change_visibility_msg_2

&ChangeMessageVisibilityBatchRequestEntry.1.ReceiptHandle=Your_Receipt_Handle

&ChangeMessageVisibilityBatchRequestEntry.1.VisibilityTimeout=45

" }, "ChangeMessageVisibilityBatchRequestEntryList":{ "type":"list", "member":{ "shape":"ChangeMessageVisibilityBatchRequestEntry", "locationName":"ChangeMessageVisibilityBatchRequestEntry" }, "flattened":true }, "ChangeMessageVisibilityBatchResult":{ "type":"structure", "required":[ "Successful", "Failed" ], "members":{ "Successful":{ "shape":"ChangeMessageVisibilityBatchResultEntryList", "documentation":"

A list of ChangeMessageVisibilityBatchResultEntry items.

" }, "Failed":{ "shape":"BatchResultErrorEntryList", "documentation":"

A list of BatchResultErrorEntry items.

" } }, "documentation":"

For each message in the batch, the response contains a ChangeMessageVisibilityBatchResultEntry tag if the message succeeds or a BatchResultErrorEntry tag if the message fails.

" }, "ChangeMessageVisibilityBatchResultEntry":{ "type":"structure", "required":["Id"], "members":{ "Id":{ "shape":"String", "documentation":"

Represents a message whose visibility timeout has been changed successfully.

" } }, "documentation":"

Encloses the id of an entry in ChangeMessageVisibilityBatch.

" }, "ChangeMessageVisibilityBatchResultEntryList":{ "type":"list", "member":{ "shape":"ChangeMessageVisibilityBatchResultEntry", "locationName":"ChangeMessageVisibilityBatchResultEntry" }, "flattened":true }, "ChangeMessageVisibilityRequest":{ "type":"structure", "required":[ "QueueUrl", "ReceiptHandle", "VisibilityTimeout" ], "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL of the Amazon SQS queue to take action on.

" }, "ReceiptHandle":{ "shape":"String", "documentation":"

The receipt handle associated with the message whose visibility timeout should be changed. This parameter is returned by the ReceiveMessage action.

" }, "VisibilityTimeout":{ "shape":"Integer", "documentation":"

The new value (in seconds - from 0 to 43200 - maximum 12 hours) for the message's visibility timeout.

" } } }, "CreateQueueRequest":{ "type":"structure", "required":["QueueName"], "members":{ "QueueName":{ "shape":"String", "documentation":"

The name for the queue to be created.

" }, "Attributes":{ "shape":"AttributeMap", "documentation":"

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters the CreateQueue action uses:

", "locationName":"Attribute" } } }, "CreateQueueResult":{ "type":"structure", "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL for the created Amazon SQS queue.

" } }, "documentation":"

Returns the QueueUrl element of the created queue.

" }, "DeleteMessageBatchRequest":{ "type":"structure", "required":[ "QueueUrl", "Entries" ], "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL of the Amazon SQS queue to take action on.

" }, "Entries":{ "shape":"DeleteMessageBatchRequestEntryList", "documentation":"

A list of receipt handles for the messages to be deleted.

" } } }, "DeleteMessageBatchRequestEntry":{ "type":"structure", "required":[ "Id", "ReceiptHandle" ], "members":{ "Id":{ "shape":"String", "documentation":"

An identifier for this particular receipt handle. This is used to communicate the result. Note that the Ids of a batch request need to be unique within the request.

" }, "ReceiptHandle":{ "shape":"String", "documentation":"

A receipt handle.

" } }, "documentation":"

Encloses a receipt handle and an identifier for it.

" }, "DeleteMessageBatchRequestEntryList":{ "type":"list", "member":{ "shape":"DeleteMessageBatchRequestEntry", "locationName":"DeleteMessageBatchRequestEntry" }, "flattened":true }, "DeleteMessageBatchResult":{ "type":"structure", "required":[ "Successful", "Failed" ], "members":{ "Successful":{ "shape":"DeleteMessageBatchResultEntryList", "documentation":"

A list of DeleteMessageBatchResultEntry items.

" }, "Failed":{ "shape":"BatchResultErrorEntryList", "documentation":"

A list of BatchResultErrorEntry items.

" } }, "documentation":"

For each message in the batch, the response contains a DeleteMessageBatchResultEntry tag if the message is deleted or a BatchResultErrorEntry tag if the message cannot be deleted.

" }, "DeleteMessageBatchResultEntry":{ "type":"structure", "required":["Id"], "members":{ "Id":{ "shape":"String", "documentation":"

Represents a successfully deleted message.

" } }, "documentation":"

Encloses the id an entry in DeleteMessageBatch.

" }, "DeleteMessageBatchResultEntryList":{ "type":"list", "member":{ "shape":"DeleteMessageBatchResultEntry", "locationName":"DeleteMessageBatchResultEntry" }, "flattened":true }, "DeleteMessageRequest":{ "type":"structure", "required":[ "QueueUrl", "ReceiptHandle" ], "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL of the Amazon SQS queue to take action on.

" }, "ReceiptHandle":{ "shape":"String", "documentation":"

The receipt handle associated with the message to delete.

" } } }, "DeleteQueueRequest":{ "type":"structure", "required":["QueueUrl"], "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL of the Amazon SQS queue to take action on.

" } } }, "EmptyBatchRequest":{ "type":"structure", "members":{ }, "error":{ "code":"AWS.SimpleQueueService.EmptyBatchRequest", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Batch request does not contain an entry.

" }, "GetQueueAttributesRequest":{ "type":"structure", "required":["QueueUrl"], "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL of the Amazon SQS queue to take action on.

" }, "AttributeNames":{ "shape":"AttributeNameList", "documentation":"

A list of attributes to retrieve information for.

" } } }, "GetQueueAttributesResult":{ "type":"structure", "members":{ "Attributes":{ "shape":"AttributeMap", "documentation":"

A map of attributes to the respective values.

", "locationName":"Attribute" } }, "documentation":"A list of returned queue attributes." }, "GetQueueUrlRequest":{ "type":"structure", "required":["QueueName"], "members":{ "QueueName":{ "shape":"String", "documentation":"

The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.

" }, "QueueOwnerAWSAccountId":{ "shape":"String", "documentation":"

The AWS account ID of the account that created the queue.

" } } }, "GetQueueUrlResult":{ "type":"structure", "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL for the queue.

" } }, "documentation":"

For more information, see Responses in the Amazon SQS Developer Guide.

" }, "Integer":{"type":"integer"}, "InvalidAttributeName":{ "type":"structure", "members":{ }, "exception":true, "documentation":"

The attribute referred to does not exist.

" }, "InvalidBatchEntryId":{ "type":"structure", "members":{ }, "error":{ "code":"AWS.SimpleQueueService.InvalidBatchEntryId", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

The Id of a batch entry in a batch request does not abide by the specification.

" }, "InvalidIdFormat":{ "type":"structure", "members":{ }, "exception":true, "documentation":"

The receipt handle is not valid for the current version.

" }, "InvalidMessageContents":{ "type":"structure", "members":{ }, "exception":true, "documentation":"

The message contains characters outside the allowed set.

" }, "ListDeadLetterSourceQueuesRequest":{ "type":"structure", "required":["QueueUrl"], "members":{ "QueueUrl":{ "shape":"String", "documentation":"The queue URL of a dead letter queue." } } }, "ListDeadLetterSourceQueuesResult":{ "type":"structure", "required":["queueUrls"], "members":{ "queueUrls":{ "shape":"QueueUrlList", "documentation":"A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue." } }, "documentation":"A list of your dead letter source queues." }, "ListQueuesRequest":{ "type":"structure", "members":{ "QueueNamePrefix":{ "shape":"String", "documentation":"

A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned.

" } } }, "ListQueuesResult":{ "type":"structure", "members":{ "QueueUrls":{ "shape":"QueueUrlList", "documentation":"

A list of queue URLs, up to 1000 entries.

" } }, "documentation":"A list of your queues." }, "Message":{ "type":"structure", "members":{ "MessageId":{ "shape":"String", "documentation":"

A unique identifier for the message. Message IDs are considered unique across all AWS accounts for an extended period of time.

" }, "ReceiptHandle":{ "shape":"String", "documentation":"

An identifier associated with the act of receiving the message. A new receipt handle is returned every time you receive a message. When deleting a message, you provide the last received receipt handle to delete the message.

" }, "MD5OfBody":{ "shape":"String", "documentation":"

An MD5 digest of the non-URL-encoded message body string.

" }, "Body":{ "shape":"String", "documentation":"

The message's contents (not URL-encoded).

" }, "Attributes":{ "shape":"AttributeMap", "documentation":"

SenderId, SentTimestamp, ApproximateReceiveCount, and/or ApproximateFirstReceiveTimestamp. SentTimestamp and ApproximateFirstReceiveTimestamp are each returned as an integer representing the epoch time in milliseconds.

", "locationName":"Attribute" }, "MD5OfMessageAttributes":{ "shape":"String", "documentation":"

An MD5 digest of the non-URL-encoded message attribute string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to http://www.faqs.org/rfcs/rfc1321.html.

" }, "MessageAttributes":{ "shape":"MessageAttributeMap", "documentation":"

Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.

", "locationName":"MessageAttribute" } }, "documentation":"

An Amazon SQS message.

" }, "MessageAttributeMap":{ "type":"map", "key":{ "shape":"String", "locationName":"Name" }, "value":{ "shape":"MessageAttributeValue", "locationName":"Value" }, "flattened":true }, "MessageAttributeName":{"type":"string"}, "MessageAttributeNameList":{ "type":"list", "member":{ "shape":"MessageAttributeName", "locationName":"MessageAttributeName" }, "flattened":true }, "MessageAttributeValue":{ "type":"structure", "required":["DataType"], "members":{ "StringValue":{ "shape":"String", "documentation":"

Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.

" }, "BinaryValue":{ "shape":"Binary", "documentation":"

Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.

" }, "StringListValues":{ "shape":"StringList", "documentation":"

Not implemented. Reserved for future use.

", "flattened":true, "locationName":"StringListValue" }, "BinaryListValues":{ "shape":"BinaryList", "documentation":"

Not implemented. Reserved for future use.

", "flattened":true, "locationName":"BinaryListValue" }, "DataType":{ "shape":"String", "documentation":"

Amazon SQS supports the following logical data types: String, Number, and Binary. In addition, you can append your own custom labels. For more information, see Message Attribute Data Types.

" } }, "documentation":"

The user-specified message attribute value. For string data types, the value attribute has the same restrictions on the content as the message body. For more information, see SendMessage.

Name, type, and value must not be empty or null. In addition, the message body should not be empty or null. All parts of the message attribute, including name, type, and value, are included in the message size restriction, which is currently 256 KB (262,144 bytes).

" }, "MessageList":{ "type":"list", "member":{ "shape":"Message", "locationName":"Message" }, "flattened":true }, "MessageNotInflight":{ "type":"structure", "members":{ }, "error":{ "code":"AWS.SimpleQueueService.MessageNotInflight", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

The message referred to is not in flight.

" }, "OverLimit":{ "type":"structure", "members":{ }, "error":{ "code":"OverLimit", "httpStatusCode":403, "senderFault":true }, "exception":true, "documentation":"

The action that you requested would violate a limit. For example, ReceiveMessage returns this error if the maximum number of messages inflight has already been reached. AddPermission returns this error if the maximum number of permissions for the queue has already been reached.

" }, "PurgeQueueInProgress":{ "type":"structure", "members":{ }, "error":{ "code":"AWS.SimpleQueueService.PurgeQueueInProgress", "httpStatusCode":403, "senderFault":true }, "exception":true, "documentation":"

Indicates that the specified queue previously received a PurgeQueue request within the last 60 seconds, the time it can take to delete the messages in the queue.

" }, "PurgeQueueRequest":{ "type":"structure", "required":["QueueUrl"], "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The queue URL of the queue to delete the messages from when using the PurgeQueue API.

" } } }, "QueueAttributeName":{ "type":"string", "enum":[ "Policy", "VisibilityTimeout", "MaximumMessageSize", "MessageRetentionPeriod", "ApproximateNumberOfMessages", "ApproximateNumberOfMessagesNotVisible", "CreatedTimestamp", "LastModifiedTimestamp", "QueueArn", "ApproximateNumberOfMessagesDelayed", "DelaySeconds", "ReceiveMessageWaitTimeSeconds", "RedrivePolicy" ] }, "QueueDeletedRecently":{ "type":"structure", "members":{ }, "error":{ "code":"AWS.SimpleQueueService.QueueDeletedRecently", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

You must wait 60 seconds after deleting a queue before you can create another with the same name.

" }, "QueueDoesNotExist":{ "type":"structure", "members":{ }, "error":{ "code":"AWS.SimpleQueueService.NonExistentQueue", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

The queue referred to does not exist.

" }, "QueueNameExists":{ "type":"structure", "members":{ }, "error":{ "code":"QueueAlreadyExists", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

A queue already exists with this name. Amazon SQS returns this error only if the request includes attributes whose values differ from those of the existing queue.

" }, "QueueUrlList":{ "type":"list", "member":{ "shape":"String", "locationName":"QueueUrl" }, "flattened":true }, "ReceiptHandleIsInvalid":{ "type":"structure", "members":{ }, "exception":true, "documentation":"

The receipt handle provided is not valid.

" }, "ReceiveMessageRequest":{ "type":"structure", "required":["QueueUrl"], "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL of the Amazon SQS queue to take action on.

" }, "AttributeNames":{ "shape":"AttributeNameList", "documentation":"

A list of attributes that need to be returned along with each message.

The following lists the names and descriptions of the attributes that can be returned:

" }, "MessageAttributeNames":{ "shape":"MessageAttributeNameList", "documentation":"

The name of the message attribute, where N is the index. The message attribute name can contain the following characters: A-Z, a-z, 0-9, underscore (_), hyphen (-), and period (.). The name must not start or end with a period, and it should not have successive periods. The name is case sensitive and must be unique among all attribute names for the message. The name can be up to 256 characters long. The name cannot start with \"AWS.\" or \"Amazon.\" (or any variations in casing), because these prefixes are reserved for use by Amazon Web Services.

When using ReceiveMessage, you can send a list of attribute names to receive, or you can return all of the attributes by specifying \"All\" or \".*\" in your request. You can also use \"foo.*\" to return all message attributes starting with the \"foo\" prefix.

" }, "MaxNumberOfMessages":{ "shape":"Integer", "documentation":"

The maximum number of messages to return. Amazon SQS never returns more messages than this value but may return fewer. Values can be from 1 to 10. Default is 1.

All of the messages are not necessarily returned.

" }, "VisibilityTimeout":{ "shape":"Integer", "documentation":"

The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a ReceiveMessage request.

" }, "WaitTimeSeconds":{ "shape":"Integer", "documentation":"

The duration (in seconds) for which the call will wait for a message to arrive in the queue before returning. If a message is available, the call will return sooner than WaitTimeSeconds.

" } } }, "ReceiveMessageResult":{ "type":"structure", "members":{ "Messages":{ "shape":"MessageList", "documentation":"

A list of messages.

" } }, "documentation":"A list of received messages." }, "RemovePermissionRequest":{ "type":"structure", "required":[ "QueueUrl", "Label" ], "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL of the Amazon SQS queue to take action on.

" }, "Label":{ "shape":"String", "documentation":"

The identification of the permission to remove. This is the label added with the AddPermission action.

" } } }, "SendMessageBatchRequest":{ "type":"structure", "required":[ "QueueUrl", "Entries" ], "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL of the Amazon SQS queue to take action on.

" }, "Entries":{ "shape":"SendMessageBatchRequestEntryList", "documentation":"

A list of SendMessageBatchRequestEntry items.

" } } }, "SendMessageBatchRequestEntry":{ "type":"structure", "required":[ "Id", "MessageBody" ], "members":{ "Id":{ "shape":"String", "documentation":"

An identifier for the message in this batch. This is used to communicate the result. Note that the Ids of a batch request need to be unique within the request.

" }, "MessageBody":{ "shape":"String", "documentation":"

Body of the message.

" }, "DelaySeconds":{ "shape":"Integer", "documentation":"

The number of seconds for which the message has to be delayed.

" }, "MessageAttributes":{ "shape":"MessageAttributeMap", "documentation":"

Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.

", "locationName":"MessageAttribute" } }, "documentation":"

Contains the details of a single Amazon SQS message along with a Id.

" }, "SendMessageBatchRequestEntryList":{ "type":"list", "member":{ "shape":"SendMessageBatchRequestEntry", "locationName":"SendMessageBatchRequestEntry" }, "flattened":true }, "SendMessageBatchResult":{ "type":"structure", "required":[ "Successful", "Failed" ], "members":{ "Successful":{ "shape":"SendMessageBatchResultEntryList", "documentation":"

A list of SendMessageBatchResultEntry items.

" }, "Failed":{ "shape":"BatchResultErrorEntryList", "documentation":"

A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.

" } }, "documentation":"

For each message in the batch, the response contains a SendMessageBatchResultEntry tag if the message succeeds or a BatchResultErrorEntry tag if the message fails.

" }, "SendMessageBatchResultEntry":{ "type":"structure", "required":[ "Id", "MessageId", "MD5OfMessageBody" ], "members":{ "Id":{ "shape":"String", "documentation":"

An identifier for the message in this batch.

" }, "MessageId":{ "shape":"String", "documentation":"

An identifier for the message.

" }, "MD5OfMessageBody":{ "shape":"String", "documentation":"

An MD5 digest of the non-URL-encoded message body string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to http://www.faqs.org/rfcs/rfc1321.html.

" }, "MD5OfMessageAttributes":{ "shape":"String", "documentation":"

An MD5 digest of the non-URL-encoded message attribute string. This can be used to verify that Amazon SQS received the message batch correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to http://www.faqs.org/rfcs/rfc1321.html.

" } }, "documentation":"

Encloses a message ID for successfully enqueued message of a SendMessageBatch.

" }, "SendMessageBatchResultEntryList":{ "type":"list", "member":{ "shape":"SendMessageBatchResultEntry", "locationName":"SendMessageBatchResultEntry" }, "flattened":true }, "SendMessageRequest":{ "type":"structure", "required":[ "QueueUrl", "MessageBody" ], "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL of the Amazon SQS queue to take action on.

" }, "MessageBody":{ "shape":"String", "documentation":"

The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.

" }, "DelaySeconds":{ "shape":"Integer", "documentation":"

The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.

" }, "MessageAttributes":{ "shape":"MessageAttributeMap", "documentation":"

Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.

", "locationName":"MessageAttribute" } } }, "SendMessageResult":{ "type":"structure", "members":{ "MD5OfMessageBody":{ "shape":"String", "documentation":"

An MD5 digest of the non-URL-encoded message body string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to http://www.faqs.org/rfcs/rfc1321.html.

" }, "MD5OfMessageAttributes":{ "shape":"String", "documentation":"

An MD5 digest of the non-URL-encoded message attribute string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to http://www.faqs.org/rfcs/rfc1321.html.

" }, "MessageId":{ "shape":"String", "documentation":"

An element containing the message ID of the message sent to the queue. For more information, see Queue and Message Identifiers in the Amazon SQS Developer Guide.

" } }, "documentation":"

The MD5OfMessageBody and MessageId elements.

" }, "SetQueueAttributesRequest":{ "type":"structure", "required":[ "QueueUrl", "Attributes" ], "members":{ "QueueUrl":{ "shape":"String", "documentation":"

The URL of the Amazon SQS queue to take action on.

" }, "Attributes":{ "shape":"AttributeMap", "documentation":"

A map of attributes to set.

The following lists the names, descriptions, and values of the special request parameters the SetQueueAttributes action uses:

", "locationName":"Attribute" } } }, "String":{"type":"string"}, "StringList":{ "type":"list", "member":{ "shape":"String", "locationName":"StringListValue" } }, "TooManyEntriesInBatchRequest":{ "type":"structure", "members":{ }, "error":{ "code":"AWS.SimpleQueueService.TooManyEntriesInBatchRequest", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Batch request contains more number of entries than permissible.

" }, "UnsupportedOperation":{ "type":"structure", "members":{ }, "error":{ "code":"AWS.SimpleQueueService.UnsupportedOperation", "httpStatusCode":400, "senderFault":true }, "exception":true, "documentation":"

Error code 400. Unsupported operation.

" } } }