SQSResourceClient allows you to perform operations on AWS SQS queues, such as sending messages, receiving messages, and deleting messages.
Usage
Inputs
Theinvoke method accepts the following arguments:
The SQS command to execute. Supported commands include
"SendMessage",
"ReceiveMessage", "DeleteMessage", "ListQueues",
"GetQueueAttributes", "SetQueueAttributes".The parameters for the command, matching the AWS SDK input shape (e.g.,
QueueUrl, MessageBody, ReceiptHandle).A unique identifier for this operation.
Optional configuration object.
Outputs
On success (ok: true), the result object contains:
Discriminator for the response type.
The command that was executed.
The result data from SQS (e.g., the
MessageId from a SendMessage call, or
Messages from a ReceiveMessage call).