Amazon DataZone · Arazzo Workflow

Amazon DataZone Onboard Data Workspace

Version 1.0.0

Create a project, catalog an asset, and provision an environment in one workspace flow.

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

Provider

amazon-datazone

Workflows

onboard-data-workspace
Create project, catalog asset, and provision an ACTIVE environment.
Creates a project in the domain, catalogs an asset under it, creates an environment from a profile, and waits until that environment reports ACTIVE.
4 steps inputs: assetName, domainIdentifier, environmentName, environmentProfileIdentifier, projectName, typeIdentifier outputs: assetId, environmentId, projectId
1
createProject
Create the project that anchors the new workspace.
2
catalogAsset
Catalog the first data asset under the new project.
3
createEnvironment
Provision an analytics environment for the project from the supplied profile. The environment starts in the CREATING state.
4
waitForEnvironment
List the project's environments and repeat until the created environment reports ACTIVE.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon DataZone Onboard Data Workspace
  summary: Create a project, catalog an asset, and provision an environment in one workspace flow.
  description: >-
    Onboards a complete analytics workspace inside an existing Amazon DataZone
    domain. It creates a project, catalogs a first data asset under that project,
    provisions an analytics environment from a profile, and polls the project's
    environment list until the environment is ACTIVE. The result is a project
    that already has data and a ready compute environment. 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
- name: environmentsApi
  url: ../openapi/amazon-datazone-environments-api-openapi.yml
  type: openapi
- name: projectsApi
  url: ../openapi/amazon-datazone-projects-api-openapi.yml
  type: openapi
workflows:
- workflowId: onboard-data-workspace
  summary: Create project, catalog asset, and provision an ACTIVE environment.
  description: >-
    Creates a project in the domain, catalogs an asset under it, creates an
    environment from a profile, and waits until that environment reports ACTIVE.
  inputs:
    type: object
    required:
    - domainIdentifier
    - projectName
    - assetName
    - typeIdentifier
    - environmentName
    - environmentProfileIdentifier
    properties:
      domainIdentifier:
        type: string
        description: The identifier of the existing domain to onboard into.
      projectName:
        type: string
        description: The name of the project to create.
      assetName:
        type: string
        description: The name of the first asset to catalog under the project.
      typeIdentifier:
        type: string
        description: The asset type identifier (e.g. amazon.datazone.RelationalTable).
      environmentName:
        type: string
        description: The name of the analytics environment to provision.
      environmentProfileIdentifier:
        type: string
        description: The environment profile that defines the environment blueprint.
  steps:
  - stepId: createProject
    description: Create the project that anchors the new workspace.
    operationId: createProject
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.projectName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      projectId: $response.body#/id
  - stepId: catalogAsset
    description: Catalog the first data asset under the new project.
    operationId: createAsset
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.assetName
        domainIdentifier: $inputs.domainIdentifier
        owningProjectIdentifier: $steps.createProject.outputs.projectId
        typeIdentifier: $inputs.typeIdentifier
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      assetId: $response.body#/id
  - stepId: createEnvironment
    description: >-
      Provision an analytics environment for the project from the supplied
      profile. The environment starts in the CREATING state.
    operationId: createEnvironment
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.environmentName
        domainIdentifier: $inputs.domainIdentifier
        projectIdentifier: $steps.createProject.outputs.projectId
        environmentProfileIdentifier: $inputs.environmentProfileIdentifier
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      environmentId: $response.body#/id
  - stepId: waitForEnvironment
    description: >-
      List the project's environments and repeat until the created environment
      reports ACTIVE.
    operationId: listEnvironments
    parameters:
    - name: domainIdentifier
      in: path
      value: $inputs.domainIdentifier
    - name: projectIdentifier
      in: query
      value: $steps.createProject.outputs.projectId
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.items[?(@.id == "$steps.createEnvironment.outputs.environmentId")].status == "ACTIVE"
      type: jsonpath
    outputs:
      environments: $response.body#/items
  outputs:
    projectId: $steps.createProject.outputs.projectId
    assetId: $steps.catalogAsset.outputs.assetId
    environmentId: $steps.createEnvironment.outputs.environmentId

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-onboard-data-workspace-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.