AWS App Mesh · Schema

GrpcGatewayRouteMatch

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

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
hostname object
metadata object
port object
serviceName object
View JSON Schema on GitHub

JSON Schema

app-mesh-grpc-gateway-route-match-schema.json 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-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-mesh/refs/heads/main/json-schema/app-mesh-grpc-gateway-route-match-schema.json",
  "title": "GrpcGatewayRouteMatch"
}