
CreateQueue
Create an AMQP queue.
Create an AMQP queue.
Create an AMQP queue.
Create a queue, including specified arguments.
type: "io.kestra.plugin.amqp.CreateQueue"Examples
id: amqp_create_queue
namespace: company.team
tasks:
- id: create_queue
type: io.kestra.plugin.amqp.CreateQueue
host: localhost
port: 5672
username: guest
password: guest
virtualHost: /my_vhost
name: kestramqp.queue
Properties
host*Requiredstring
The broker host
name*Requiredstring
The name of the queue
argsobject
Other properties (construction arguments) for the queue
autoDeletebooleanstring
falseSpecifies if declaring an auto-delete queue (server will delete it when no longer in use)
durabilitybooleanstring
trueSpecifies if declaring a durable queue (the queue will survive a server restart)
exclusivebooleanstring
falseSpecifies if declaring an exclusive queue (restricted to this connection)
passwordstring
The broker password
portstring
5672The broker port
usernamestring
The broker username
virtualHoststring
/The broker virtual host
Outputs
queuestring
The queue name