Amazon Data Exchange · Arazzo Workflow

Amazon Data Exchange Rename Revision Asset

Version 1.0.0

Locate an asset in a revision and rename it to a new asset name.

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

Provider

amazon-data-exchange

Workflows

rename-revision-asset
Rename the first asset of a revision to a supplied name.
Lists the assets in the revision, reads the first asset, and renames it via an asset update.
3 steps inputs: dataSetId, newName, revisionId outputs: assetId, newName, oldName
1
listAssets
List the assets in the revision to locate the asset to rename.
2
getAsset
Read the current details of the asset before renaming it.
3
renameAsset
Update the asset with the new name.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Data Exchange Rename Revision Asset
  summary: Locate an asset in a revision and rename it to a new asset name.
  description: >-
    A small maintenance flow for AWS Data Exchange. The workflow lists the
    assets in a revision, reads the first asset's current details, and then
    updates that asset with a new name. 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: assetsApi
  url: ../openapi/amazon-data-exchange-assets-api-openapi.yml
  type: openapi
workflows:
- workflowId: rename-revision-asset
  summary: Rename the first asset of a revision to a supplied name.
  description: >-
    Lists the assets in the revision, reads the first asset, and renames it via
    an asset update.
  inputs:
    type: object
    required:
    - dataSetId
    - revisionId
    - newName
    properties:
      dataSetId:
        type: string
        description: The ID of the data set that owns the revision.
      revisionId:
        type: string
        description: The ID of the revision whose asset is renamed.
      newName:
        type: string
        description: The new name to assign to the asset.
  steps:
  - stepId: listAssets
    description: >-
      List the assets in the revision to locate the asset to rename.
    operationId: listRevisionAssets
    parameters:
    - name: DataSetId
      in: path
      value: $inputs.dataSetId
    - name: RevisionId
      in: path
      value: $inputs.revisionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstAssetId: $response.body#/Assets/0/Id
  - stepId: getAsset
    description: >-
      Read the current details of the asset before renaming it.
    operationId: getAsset
    parameters:
    - name: DataSetId
      in: path
      value: $inputs.dataSetId
    - name: RevisionId
      in: path
      value: $inputs.revisionId
    - name: AssetId
      in: path
      value: $steps.listAssets.outputs.firstAssetId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      oldName: $response.body#/Name
  - stepId: renameAsset
    description: >-
      Update the asset with the new name.
    operationId: updateAsset
    parameters:
    - name: DataSetId
      in: path
      value: $inputs.dataSetId
    - name: RevisionId
      in: path
      value: $inputs.revisionId
    - name: AssetId
      in: path
      value: $steps.listAssets.outputs.firstAssetId
    requestBody:
      contentType: application/json
      payload:
        Name: $inputs.newName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedName: $response.body#/Name
      updatedAt: $response.body#/UpdatedAt
  outputs:
    assetId: $steps.listAssets.outputs.firstAssetId
    oldName: $steps.getAsset.outputs.oldName
    newName: $steps.renameAsset.outputs.updatedName

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