AWS App Mesh · JSON Structure

App Mesh Virtual Router Data Structure

An object that represents a virtual router returned by a describe operation.

Type: object Properties: 5 Required: 5
DeprecatedEnvoyMicroservicesNetworkingService Mesh

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

Properties

meshName metadata spec status virtualRouterName

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "meshName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the service mesh that the virtual router resides in."
        }
      ]
    },
    "metadata": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceMetadata"
        },
        {
          "description": "The associated metadata for the virtual router."
        }
      ]
    },
    "spec": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualRouterSpec"
        },
        {
          "description": "The specifications of the virtual router."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualRouterStatus"
        },
        {
          "description": "The current status of the virtual router."
        }
      ]
    },
    "virtualRouterName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the virtual router."
        }
      ]
    }
  },
  "required": [
    "meshName",
    "metadata",
    "spec",
    "status",
    "virtualRouterName"
  ],
  "description": "An object that represents a virtual router returned by a describe operation.",
  "$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-virtual-router-data-structure.json",
  "name": "VirtualRouterData"
}