AWS App Mesh · JSON Structure

App Mesh Virtual Node Data Structure

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

Type: object Properties: 5 Required: 5
DeprecatedEnvoyMicroservicesNetworkingService Mesh

VirtualNodeData 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 virtualNodeName

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 node resides in."
        }
      ]
    },
    "metadata": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceMetadata"
        },
        {
          "description": "The associated metadata for the virtual node."
        }
      ]
    },
    "spec": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualNodeSpec"
        },
        {
          "description": "The specifications of the virtual node."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualNodeStatus"
        },
        {
          "description": "The current status for the virtual node."
        }
      ]
    },
    "virtualNodeName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the virtual node."
        }
      ]
    }
  },
  "required": [
    "meshName",
    "metadata",
    "spec",
    "status",
    "virtualNodeName"
  ],
  "description": "An object that represents a virtual node 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-node-data-structure.json",
  "name": "VirtualNodeData"
}