Amazon Global Accelerator · JSON Structure

Global Accelerator Tag Structure

A complex type that contains a Tag key and Tag value.

Type: object Properties: 2 Required: 2
AvailabilityCDNGlobalLoad BalancingNetworkingPerformance

Tag is a JSON Structure definition published by Amazon Global Accelerator, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Key Value

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-global-accelerator/refs/heads/main/json-structure/global-accelerator-tag-structure.json",
  "name": "Tag",
  "description": "A complex type that contains a <code>Tag</code> key and <code>Tag</code> value.",
  "type": "object",
  "properties": {
    "Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKey"
        },
        {
          "description": "A string that contains a <code>Tag</code> key."
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagValue"
        },
        {
          "description": "A string that contains a <code>Tag</code> value."
        }
      ]
    }
  },
  "required": [
    "Key",
    "Value"
  ]
}