Amazon Data Pipeline · Arazzo Workflow

Amazon Data Pipeline Provision and Activate

Version 1.0.0

Create an empty pipeline, populate its definition, activate it, and confirm its state.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub Data ProcessingETLWorkflowsData PipelineAutomationArazzoWorkflows

Provider

amazon-data-pipeline

Workflows

provision-and-activate-pipeline
Create a pipeline, set its definition, activate it, and confirm state.
Chains createPipeline into putPipelineDefinition, then activatePipeline, and finally describePipelines so the newly provisioned pipeline is fully running and its state is observed in a single pass.
4 steps inputs: description, name, pipelineObjects, startTimestamp, uniqueId outputs: pipelineId, pipelineState
1
createPipeline
Create a new, empty pipeline shell using the supplied name and idempotent unique id.
2
putDefinition
Populate the freshly created pipeline with its objects (schedules, defaults, activities, preconditions).
3
activatePipeline
Validate and start the pipeline so it begins processing its tasks on the configured schedule.
4
confirmState
Read back the pipeline metadata to confirm the pipeline exists and observe its current state after activation.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Data Pipeline Provision and Activate
  summary: Create an empty pipeline, populate its definition, activate it, and confirm its state.
  description: >-
    The canonical end-to-end provisioning flow for AWS Data Pipeline. An empty
    pipeline is created with a caller-supplied unique id, the pipeline
    definition (objects such as schedules, defaults, and activities) is written
    with PutPipelineDefinition, the pipeline is activated to begin processing
    tasks, and DescribePipelines confirms the resulting pipeline state. 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: pipelineObjectsApi
  url: ../openapi/amazon-data-pipeline-pipeline-objects-api-openapi.yml
  type: openapi
- name: pipelineRunsApi
  url: ../openapi/amazon-data-pipeline-pipeline-runs-api-openapi.yml
  type: openapi
- name: pipelinesApi
  url: ../openapi/amazon-data-pipeline-pipelines-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-and-activate-pipeline
  summary: Create a pipeline, set its definition, activate it, and confirm state.
  description: >-
    Chains createPipeline into putPipelineDefinition, then activatePipeline, and
    finally describePipelines so the newly provisioned pipeline is fully running
    and its state is observed in a single pass.
  inputs:
    type: object
    required:
    - name
    - uniqueId
    - pipelineObjects
    properties:
      name:
        type: string
        description: The human-readable name of the pipeline.
      uniqueId:
        type: string
        description: An idempotency token that prevents duplicate pipeline creation.
      description:
        type: string
        description: An optional description of the pipeline.
      pipelineObjects:
        type: array
        description: The pipeline objects (schedules, defaults, activities) that make up the definition.
        items:
          type: object
      startTimestamp:
        type: string
        description: The optional date-time at which the pipeline should begin processing.
  steps:
  - stepId: createPipeline
    description: >-
      Create a new, empty pipeline shell using the supplied name and idempotent
      unique id.
    operationId: createPipeline
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
        uniqueId: $inputs.uniqueId
        description: $inputs.description
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      pipelineId: $response.body#/pipelineId
  - stepId: putDefinition
    description: >-
      Populate the freshly created pipeline with its objects (schedules,
      defaults, activities, preconditions).
    operationId: putPipelineDefinition
    requestBody:
      contentType: application/json
      payload:
        pipelineId: $steps.createPipeline.outputs.pipelineId
        pipelineObjects: $inputs.pipelineObjects
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      errored: $response.body#/errored
      validationErrors: $response.body#/validationErrors
  - stepId: activatePipeline
    description: >-
      Validate and start the pipeline so it begins processing its tasks on the
      configured schedule.
    operationId: activatePipeline
    requestBody:
      contentType: application/json
      payload:
        pipelineId: $steps.createPipeline.outputs.pipelineId
        startTimestamp: $inputs.startTimestamp
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      activated: $statusCode
  - stepId: confirmState
    description: >-
      Read back the pipeline metadata to confirm the pipeline exists and observe
      its current state after activation.
    operationId: describePipelines
    requestBody:
      contentType: application/json
      payload:
        pipelineIds:
        - $steps.createPipeline.outputs.pipelineId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      pipelineState: $response.body#/pipelineDescriptionList/0/pipelineState
  outputs:
    pipelineId: $steps.createPipeline.outputs.pipelineId
    pipelineState: $steps.confirmState.outputs.pipelineState

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-provision-and-activate-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.