Amazon OpenSearch Service · Arazzo Workflow

Amazon OpenSearch Service Clone a Domain Engine Version

Version 1.0.0

Read a source domain's engine version and create a new domain that matches it.

1 workflow 1 source API 1 provider
View Spec View on GitHub AnalyticsElasticsearchFull-Text SearchLog AnalyticsOpenSearchSearchArazzoWorkflows

Provider

amazon-opensearch-service

Workflows

clone-domain-engine-version
Mirror a source domain's engine version onto a new domain.
Describes the source domain, creates a new domain pinned to the source engine version, and polls the new domain until its endpoint is ready.
3 steps inputs: clusterConfig, ebsOptions, sourceDomainName, targetDomainName outputs: cloneDomainId, cloneEndpoint, sourceEngineVersion
1
describeSource
Describe the source domain to capture the engine version that the new domain should match.
2
createClone
Create the target domain pinned to the source domain's engine version, using the supplied cluster configuration and EBS options.
3
pollClone
Describe the new domain until it reports a published endpoint, looping while the endpoint remains empty.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon OpenSearch Service Clone a Domain Engine Version
  summary: Read a source domain's engine version and create a new domain that matches it.
  description: >-
    Stands up a replacement or parallel domain that mirrors an existing one. The
    workflow describes a source domain to capture its engine version, then
    creates a new domain pinned to that same engine version with a caller
    supplied cluster configuration, and finally polls the new domain until its
    endpoint is published. Because the underlying API exposes engine version on
    the domain status, the clone is driven from that field rather than from a
    full configuration copy. Each 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-opensearch-service-domains-api-openapi.yml
  type: openapi
workflows:
- workflowId: clone-domain-engine-version
  summary: Mirror a source domain's engine version onto a new domain.
  description: >-
    Describes the source domain, creates a new domain pinned to the source
    engine version, and polls the new domain until its endpoint is ready.
  inputs:
    type: object
    required:
    - sourceDomainName
    - targetDomainName
    properties:
      sourceDomainName:
        type: string
        description: Name of the existing domain to read the engine version from.
      targetDomainName:
        type: string
        description: Name of the new domain to create.
      clusterConfig:
        type: object
        description: Container for the new domain's cluster configuration.
      ebsOptions:
        type: object
        description: Container for the new domain's EBS-based storage options.
  steps:
  - stepId: describeSource
    description: >-
      Describe the source domain to capture the engine version that the new
      domain should match.
    operationId: DescribeDomain
    parameters:
    - name: domainName
      in: path
      value: $inputs.sourceDomainName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      sourceEngineVersion: $response.body#/EngineVersion
      sourceArn: $response.body#/ARN
  - stepId: createClone
    description: >-
      Create the target domain pinned to the source domain's engine version,
      using the supplied cluster configuration and EBS options.
    operationId: CreateDomain
    requestBody:
      contentType: application/json
      payload:
        DomainName: $inputs.targetDomainName
        EngineVersion: $steps.describeSource.outputs.sourceEngineVersion
        ClusterConfig: $inputs.clusterConfig
        EBSOptions: $inputs.ebsOptions
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      cloneDomainId: $response.body#/DomainId
      cloneArn: $response.body#/ARN
  - stepId: pollClone
    description: >-
      Describe the new domain until it reports a published endpoint, looping
      while the endpoint remains empty.
    operationId: DescribeDomain
    parameters:
    - name: domainName
      in: path
      value: $inputs.targetDomainName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      endpoint: $response.body#/Endpoint
      engineVersion: $response.body#/EngineVersion
    onSuccess:
    - name: cloneReady
      type: end
      criteria:
      - context: $response.body
        condition: $.Created == true && $.Endpoint != null
        type: jsonpath
    - name: cloneWaiting
      type: goto
      stepId: pollClone
      criteria:
      - context: $response.body
        condition: $.Endpoint == null
        type: jsonpath
  outputs:
    sourceEngineVersion: $steps.describeSource.outputs.sourceEngineVersion
    cloneDomainId: $steps.createClone.outputs.cloneDomainId
    cloneEndpoint: $steps.pollClone.outputs.endpoint

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-opensearch-service-clone-domain-engine-version-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.