Create an AMQP queue.
Create a queue, including specified arguments.
yaml
type: "io.kestra.plugin.amqp.createqueue"yaml
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
The broker host
The name of the queue
Other properties (construction arguments) for the queue
Default
falseSpecifies if declaring an auto-delete queue (server will delete it when no longer in use)
Default
trueSpecifies if declaring a durable queue (the queue will survive a server restart)
Default
falseSpecifies if declaring an exclusive queue (restricted to this connection)
The broker password
Default
5672The broker port
The broker username
Default
/The broker virtual host
The queue name