Amazon HealthImaging · Arazzo Workflow

Amazon HealthImaging Provision Data Store

Version 1.0.0

Create a data store and poll until it becomes ACTIVE before use.

1 workflow 1 source API 1 provider
View Spec View on GitHub HealthcareHIPAAMachine-LearningMedical ImagingDICOMArazzoWorkflows

Provider

amazon-healthimaging

Workflows

provision-datastore
Create a HealthImaging data store and wait until it is ACTIVE.
Creates a data store with the supplied name and idempotency token, then polls the data store properties until the data store reaches the ACTIVE state or fails provisioning.
3 steps inputs: clientToken, datastoreName, kmsKeyArn outputs: datastoreArn, datastoreId, datastoreStatus
1
createDatastore
Create the data store. The response returns the new data store identifier and its initial status (typically CREATING).
2
pollDatastore
Read the data store properties and check whether provisioning has completed. Repeats while the data store is still CREATING.
3
provisioningFailed
Terminal step reached when the data store reported CREATE_FAILED. Reads the properties one final time to surface the failed status.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon HealthImaging Provision Data Store
  summary: Create a data store and poll until it becomes ACTIVE before use.
  description: >-
    Provisions a new AWS HealthImaging data store and waits for it to finish
    provisioning. The workflow creates the data store, then repeatedly reads the
    data store properties until the status transitions from CREATING to ACTIVE.
    If provisioning fails the flow branches to a terminal failure. 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
  x-realizes-capability-ids:
  - BC-2860.30
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-2860.30
      capability_name: Diagnostic Imaging Services
      spec: amazon-healthimaging-datastore-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: datastoreApi
  url: ../openapi/amazon-healthimaging-datastore-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-datastore
  summary: Create a HealthImaging data store and wait until it is ACTIVE.
  description: >-
    Creates a data store with the supplied name and idempotency token, then
    polls the data store properties until the data store reaches the ACTIVE
    state or fails provisioning.
  inputs:
    type: object
    required:
    - datastoreName
    - clientToken
    properties:
      datastoreName:
        type: string
        description: The human readable name for the new data store.
      clientToken:
        type: string
        description: A unique idempotency token for the create request.
      kmsKeyArn:
        type: string
        description: Optional ARN of a KMS key used to encrypt the data store.
  steps:
  - stepId: createDatastore
    description: >-
      Create the data store. The response returns the new data store identifier
      and its initial status (typically CREATING).
    operationId: CreateDatastore
    requestBody:
      contentType: application/json
      payload:
        datastoreName: $inputs.datastoreName
        clientToken: $inputs.clientToken
        kmsKeyArn: $inputs.kmsKeyArn
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      datastoreId: $response.body#/datastoreId
      datastoreStatus: $response.body#/datastoreStatus
  - stepId: pollDatastore
    description: >-
      Read the data store properties and check whether provisioning has
      completed. Repeats while the data store is still CREATING.
    operationId: GetDatastore
    parameters:
    - name: datastoreId
      in: path
      value: $steps.createDatastore.outputs.datastoreId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      datastoreStatus: $response.body#/datastoreProperties/datastoreStatus
      datastoreArn: $response.body#/datastoreProperties/datastoreArn
    onSuccess:
    - name: datastoreActive
      type: end
      criteria:
      - context: $response.body
        condition: $.datastoreProperties.datastoreStatus == "ACTIVE"
        type: jsonpath
    - name: datastoreFailed
      type: goto
      stepId: provisioningFailed
      criteria:
      - context: $response.body
        condition: $.datastoreProperties.datastoreStatus == "CREATE_FAILED"
        type: jsonpath
    - name: stillCreating
      type: goto
      stepId: pollDatastore
      criteria:
      - context: $response.body
        condition: $.datastoreProperties.datastoreStatus == "CREATING"
        type: jsonpath
  - stepId: provisioningFailed
    description: >-
      Terminal step reached when the data store reported CREATE_FAILED. Reads
      the properties one final time to surface the failed status.
    operationId: GetDatastore
    parameters:
    - name: datastoreId
      in: path
      value: $steps.createDatastore.outputs.datastoreId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      datastoreStatus: $response.body#/datastoreProperties/datastoreStatus
  outputs:
    datastoreId: $steps.createDatastore.outputs.datastoreId
    datastoreStatus: $steps.pollDatastore.outputs.datastoreStatus
    datastoreArn: $steps.pollDatastore.outputs.datastoreArn

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-healthimaging-provision-datastore-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.