Module Values.PipeSourceRabbitMQBrokerParametersSource

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

Sourcetype nonrec t = {
  1. credentials : MQBrokerAccessCredentials.t;
    (*

    The credentials needed to access the resource.

    *)
  2. queueName : MQBrokerQueueName.t;
    (*

    The name of the destination queue to consume.

    *)
  3. virtualHost : URI.t option;
    (*

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

    *)
  4. batchSize : LimitMax10000.t option;
    (*

    The maximum number of records to include in each batch.

    *)
  5. maximumBatchingWindowInSeconds : MaximumBatchingWindowInSeconds.t option;
    (*

    The maximum length of a time to wait for events.

    *)
}
Sourceval context_ : string
Sourceval make : ?virtualHost:??? -> ?batchSize:??? -> ?maximumBatchingWindowInSeconds:??? -> credentials:MQBrokerAccessCredentials.t -> queueName:MQBrokerQueueName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of LimitMax10000.t | `String of MQBrokerQueueName.t | `Structure of (string * [> `String of SecretManagerArn.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t