Optional
autoDelete: booleanSet the dead letter exchange.
Optional
rountingKey: stringSet the delivery limit of the queue. Only applicable to quorum queues.
Set the queue to be durable. Durable queues will survive a broker restart.
Optional
durable: booleanSet the queue to be exclusive. Exclusive queues can only be used by one connection and will be deleted when the connection closes.
Optional
exclusive: booleanDelete the queue after the given time in milliseconds of disuse.
Set the max age of the messages in the stream. Retention is only evaluated when a new segment is added to the stream. Valid units are: Y, M, D, h, m, s
Set the max length of the queue.
Optional
overflowBehavior: XOverflowSet the max length of the queue in bytes.
Optional
overflowBehavior: XOverflowSet maximum priority of the messages in the queue. Larger numbers indicate higher priority.
Set message TTL. Messages in the queue will be expired after the TTL. If dead letter exchange is set, expired messages will be sent to the dead letter exchange.
Set the queue to be passive. Passive queues will not be created by the broker.
Optional
passive: booleanSet the queue type to quorum. See https://www.rabbitmq.com/quorum-queues.html
Set the queue to have a single active consumer. See https://www.rabbitmq.com/consumers.html#single-active-consumer
Set the queue type to stream. See https://www.rabbitmq.com/streams.html
Set the max segment size of the stream. A stream is divided up into fixed size segment files on disk. This setting controls the size of these. Default: (500_000_000 bytes).
Set the queue to auto delete when the last consumer disconnects. Not allowed for quorum queues or streams