AWS App Mesh · Schema

TcpRouteAction

An object that represents the action to take if a match is determined.

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
weightedTargets object
View JSON Schema on GitHub

JSON Schema

app-mesh-tcp-route-action-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "weightedTargets": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WeightedTargets"
        },
        {
          "description": "An object that represents the targets that traffic is routed to when a request matches the route."
        }
      ]
    }
  },
  "required": [
    "weightedTargets"
  ],
  "description": "An object that represents the action to take if a match is determined.",
  "$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-action-schema.json",
  "title": "TcpRouteAction"
}