Tag

A key-value tag pair applied to an AWS resource.

BackupEBS SnapshotsLifecycle ManagementStorageAutomationCompliance

Properties

Name Type Description
Key string The tag key
Value string The tag value
View JSON Schema on GitHub

JSON Schema

tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-data-lifecycle-manager/json-schema/tag-schema.json",
  "title": "Tag",
  "description": "A key-value tag pair applied to an AWS resource.",
  "type": "object",
  "required": [
    "Key",
    "Value"
  ],
  "properties": {
    "Key": {
      "type": "string",
      "description": "The tag key"
    },
    "Value": {
      "type": "string",
      "description": "The tag value"
    }
  }
}