AWS App Mesh · JSON Structure

App Mesh Virtual Node Http Connection Pool Structure

An object that represents a type of connection pool.

Type: object Properties: 2 Required: 1
DeprecatedEnvoyMicroservicesNetworkingService Mesh

VirtualNodeHttpConnectionPool is a JSON Structure definition published by AWS App Mesh, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

maxConnections maxPendingRequests

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "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-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-mesh/refs/heads/main/json-structure/app-mesh-virtual-node-http-connection-pool-structure.json",
  "name": "VirtualNodeHttpConnectionPool"
}