AWS App Mesh · Schema

TcpRoute

An object that represents a TCP route type.

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
action object
match object
timeout object
View JSON Schema on GitHub

JSON Schema

app-mesh-tcp-route-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "action": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TcpRouteAction"
        },
        {
          "description": "The action to take if a match is determined."
        }
      ]
    },
    "match": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TcpRouteMatch"
        },
        {
          "description": "An object that represents the criteria for determining a request match."
        }
      ]
    },
    "timeout": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TcpTimeout"
        },
        {
          "description": "An object that represents types of timeouts. "
        }
      ]
    }
  },
  "required": [
    "action"
  ],
  "description": "An object that represents a TCP route type.",
  "$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-schema.json",
  "title": "TcpRoute"
}