Procedures
Automation procedures in the AWS SQS book.
Make sure to add the AWS SQS book to your agent before using these automation procedures.
to delete a (message) from a queue
Deletes a message from an SQS queue.
Input Concepts
Output Concepts
Examples
get some queues from sqs
receive some messages from the first queue
delete the first message
to get (queues) from sqs
Lists all queues available in SQS.
Output Concepts
queues
A list of queue URLs
text
Examples
get some queues from sqs
to receive (messages) from a queue
Receives messages from an SQS queue.
Input Concepts
queue
The URL of the Amazon SQS queue to receive messages from
text
Yes
(no default)
max amount
Maximum number of messages to return
number
No
1
visibility timeout
The duration in seconds that the received messages are hidden
number
No
(no default)
Output Concepts
Examples
get some queues from sqs
receive some messages from the first queue
to send a message to a queue
Sends a message to an SQS queue.
Input Concepts
queue
The URL of the Amazon SQS queue to send a message to
text
Yes
(no default)
body
The message to send
text
Yes
(no default)
attributes
Message attributes for the message
json
No
(no default)
Output Concepts
answer
Information about the sent message including MessageId
json
Examples
get some queues from sqs
send a message to the first queue
the body is "Hello, world!"
Last updated
Was this helpful?