interface RabbitMQNodeParameters {
exchange?: string;
exchangeType?:
| "direct"
| "headers"
| "topic"
| "fanout";
message?: string;
mode?: "exchange"
| "queue";
operation?: "sendMessage" | "deleteMessage";
options?: {
alternateExchange?: string;
arguments?: {
argument: { key?: string; value?: string }[];
};
autoDelete?: boolean;
durable?: boolean;
exclusive?: boolean;
headers?: {
header: { key?: string; value?: string }[];
};
};
queue?: string;
routingKey?: string;
sendInputData?: boolean;
}
Properties§
Source§readonly exchange Type?: "direct" | "headers" | "topic" | "fanout"
readonly exchange Type?: "direct" | "headers" | "topic" | "fanout"
Type of exchange Default: "fanout"
Name of the exchange to publish to