AWS App Mesh · JSON Structure

App Mesh Grpc Gateway Route Match Structure

An object that represents the criteria for determining a request match.

Type: object Properties: 4
DeprecatedEnvoyMicroservicesNetworkingService Mesh

GrpcGatewayRouteMatch 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

hostname metadata port serviceName

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "hostname": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GatewayRouteHostnameMatch"
        },
        {
          "description": "The gateway route host name to be matched on."
        }
      ]
    },
    "metadata": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GrpcGatewayRouteMetadataList"
        },
        {
          "description": "The gateway route metadata to be matched on."
        }
      ]
    },
    "port": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListenerPort"
        },
        {
          "description": "The port number to match from the request."
        }
      ]
    },
    "serviceName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ServiceName"
        },
        {
          "description": "The fully qualified domain name for the service to match from the request."
        }
      ]
    }
  },
  "description": "An object that represents the criteria for determining a request match.",
  "$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-match-structure.json",
  "name": "GrpcGatewayRouteMatch"
}