Amazon DataZone · Arazzo Workflow

Amazon DataZone Rename Project

Version 1.0.0

Read a project, update its description, then read it back to confirm the change.

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

Provider

amazon-datazone

Workflows

rename-project
Update a project's description and confirm it via a read-back.
Reads the current project, patches its description, and re-reads the project to confirm the updated metadata was persisted.
3 steps inputs: domainIdentifier, identifier, newDescription outputs: confirmedDescription, previousDescription
1
readProject
Read the project to capture its current name and description.
2
updateProject
Apply the new description to the project.
3
confirmUpdate
Re-read the project to confirm the new description persisted.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon DataZone Rename Project
  summary: Read a project, update its description, then read it back to confirm the change.
  description: >-
    Edits a DataZone project's metadata safely. It first reads the project to
    capture its current name and description, applies an update with the new
    description, and then reads the project again to confirm the change took
    effect. This read-update-read pattern gives callers a verifiable mutation of
    project metadata. 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: rename-project
  summary: Update a project's description and confirm it via a read-back.
  description: >-
    Reads the current project, patches its description, and re-reads the project
    to confirm the updated metadata was persisted.
  inputs:
    type: object
    required:
    - domainIdentifier
    - identifier
    - newDescription
    properties:
      domainIdentifier:
        type: string
        description: The identifier of the domain that owns the project.
      identifier:
        type: string
        description: The identifier of the project to update.
      newDescription:
        type: string
        description: The new description to apply to the project.
  steps:
  - stepId: readProject
    description: Read the project to capture its current name and description.
    operationId: getProject
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    - name: identifier
      in: path
      value: $inputs.identifier
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      currentName: $response.body#/name
      currentDescription: $response.body#/description
  - stepId: updateProject
    description: Apply the new description to the project.
    operationId: updateProject
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    - name: identifier
      in: path
      value: $inputs.identifier
    requestBody:
      contentType: application/json
      payload:
        description: $inputs.newDescription
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedDescription: $response.body#/description
  - stepId: confirmUpdate
    description: Re-read the project to confirm the new description persisted.
    operationId: getProject
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    - name: identifier
      in: path
      value: $inputs.identifier
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.description == "$inputs.newDescription"
      type: jsonpath
    outputs:
      confirmedDescription: $response.body#/description
  outputs:
    previousDescription: $steps.readProject.outputs.currentDescription
    confirmedDescription: $steps.confirmUpdate.outputs.confirmedDescription

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-rename-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.