AWS App Mesh · Schema

VirtualNodeData

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

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
meshName object
metadata object
spec object
status object
virtualNodeName object
View JSON Schema on GitHub

JSON Schema

app-mesh-virtual-node-data-schema.json 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-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-mesh/refs/heads/main/json-schema/app-mesh-virtual-node-data-schema.json",
  "title": "VirtualNodeData"
}