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

VirtualGatewayHttpConnectionPool

import type { VirtualGatewayHttpConnectionPool } from "https://aws-api.deno.dev/v0.3/services/appmesh.ts?docs=full";

An object that represents a type of connection pool.

interface VirtualGatewayHttpConnectionPool {
maxConnections: number;
maxPendingRequests?: number | null;
}

§Properties

§
maxConnections: number
[src]

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

§
maxPendingRequests?: number | null
[src]

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