Amazon Data Pipeline Tags API

Operations for managing pipeline tags

Operations 2

POST /?Action=AddTags Add Tags #
POST /?Action=RemoveTags Remove Tags #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/amazon-data-pipeline-tags-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

amazon-data-pipeline-tags-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AWS Data Pipeline Pipeline Objects Tags API
  description: The AWS Data Pipeline API provides a web service for processing and moving data between different AWS compute and storage services as well as on-premises data sources at specified intervals. Supports creating pipeline definitions, scheduling data transformations, configuring retry and failure handling, and monitoring pipeline execution.
  version: '2012-10-29'
  contact:
    name: AWS Support
    url: https://aws.amazon.com/premiumsupport/
servers:
- url: https://datapipeline.amazonaws.com
  description: AWS Data Pipeline API
security:
- awsSignatureV4: []
tags:
- name: Tags
  description: Operations for managing pipeline tags
paths:
  /?Action=AddTags:
    post:
      operationId: addTags
      summary: Add Tags
      description: Adds or modifies tags for the specified pipeline.
      tags:
      - Tags
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddTagsRequest'
            examples:
              default:
                x-microcks-default: true
                value:
                  pipelineId: df-0937003B3GENERIC4EXAMPLE
                  tags:
                  - key: CostCenter
                    value: CC-001
                  - key: Owner
                    value: data-engineering
      responses:
        '200':
          description: Tags added successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AddTagsOutput'
              examples:
                default:
                  x-microcks-default: true
                  value: {}
  /?Action=RemoveTags:
    post:
      operationId: removeTags
      summary: Remove Tags
      description: Removes existing tags from the specified pipeline.
      tags:
      - Tags
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RemoveTagsRequest'
            examples:
              default:
                x-microcks-default: true
                value:
                  pipelineId: df-0937003B3GENERIC4EXAMPLE
                  tagKeys:
                  - CostCenter
      responses:
        '200':
          description: Tags removed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RemoveTagsOutput'
              examples:
                default:
                  x-microcks-default: true
                  value: {}
components:
  schemas:
    RemoveTagsOutput:
      description: Response after removing tags.
      type: object
    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
    AddTagsOutput:
      description: Response after adding tags.
      type: object
    AddTagsRequest:
      description: Request body for adding tags to a pipeline.
      type: object
      required:
      - pipelineId
      - tags
      properties:
        pipelineId:
          type: string
        tags:
          type: array
          items:
            $ref: '#/components/schemas/Tag'
    RemoveTagsRequest:
      description: Request body for removing tags from a pipeline.
      type: object
      required:
      - pipelineId
      - tagKeys
      properties:
        pipelineId:
          type: string
        tagKeys:
          type: array
          items:
            type: string
  securitySchemes:
    awsSignatureV4:
      type: apiKey
      in: header
      name: Authorization
      description: AWS Signature Version 4 authentication