Module Values.VirtualGatewayHttpConnectionPoolSource

An object that represents a type of connection pool.

Sourcetype nonrec t = {
  1. maxConnections : MaxConnections.t;
    (*

    Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.

    *)
  2. maxPendingRequests : MaxPendingRequests.t option;
    (*

    Number of overflowing requests after max_connections Envoy will queue to upstream cluster.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxPendingRequests:??? -> maxConnections:MaxConnections.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxConnections.t ]) 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