Amazon AppFlow · Schema

TagResourceRequest

TagResourceRequest schema from Amazon AppFlow API

ConnectorsData FlowData IntegrationETLIntegrationSaaSData Transfer

Properties

Name Type Description
tags object The tags used to organize, track, or control access for your flow.
View JSON Schema on GitHub

JSON Schema

appflow-tag-resource-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-appflow/refs/heads/main/json-schema/appflow-tag-resource-request-schema.json",
  "title": "TagResourceRequest",
  "description": "TagResourceRequest schema from Amazon AppFlow API",
  "type": "object",
  "properties": {
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "example": {
        "environment": "production",
        "team": "data-engineering"
      },
      "description": "The tags used to organize, track, or control access for your flow."
    }
  },
  "required": [
    "tags"
  ]
}