Amazon CodeDeploy · Schema

Tag

Information about a tag.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
Key object
Value object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-tag-schema.json",
  "title": "Tag",
  "description": "Information about a tag.",
  "type": "object",
  "properties": {
    "Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Key"
        },
        {
          "description": "The tag's key."
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Value"
        },
        {
          "description": "The tag's value."
        }
      ]
    }
  }
}