AWS App Mesh · Schema

VirtualNodeHttp2ConnectionPool

An object that represents a type of connection pool.

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
maxRequests object
View JSON Schema on GitHub

JSON Schema

app-mesh-virtual-node-http2-connection-pool-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "maxRequests": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaxRequests"
        },
        {
          "description": "Maximum number of inflight requests Envoy can concurrently support across hosts in upstream cluster."
        }
      ]
    }
  },
  "required": [
    "maxRequests"
  ],
  "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-http2-connection-pool-schema.json",
  "title": "VirtualNodeHttp2ConnectionPool"
}