AWS App Mesh · Schema

VirtualRouterListener

An object that represents a virtual router listener.

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
portMapping object An object that represents a port mapping.
View JSON Schema on GitHub

JSON Schema

app-mesh-virtual-router-listener-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "portMapping": {
      "type": "object",
      "properties": {
        "port": {
          "allOf": [
            {
              "$ref": "#/components/schemas/PortNumber"
            },
            {
              "description": "The port used for the port mapping."
            }
          ]
        },
        "protocol": {
          "allOf": [
            {
              "$ref": "#/components/schemas/PortProtocol"
            },
            {
              "description": "The protocol used for the port mapping. Specify one protocol."
            }
          ]
        }
      },
      "required": [
        "port",
        "protocol"
      ],
      "description": "An object that represents a port mapping."
    }
  },
  "required": [
    "portMapping"
  ],
  "description": "An object that represents a virtual router listener.",
  "$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-router-listener-schema.json",
  "title": "VirtualRouterListener"
}