QueueBind
Bind a queue to an AMQP exchange.
yaml
type: "io.kestra.plugin.amqp.QueueBind"
Examples
yaml
id: amqp_queue_bind
namespace: company.team
tasks:
- id: queue_bind
type: io.kestra.plugin.amqp.QueueBind
url: amqp://guest:guest@localhost:5672/my_vhost
exchange: kestramqp.exchange
queue: kestramqp.queue
Properties
exchange *Requiredstring
The exchange to bind with.
host *Requiredstring
The broker host.
queue *Requiredstring
The queue to bind.
args object
Other properties (binding parameters).
password string
The broker password.
port string
Default
5672
The broker port.
routingKey string
The routing key to use for the binding.
username string
The broker username.
virtualHost string
Default
/
The broker virtual host.
Outputs
exchange string
The exchange name.
queue string
The queue name.