AWS App Mesh · JSON Structure

App Mesh Grpc Gateway Route Structure

An object that represents a gRPC gateway route.

Type: object Properties: 2 Required: 2
DeprecatedEnvoyMicroservicesNetworkingService Mesh

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

Properties

action match

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "action": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GrpcGatewayRouteAction"
        },
        {
          "description": "An object that represents the action to take if a match is determined."
        }
      ]
    },
    "match": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GrpcGatewayRouteMatch"
        },
        {
          "description": "An object that represents the criteria for determining a request match."
        }
      ]
    }
  },
  "required": [
    "action",
    "match"
  ],
  "description": "An object that represents a gRPC gateway route.",
  "$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-grpc-gateway-route-structure.json",
  "name": "GrpcGatewayRoute"
}