AWS App Mesh · JSON Structure

App Mesh Virtual Node Ref Structure

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

Type: object Properties: 8 Required: 8
DeprecatedEnvoyMicroservicesNetworkingService Mesh

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

Properties

arn createdAt lastUpdatedAt meshName meshOwner resourceOwner version virtualNodeName

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The full Amazon Resource Name (ARN) for the virtual node."
        }
      ]
    },
    "createdAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The Unix epoch timestamp in seconds for when the resource was created."
        }
      ]
    },
    "lastUpdatedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The Unix epoch timestamp in seconds for when the resource was last updated."
        }
      ]
    },
    "meshName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the service mesh that the virtual node resides in."
        }
      ]
    },
    "meshOwner": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "description": "The Amazon Web Services IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see <a href=\"https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html\">Working with shared meshes</a>."
        }
      ]
    },
    "resourceOwner": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "description": "The Amazon Web Services IAM account ID of the resource owner. If the account ID is not your own, then it's the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see <a href=\"https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html\">Working with shared meshes</a>."
        }
      ]
    },
    "version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated."
        }
      ]
    },
    "virtualNodeName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the virtual node."
        }
      ]
    }
  },
  "required": [
    "arn",
    "createdAt",
    "lastUpdatedAt",
    "meshName",
    "meshOwner",
    "resourceOwner",
    "version",
    "virtualNodeName"
  ],
  "description": "An object that represents a virtual node returned by a list 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-ref-structure.json",
  "name": "VirtualNodeRef"
}