Amazon Data Exchange · Arazzo Workflow

Amazon Data Exchange Tag New Data Set

Version 1.0.0

Create a data set, apply governance tags to it, and read the tags back.

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

Provider

amazon-data-exchange

Workflows

tag-new-data-set
Create a data set, tag it, and verify the tags.
Creates a data set, adds the supplied tags to its ARN via the tagging API, and lists the tags to confirm.
3 steps inputs: assetType, description, name, tags outputs: appliedTags, dataSetArn, dataSetId
1
createDataSet
Create the new data set that will be tagged.
2
tagDataSet
Apply the supplied governance tags to the data set's ARN.
3
listTags
Read the tags back from the data set ARN to confirm they were applied.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Data Exchange Tag New Data Set
  summary: Create a data set, apply governance tags to it, and read the tags back.
  description: >-
    A governance flow for AWS Data Exchange. The workflow creates a new data
    set, applies a set of resource tags to the data set's ARN, and then reads
    the tags back to confirm they were applied. 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
- name: tagsApi
  url: ../openapi/amazon-data-exchange-tags-api-openapi.yml
  type: openapi
workflows:
- workflowId: tag-new-data-set
  summary: Create a data set, tag it, and verify the tags.
  description: >-
    Creates a data set, adds the supplied tags to its ARN via the tagging API,
    and lists the tags to confirm.
  inputs:
    type: object
    required:
    - name
    - description
    - tags
    properties:
      name:
        type: string
        description: The name for the new data set.
      description:
        type: string
        description: The description for the new data set.
      assetType:
        type: string
        description: The asset type for the data set.
        default: S3_SNAPSHOT
      tags:
        type: object
        description: A map of tag key/value pairs to apply to the data set.
  steps:
  - stepId: createDataSet
    description: >-
      Create the new data set that will be tagged.
    operationId: createDataSet
    requestBody:
      contentType: application/json
      payload:
        Name: $inputs.name
        Description: $inputs.description
        AssetType: $inputs.assetType
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      dataSetArn: $response.body#/Arn
      dataSetId: $response.body#/Id
  - stepId: tagDataSet
    description: >-
      Apply the supplied governance tags to the data set's ARN.
    operationId: tagResource
    parameters:
    - name: resourceArn
      in: path
      value: $steps.createDataSet.outputs.dataSetArn
    requestBody:
      contentType: application/json
      payload:
        Tags: $inputs.tags
    successCriteria:
    - condition: $statusCode == 204
    outputs:
      tagStatus: $statusCode
  - stepId: listTags
    description: >-
      Read the tags back from the data set ARN to confirm they were applied.
    operationId: listTagsForResource
    parameters:
    - name: resourceArn
      in: path
      value: $steps.createDataSet.outputs.dataSetArn
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      appliedTags: $response.body#/Tags
  outputs:
    dataSetId: $steps.createDataSet.outputs.dataSetId
    dataSetArn: $steps.createDataSet.outputs.dataSetArn
    appliedTags: $steps.listTags.outputs.appliedTags

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-tag-new-data-set-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.