Amazon EventBridge Pipes · JSON Structure

Amazon Eventbridge Pipes Tag Structure

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

Type: object Properties: 2 Required: 2
Amazon Web ServicesEvent-DrivenIntegrationMessagingServerless

Tag is a JSON Structure definition published by Amazon EventBridge Pipes, 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-eventbridge-pipes/refs/heads/main/json-structure/amazon-eventbridge-pipes-tag-structure.json",
  "name": "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"
  ]
}