AWS News Blog
Queue Scratchpad
The AWS Zone now includes a scratchpad for the Amazon Simple Queue Service. You can find it at
http://www.awszone.com/scratchpads/rest/sqs/index.aws
You can use this nifty tool to exercise the queue without writing any code. Here’s what you do:
- Get a Subscription Id
- Use the scratchpad to create a queue (“CreateQueue”).
- Copy the Queue Id from the returned XML. The Id will look like this: <QueueId>04FKKM4K6661QRKMTYD4</QueueId>. You will need the Id for the Enqueue and Dequeue operations.
- Enqueue one or more messages using the EnQueue operation.
- Dequeue your messages using the DeQueue operation.
- If you forget your QueueId, use ListMyQueues to see the names and Ids of all of your queues.
That’s all there is to it!