AWS App Mesh · Schema

GatewayRouteTarget

An object that represents a gateway route target.

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
port object
virtualService object
View JSON Schema on GitHub

JSON Schema

app-mesh-gateway-route-target-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "port": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListenerPort"
        },
        {
          "description": "The port number of the gateway route target."
        }
      ]
    },
    "virtualService": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GatewayRouteVirtualService"
        },
        {
          "description": "An object that represents a virtual service gateway route target."
        }
      ]
    }
  },
  "required": [
    "virtualService"
  ],
  "description": "An object that represents a gateway route target.",
  "$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-gateway-route-target-schema.json",
  "title": "GatewayRouteTarget"
}