AWS App Mesh · JSON Structure

App Mesh Grpc Route Metadata Match Method Structure

An object that represents the match method. Specify one of the match values.

Type: object Properties: 5
DeprecatedEnvoyMicroservicesNetworkingService Mesh

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

Properties

exact prefix range regex suffix

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "exact": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HeaderMatch"
        },
        {
          "description": "The value sent by the client must match the specified value exactly."
        }
      ]
    },
    "prefix": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HeaderMatch"
        },
        {
          "description": "The value sent by the client must begin with the specified characters."
        }
      ]
    },
    "range": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MatchRange"
        },
        {
          "description": "An object that represents the range of values to match on."
        }
      ]
    },
    "regex": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HeaderMatch"
        },
        {
          "description": "The value sent by the client must include the specified characters."
        }
      ]
    },
    "suffix": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HeaderMatch"
        },
        {
          "description": "The value sent by the client must end with the specified characters."
        }
      ]
    }
  },
  "description": "An object that represents the match method. Specify one of the match values.",
  "$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-route-metadata-match-method-structure.json",
  "name": "GrpcRouteMetadataMatchMethod"
}