Tag

A key-value pair associated with an Amazon Web Services resource. In EventBridge, rules and event buses support tagging.

Amazon Web ServicesEvent-DrivenIntegrationMessagingServerless

Properties

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

JSON Schema

amazon-eventbridge-pipes-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-pipes/refs/heads/main/json-schema/amazon-eventbridge-pipes-tag-schema.json",
  "title": "Tag",
  "description": "A key-value pair associated with an Amazon Web Services resource. In EventBridge, rules and event buses support tagging.",
  "type": "object",
  "properties": {
    "Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKey"
        },
        {
          "description": "A string you can use to assign a value. The combination of tag keys and values can help you organize and categorize your resources."
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagValue"
        },
        {
          "description": "The value for the specified tag key."
        }
      ]
    }
  },
  "required": [
    "Key",
    "Value"
  ]
}