
send-message-batch
******************


DESCRIPTION
===========

This is a batch version of  send-message . It takes multiple messages
and adds each of them to the queue. The result of each add operation
is reported individually in the response.


SYNOPSIS
========

   aws sqs send-message-batch
     --queue-url <value>
     --entries <value>


REQUIRED PARAMETERS
===================

"--queue-url"  (string)
   The URL of the SQS queue to take action on.

"--entries"  (list)
   A list of  SendMessageBatchRequestEntry s.

      (structure)
         Contains the details of a single SQS message along with a
         "Id" .

         "delay_seconds"  (integer)
            The number of seconds for which the message has to be
            delayed.

         "id"  (string)
            An identifier for the message in this batch. This is used
            to communicate the result. Note that the the "Id" s of a
            batch request need to be unique within the request.

         "message_body"  (string)
            Body of the message.

   *Parameter Syntax*

      [
        {
          "delay_seconds": integer,
          "id": "string",
          "message_body": "string"
        }
        ...
      ]


OPTIONAL PARAMETERS
===================

None
