AWS App Mesh · JSON Structure

App Mesh Gateway Route Target Structure

An object that represents a gateway route target.

Type: object Properties: 2 Required: 1
DeprecatedEnvoyMicroservicesNetworkingService Mesh

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

Properties

port virtualService

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

JSON Structure

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