Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PipeSourceRabbitMQBrokerParameters

import type { PipeSourceRabbitMQBrokerParameters } from "https://aws-api.deno.dev/v0.4/services/pipes.ts?docs=full";

The parameters for using a Rabbit MQ broker as a source.

interface PipeSourceRabbitMQBrokerParameters {
BatchSize?: number | null;
MaximumBatchingWindowInSeconds?: number | null;
QueueName: string;
VirtualHost?: string | null;
}

§Properties

§
BatchSize?: number | null
[src]

The maximum number of records to include in each batch.

§

The credentials needed to access the resource.

§
MaximumBatchingWindowInSeconds?: number | null
[src]

The maximum length of a time to wait for events.

§
QueueName: string
[src]

The name of the destination queue to consume.

§
VirtualHost?: string | null
[src]

The name of the virtual host associated with the source broker.