AWS App Mesh · JSON Structure

App Mesh Grpc Metadata Match Method Structure

An object representing the method header to be matched.

Type: object Properties: 5
DeprecatedEnvoyMicroservicesNetworkingService Mesh

GrpcMetadataMatchMethod 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 exact method header to be matched on."
        }
      ]
    },
    "prefix": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HeaderMatch"
        },
        {
          "description": "The specified beginning characters of the method header to be matched on."
        }
      ]
    },
    "range": {
      "type": "object",
      "properties": {
        "end": {
          "allOf": [
            {
              "$ref": "#/components/schemas/Long"
            },
            {
              "description": "The end of the range."
            }
          ]
        },
        "start": {
          "allOf": [
            {
              "$ref": "#/components/schemas/Long"
            },
            {
              "description": "The start of the range."
            }
          ]
        }
      },
      "required": [
        "end",
        "start"
      ],
      "description": "An object that represents the range of values to match on. The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched."
    },
    "regex": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HeaderMatch"
        },
        {
          "description": "The regex used to match the method header."
        }
      ]
    },
    "suffix": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HeaderMatch"
        },
        {
          "description": "The specified ending characters of the method header to match on."
        }
      ]
    }
  },
  "description": "An object representing the method header to be matched.",
  "$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-metadata-match-method-structure.json",
  "name": "GrpcMetadataMatchMethod"
}