Amazon DataZone · Arazzo Workflow

Amazon DataZone Teardown Project

Version 1.0.0

Confirm a project exists, delete it, then verify the delete via a 404 read-back.

1 workflow 1 source API 1 provider
View Spec View on GitHub Data CatalogData GovernanceData ManagementData SharingAnalyticsArazzoWorkflows

Provider

amazon-datazone

Workflows

teardown-project
Verify, delete, and confirm removal of a DataZone project.
Reads the project to confirm it exists, deletes it, and reads it again expecting a 404 Not Found to confirm the deletion completed.
3 steps inputs: domainIdentifier, identifier outputs: finalStatus, projectName
1
confirmProject
Read the project to confirm it exists before deleting it.
2
deleteProject
Delete the confirmed project. A 204 indicates successful deletion.
3
verifyGone
Read the project again expecting a 404 Not Found to confirm the project was fully removed.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon DataZone Teardown Project
  summary: Confirm a project exists, delete it, then verify the delete via a 404 read-back.
  description: >-
    Safely decommissions a DataZone project. It first reads the project to
    confirm it exists, then deletes it, and finally reads it again expecting a
    404 to prove the project was removed. This guards against deleting the wrong
    project and verifies the destructive action actually took effect. 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: projectsApi
  url: ../openapi/amazon-datazone-projects-api-openapi.yml
  type: openapi
workflows:
- workflowId: teardown-project
  summary: Verify, delete, and confirm removal of a DataZone project.
  description: >-
    Reads the project to confirm it exists, deletes it, and reads it again
    expecting a 404 Not Found to confirm the deletion completed.
  inputs:
    type: object
    required:
    - domainIdentifier
    - identifier
    properties:
      domainIdentifier:
        type: string
        description: The identifier of the domain that owns the project.
      identifier:
        type: string
        description: The identifier of the project to delete.
  steps:
  - stepId: confirmProject
    description: Read the project to confirm it exists before deleting it.
    operationId: getProject
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    - name: identifier
      in: path
      value: $inputs.identifier
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      projectName: $response.body#/name
  - stepId: deleteProject
    description: Delete the confirmed project. A 204 indicates successful deletion.
    operationId: deleteProject
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    - name: identifier
      in: path
      value: $inputs.identifier
    successCriteria:
    - condition: $statusCode == 204
    outputs:
      deletedStatus: $statusCode
  - stepId: verifyGone
    description: >-
      Read the project again expecting a 404 Not Found to confirm the project was
      fully removed.
    operationId: getProject
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    - name: identifier
      in: path
      value: $inputs.identifier
    successCriteria:
    - condition: $statusCode == 404
    outputs:
      finalStatus: $statusCode
  outputs:
    projectName: $steps.confirmProject.outputs.projectName
    finalStatus: $steps.verifyGone.outputs.finalStatus

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-datazone-teardown-project-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.