Amazon DataZone · Arazzo Workflow

Amazon DataZone Catalog a Data Asset

Version 1.0.0

Create a data asset in a project and read it back to confirm cataloging.

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

Provider

amazon-datazone

Workflows

catalog-asset
Create a data asset under a project and confirm it via a read-back.
Creates a data asset owned by the given project and type, then fetches the asset detail to confirm the catalog entry exists.
2 steps inputs: description, domainIdentifier, name, owningProjectIdentifier, typeIdentifier outputs: assetId, assetName
1
createAsset
Register the data asset in the catalog under the owning project.
2
confirmAsset
Read the asset back to confirm it was cataloged successfully.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon DataZone Catalog a Data Asset
  summary: Create a data asset in a project and read it back to confirm cataloging.
  description: >-
    Registers a new data asset in the Amazon DataZone catalog under an owning
    project and then reads the asset back to verify it was stored with the
    expected name and type. This is the core catalog-a-dataset pattern used when
    onboarding a relational table or other data product into a governed domain.
    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-datazone-assets-api-openapi.yml
  type: openapi
workflows:
- workflowId: catalog-asset
  summary: Create a data asset under a project and confirm it via a read-back.
  description: >-
    Creates a data asset owned by the given project and type, then fetches the
    asset detail to confirm the catalog entry exists.
  inputs:
    type: object
    required:
    - domainIdentifier
    - owningProjectIdentifier
    - name
    - typeIdentifier
    properties:
      domainIdentifier:
        type: string
        description: The identifier of the domain that owns the catalog.
      owningProjectIdentifier:
        type: string
        description: The identifier of the project that owns the asset.
      name:
        type: string
        description: The name of the data asset to catalog.
      description:
        type: string
        description: An optional description of the data asset.
      typeIdentifier:
        type: string
        description: The asset type identifier (e.g. amazon.datazone.RelationalTable).
  steps:
  - stepId: createAsset
    description: Register the data asset in the catalog under the owning project.
    operationId: createAsset
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
        description: $inputs.description
        domainIdentifier: $inputs.domainIdentifier
        owningProjectIdentifier: $inputs.owningProjectIdentifier
        typeIdentifier: $inputs.typeIdentifier
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      assetId: $response.body#/id
  - stepId: confirmAsset
    description: Read the asset back to confirm it was cataloged successfully.
    operationId: getAsset
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    - name: identifier
      in: path
      value: $steps.createAsset.outputs.assetId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      assetName: $response.body#/name
      owningProjectId: $response.body#/owningProjectId
      createdAt: $response.body#/createdAt
  outputs:
    assetId: $steps.createAsset.outputs.assetId
    assetName: $steps.confirmAsset.outputs.assetName

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