Amazon DataZone · Arazzo Workflow

Amazon DataZone Provision Domain

Version 1.0.0

Create a DataZone domain and poll until it becomes AVAILABLE.

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

Provider

amazon-datazone

Workflows

provision-domain
Create a DataZone domain and wait for it to reach AVAILABLE status.
Creates a domain with the supplied name and execution role, then repeatedly reads the domain until its status is AVAILABLE before returning its identifier and portal URL.
2 steps inputs: description, domainExecutionRole, name outputs: arn, domainId, portalUrl, status
1
createDomain
Submit the request to create the DataZone domain. The domain is created asynchronously and starts in the CREATING state.
2
pollDomain
Read the domain detail until provisioning completes. Repeats while the status is still CREATING and proceeds once it reaches AVAILABLE.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon DataZone Provision Domain
  summary: Create a DataZone domain and poll until it becomes AVAILABLE.
  description: >-
    Stands up a new Amazon DataZone domain, the organizational boundary that
    holds a data catalog and governance policies. The workflow submits the
    create request, then polls the domain detail endpoint until the asynchronous
    provisioning transitions from CREATING to AVAILABLE so callers know the
    domain is ready to host projects. 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: domainsApi
  url: ../openapi/amazon-datazone-domains-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-domain
  summary: Create a DataZone domain and wait for it to reach AVAILABLE status.
  description: >-
    Creates a domain with the supplied name and execution role, then repeatedly
    reads the domain until its status is AVAILABLE before returning its
    identifier and portal URL.
  inputs:
    type: object
    required:
    - name
    - domainExecutionRole
    properties:
      name:
        type: string
        description: The name of the DataZone domain to create.
      description:
        type: string
        description: An optional human-readable description of the domain.
      domainExecutionRole:
        type: string
        description: ARN of the IAM role DataZone uses to execute domain operations.
  steps:
  - stepId: createDomain
    description: >-
      Submit the request to create the DataZone domain. The domain is created
      asynchronously and starts in the CREATING state.
    operationId: createDomain
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
        description: $inputs.description
        domainExecutionRole: $inputs.domainExecutionRole
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      domainId: $response.body#/id
      initialStatus: $response.body#/status
  - stepId: pollDomain
    description: >-
      Read the domain detail until provisioning completes. Repeats while the
      status is still CREATING and proceeds once it reaches AVAILABLE.
    operationId: getDomain
    parameters:
    - name: domainIdentifier
      in: path
      value: $steps.createDomain.outputs.domainId
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.status == "AVAILABLE"
      type: jsonpath
    outputs:
      status: $response.body#/status
      portalUrl: $response.body#/portalUrl
      arn: $response.body#/arn
  outputs:
    domainId: $steps.createDomain.outputs.domainId
    status: $steps.pollDomain.outputs.status
    portalUrl: $steps.pollDomain.outputs.portalUrl
    arn: $steps.pollDomain.outputs.arn

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-provision-domain-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.