Amazon Data Exchange · Arazzo Workflow

Amazon Data Exchange Update Data Set Metadata

Version 1.0.0

Read a data set, update its name and description, and verify the change.

1 workflow 1 source API 1 provider
View Spec View on GitHub Data ExchangeData MarketplaceThird-Party DataAnalyticsSubscriptionArazzoWorkflows

Provider

amazon-data-exchange

Workflows

update-data-set-metadata
Update a data set's name and description and verify the result.
Gets the data set, patches its name and description, and gets it again to confirm the update.
3 steps inputs: dataSetId, description, name outputs: confirmedName, dataSetId, oldName
1
getDataSet
Read the current details of the data set before updating it.
2
updateDataSet
Patch the data set with the new name and description.
3
verifyDataSet
Read the data set back to confirm the new metadata is in effect.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Data Exchange Update Data Set Metadata
  summary: Read a data set, update its name and description, and verify the change.
  description: >-
    A metadata maintenance flow for AWS Data Exchange. The workflow reads the
    current details of a data set, updates its name and description, and reads
    it back to confirm the new values. 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: dataSetsApi
  url: ../openapi/amazon-data-exchange-data-sets-api-openapi.yml
  type: openapi
workflows:
- workflowId: update-data-set-metadata
  summary: Update a data set's name and description and verify the result.
  description: >-
    Gets the data set, patches its name and description, and gets it again to
    confirm the update.
  inputs:
    type: object
    required:
    - dataSetId
    - name
    - description
    properties:
      dataSetId:
        type: string
        description: The ID of the data set to update.
      name:
        type: string
        description: The new name for the data set.
      description:
        type: string
        description: The new description for the data set.
  steps:
  - stepId: getDataSet
    description: >-
      Read the current details of the data set before updating it.
    operationId: getDataSet
    parameters:
    - name: DataSetId
      in: path
      value: $inputs.dataSetId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      oldName: $response.body#/Name
  - stepId: updateDataSet
    description: >-
      Patch the data set with the new name and description.
    operationId: updateDataSet
    parameters:
    - name: DataSetId
      in: path
      value: $inputs.dataSetId
    requestBody:
      contentType: application/json
      payload:
        Name: $inputs.name
        Description: $inputs.description
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedName: $response.body#/Name
      updatedAt: $response.body#/UpdatedAt
  - stepId: verifyDataSet
    description: >-
      Read the data set back to confirm the new metadata is in effect.
    operationId: getDataSet
    parameters:
    - name: DataSetId
      in: path
      value: $inputs.dataSetId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      confirmedName: $response.body#/Name
      confirmedDescription: $response.body#/Description
  outputs:
    dataSetId: $inputs.dataSetId
    oldName: $steps.getDataSet.outputs.oldName
    confirmedName: $steps.verifyDataSet.outputs.confirmedName

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-exchange-update-data-set-metadata-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.