Amazon Neptune · Arazzo Workflow

Amazon Neptune ML Model Transform Job

Version 1.0.0

Launch a Neptune ML model transform job from a trained model and poll it to completion.

1 workflow 1 source API 1 provider
View Spec View on GitHub DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQLArazzoWorkflows

Provider

amazon-neptune

Workflows

ml-model-transform
Create a model transform job, poll until Completed, and confirm it is listed.
Creates a model transform job from a training job, polls until it completes, and lists transform jobs.
3 steps inputs: mlModelTrainingJobId, modelTransformOutputS3Location outputs: transformJobId, transformStatus
1
startTransform
Create a model transform job that reads the training job's output and writes transform artifacts to S3.
2
pollTransform
Poll the transform job status. Retry while it is still in progress and continue once its status is Completed.
3
listTransforms
List the active model transform jobs to confirm the transform job ran.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Neptune ML Model Transform Job
  summary: Launch a Neptune ML model transform job from a trained model and poll it to completion.
  description: >-
    Generates model artifacts for inference from a completed model training job.
    The workflow creates a model transform job that reads a training job's output,
    polls the transform job status on a loop until it is Completed, and then lists
    the active transform jobs to confirm the job ran. The poll loop uses a retry
    delay to handle the in-progress state. 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-610.60
  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-610.60
      capability_name: Artificial Intelligence Management
      spec: amazon-neptune-model-transform-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: modelTransformApi
  url: ../openapi/amazon-neptune-model-transform-api-openapi.yml
  type: openapi
workflows:
- workflowId: ml-model-transform
  summary: Create a model transform job, poll until Completed, and confirm it is listed.
  description: >-
    Creates a model transform job from a training job, polls until it completes,
    and lists transform jobs.
  inputs:
    type: object
    required:
    - mlModelTrainingJobId
    - modelTransformOutputS3Location
    properties:
      mlModelTrainingJobId:
        type: string
        description: Job ID of the completed model training job.
      modelTransformOutputS3Location:
        type: string
        description: S3 location for transform output artifacts.
  steps:
  - stepId: startTransform
    description: >-
      Create a model transform job that reads the training job's output and
      writes transform artifacts to S3.
    operationId: createModelTransformJob
    requestBody:
      contentType: application/json
      payload:
        mlModelTrainingJobId: $inputs.mlModelTrainingJobId
        modelTransformOutputS3Location: $inputs.modelTransformOutputS3Location
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      transformJobId: $response.body#/id
  - stepId: pollTransform
    description: >-
      Poll the transform job status. Retry while it is still in progress and
      continue once its status is Completed.
    operationId: getModelTransformJobStatus
    parameters:
    - name: id
      in: path
      value: $steps.startTransform.outputs.transformJobId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      transformStatus: $response.body#/status
    onSuccess:
    - name: transformRunning
      type: retry
      retryAfter: 60
      retryLimit: 120
      criteria:
      - context: $response.body
        condition: $.status != "Completed"
        type: jsonpath
    - name: transformDone
      type: goto
      stepId: listTransforms
      criteria:
      - context: $response.body
        condition: $.status == "Completed"
        type: jsonpath
  - stepId: listTransforms
    description: >-
      List the active model transform jobs to confirm the transform job ran.
    operationId: listModelTransformJobs
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      transformJobIds: $response.body#/ids
  outputs:
    transformJobId: $steps.startTransform.outputs.transformJobId
    transformStatus: $steps.pollTransform.outputs.transformStatus

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-neptune-ml-model-transform-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.