AWS App Mesh · Schema

TcpRouteMatch

An object representing the TCP route to match.

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
port object
View JSON Schema on GitHub

JSON Schema

app-mesh-tcp-route-match-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "port": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListenerPort"
        },
        {
          "description": "The port number to match on."
        }
      ]
    }
  },
  "description": "An object representing the TCP route to match.",
  "$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-tcp-route-match-schema.json",
  "title": "TcpRouteMatch"
}