AWS App Mesh · Schema

CreateVirtualNodeInput

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
clientToken object
spec object
tags object
virtualNodeName object
View JSON Schema on GitHub

JSON Schema

app-mesh-create-virtual-node-input-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "clientToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed."
        }
      ]
    },
    "spec": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualNodeSpec"
        },
        {
          "description": "The virtual node specification to apply."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "Optional metadata that you can apply to the virtual node to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters."
        }
      ]
    },
    "virtualNodeName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name to use for the virtual node."
        }
      ]
    }
  },
  "required": [
    "spec",
    "virtualNodeName"
  ],
  "description": "<zonbook></zonbook><xhtml></xhtml>",
  "$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-create-virtual-node-input-schema.json",
  "title": "CreateVirtualNodeInput"
}