AWS App Mesh · JSON Structure

App Mesh Virtual Gateway Listener Structure

An object that represents a listener for a virtual gateway.

Type: object Properties: 4 Required: 1
DeprecatedEnvoyMicroservicesNetworkingService Mesh

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

Properties

connectionPool healthCheck portMapping tls

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "connectionPool": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualGatewayConnectionPool"
        },
        {
          "description": "The connection pool information for the virtual gateway listener."
        }
      ]
    },
    "healthCheck": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualGatewayHealthCheckPolicy"
        },
        {
          "description": "The health check information for the listener."
        }
      ]
    },
    "portMapping": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualGatewayPortMapping"
        },
        {
          "description": "The port mapping information for the listener."
        }
      ]
    },
    "tls": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualGatewayListenerTls"
        },
        {
          "description": "A reference to an object that represents the Transport Layer Security (TLS) properties for the listener."
        }
      ]
    }
  },
  "required": [
    "portMapping"
  ],
  "description": "An object that represents a listener for a virtual gateway.",
  "$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-gateway-listener-structure.json",
  "name": "VirtualGatewayListener"
}