Description Usage Arguments Value Author(s) References See Also Examples
Send a message to an SQS queue
| 1 | 
| queue | A character string containing a queue URL, or the name of the queue. | 
| msg | A character vector containing one or more message bodies. | 
| attributes | Currently ignored. (If  | 
| delay | A numeric value indicating the number of seconds between 0 and 900 to delay a specific message. If  | 
| query | A list specifying additional query arguments to be passed to the  | 
| ... | Additional arguments passed to  | 
A list of message information, including the MessageId and an MD5 checksum of the message body.
Thomas J. Leeper
link{receive_msg} link{delete_msg}
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | ## Not run: 
  # list current queues
  list_queues()
  
  # create a queue
  queue <- create_queue("ExampleQueue")
  get_queue_url("ExampleQueue")
  
  # send message to queue
  send_msg("ExampleQueue", "This is a test message")
  # receive a message
  (m <- receive_msg("ExampleQueue", timeout = 0))
  
  # delete a message from queue
  delete_msg("ExampleQueue", m$ReceiptHandle[1])
  
  # delete queue
  delete_queue("ExampleQueue")
  
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.