AWS App Mesh · JSON Structure

App Mesh Gateway Route Spec Structure

An object that represents a gateway route specification. Specify one gateway route type.

Type: object Properties: 4
DeprecatedEnvoyMicroservicesNetworkingService Mesh

GatewayRouteSpec is a JSON Structure definition published by AWS App Mesh, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

grpcRoute http2Route httpRoute priority

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "grpcRoute": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GrpcGatewayRoute"
        },
        {
          "description": "An object that represents the specification of a gRPC gateway route."
        }
      ]
    },
    "http2Route": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HttpGatewayRoute"
        },
        {
          "description": "An object that represents the specification of an HTTP/2 gateway route."
        }
      ]
    },
    "httpRoute": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HttpGatewayRoute"
        },
        {
          "description": "An object that represents the specification of an HTTP gateway route."
        }
      ]
    },
    "priority": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GatewayRoutePriority"
        },
        {
          "description": "The ordering of the gateway routes spec."
        }
      ]
    }
  },
  "description": "An object that represents a gateway route specification. Specify one gateway 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-gateway-route-spec-structure.json",
  "name": "GatewayRouteSpec"
}