Tag

A key-value tag pair applied to a pipeline resource.

Data ProcessingETLWorkflowsData PipelineAutomation

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-pipeline/json-schema/tag-schema.json",
  "title": "Tag",
  "description": "A key-value tag pair applied to a pipeline resource.",
  "type": "object",
  "required": [
    "key",
    "value"
  ],
  "properties": {
    "key": {
      "type": "string",
      "description": "The tag key"
    },
    "value": {
      "type": "string",
      "description": "The tag value"
    }
  }
}