{ "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" }