AWS App Mesh · JSON Structure

App Mesh Tcp Route Structure

An object that represents a TCP route type.

Type: object Properties: 3 Required: 1
DeprecatedEnvoyMicroservicesNetworkingService Mesh

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

Properties

action match timeout

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

JSON Structure

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-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-mesh/refs/heads/main/json-structure/app-mesh-tcp-route-structure.json",
  "name": "TcpRoute"
}