AWS App Mesh · Schema

RouteStatus

An object that represents the current status of a route.

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
status object
View JSON Schema on GitHub

JSON Schema

app-mesh-route-status-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RouteStatusCode"
        },
        {
          "description": "The current status for the route."
        }
      ]
    }
  },
  "required": [
    "status"
  ],
  "description": "An object that represents the current status of a route.",
  "$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-route-status-schema.json",
  "title": "RouteStatus"
}