Amazon Data Pipeline · Arazzo Workflow

Amazon Data Pipeline Inspect Running Tasks

Version 1.0.0

Find running task instances in a pipeline and pull their full object definitions.

1 workflow 1 source API 1 provider
View Spec View on GitHub Data ProcessingETLWorkflowsData PipelineAutomationArazzoWorkflows

Provider

amazon-data-pipeline

Workflows

inspect-running-tasks
Query matching task instances, then describe the first match in detail.
Chains queryObjects into describeObjects so an operator can move from a status filter to the full field-level detail of a task instance in one pass.
2 steps inputs: pipelineId, query, sphere outputs: firstObjectId, pipelineObjects
1
queryObjects
Find the ids of objects in the requested sphere that match the supplied selector query.
2
describeObjects
Retrieve the full field-level definition for the first matching task object id.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Data Pipeline Inspect Running Tasks
  summary: Find running task instances in a pipeline and pull their full object definitions.
  description: >-
    A monitoring flow for AWS Data Pipeline task management. QueryObjects is used
    to find the object ids in the INSTANCE sphere that match a status selector
    (for example RUNNING), and DescribeObjects then retrieves the full field
    definitions for the first matching object. Every step spells out its request
    inline so the flow can be read and executed without opening the underlying
    OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: pipelineRunsApi
  url: ../openapi/amazon-data-pipeline-pipeline-runs-api-openapi.yml
  type: openapi
workflows:
- workflowId: inspect-running-tasks
  summary: Query matching task instances, then describe the first match in detail.
  description: >-
    Chains queryObjects into describeObjects so an operator can move from a
    status filter to the full field-level detail of a task instance in one pass.
  inputs:
    type: object
    required:
    - pipelineId
    properties:
      pipelineId:
        type: string
        description: The id of the pipeline whose task instances are being inspected.
      sphere:
        type: string
        description: The object sphere to query (COMPONENT, INSTANCE, or ATTEMPT).
      query:
        type: object
        description: The selector query identifying which objects to match.
  steps:
  - stepId: queryObjects
    description: >-
      Find the ids of objects in the requested sphere that match the supplied
      selector query.
    operationId: queryObjects
    requestBody:
      contentType: application/json
      payload:
        pipelineId: $inputs.pipelineId
        sphere: $inputs.sphere
        query: $inputs.query
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstObjectId: $response.body#/ids/0
      hasMoreResults: $response.body#/hasMoreResults
    onSuccess:
    - name: matchesFound
      type: goto
      stepId: describeObjects
      criteria:
      - context: $response.body
        condition: $.ids.length > 0
        type: jsonpath
    - name: noMatches
      type: end
      criteria:
      - context: $response.body
        condition: $.ids.length == 0
        type: jsonpath
  - stepId: describeObjects
    description: >-
      Retrieve the full field-level definition for the first matching task
      object id.
    operationId: describeObjects
    requestBody:
      contentType: application/json
      payload:
        pipelineId: $inputs.pipelineId
        objectIds:
        - $steps.queryObjects.outputs.firstObjectId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      pipelineObjects: $response.body#/pipelineObjects
  outputs:
    firstObjectId: $steps.queryObjects.outputs.firstObjectId
    pipelineObjects: $steps.describeObjects.outputs.pipelineObjects

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/amazon-data-pipeline-inspect-running-tasks-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.