An object that represents a type of connection pool.
{ "type": "object", "properties": { "maxConnections": { "allOf": [ { "$ref": "#/components/schemas/MaxConnections" }, { "description": "Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster." } ] }, "maxPendingRequests": { "allOf": [ { "$ref": "#/components/schemas/MaxPendingRequests" }, { "description": "Number of overflowing requests after <code>max_connections</code> Envoy will queue to upstream cluster." } ] } }, "required": [ "maxConnections" ], "description": "An object that represents a type of connection pool.", "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-mesh/refs/heads/main/json-schema/app-mesh-virtual-node-http-connection-pool-schema.json", "title": "VirtualNodeHttpConnectionPool" }