Amazon SQS Queue

Use this Node to manage queue operations including a one-time dequeue, enqueue or delete against a specific Amazon SQS queue.

Revision History

1.0.0.3 Initial Release

Properties

Connection

Type: Connection Input
Provides a Connection to a specific Queue

AccessKey
Type: String

SecretKey
Type: Password

RegionName
Type: String
Amazon region name. e.g. us-east-1

QueueUrl
Type: String
The full URL to the queue resource

Action

Type: List Input
Specifies the action to perform against the queue
Peek - Retrieve the topmost message in the queue (if any) but do not remove it from the queue. The Message output will fire if a message was retrieved, otherwise the Empty output will fire.
Dequeue - Retrieve the topmost message in the queue. The Message output will fire if a message was retrieved, otherwise the Empty output will fire.
Enqueue - Enqueue a new message (ReceiptHandlewill return the handle for the new message)
Delete - Delete the message with the handle specified in ReceiptHandle

Message

Type: Multiline Text InputOutput
The text message

ReceiptHandle

Type: String InputOutput
The handle of the message. For read operations, this value is returned, for write operations, this value is required.

Remarks

This Node can be used to enqueue or dequeue messages. If you wish to continuously monitor a queue, use the Amazon SQS Dequeue Trigger Node.

See Also

Amazon SQS Dequeue