AWS App Mesh · JSON Structure

App Mesh Grpc Route Structure

An object that represents a gRPC route type.

Type: object Properties: 4 Required: 2
DeprecatedEnvoyMicroservicesNetworkingService Mesh

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

Properties

action match retryPolicy timeout

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "action": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GrpcRouteAction"
        },
        {
          "description": "An object that represents the action to take if a match is determined."
        }
      ]
    },
    "match": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GrpcRouteMatch"
        },
        {
          "description": "An object that represents the criteria for determining a request match."
        }
      ]
    },
    "retryPolicy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GrpcRetryPolicy"
        },
        {
          "description": "An object that represents a retry policy."
        }
      ]
    },
    "timeout": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GrpcTimeout"
        },
        {
          "description": "An object that represents types of timeouts. "
        }
      ]
    }
  },
  "required": [
    "action",
    "match"
  ],
  "description": "An object that represents a gRPC route type.",
  "$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-structure.json",
  "name": "GrpcRoute"
}