Amazon RDS · Arazzo Workflow

Amazon RDS Verify Engine Support Then Provision

Version 1.0.0

Validate the engine version is offered, then provision an instance and wait.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Cloud DatabasesDatabase ServiceDatabase-as-a-ServiceManaged DatabasesRelational DatabasesArazzoWorkflows

Provider

amazon-rds

Workflows

verify-engine-then-provision
Confirm an engine version is offered, then create and await a DB instance.
Describes available engine versions, creates an instance pinned to the validated engine version, then polls DescribeDBInstances until available.
3 steps inputs: allocatedStorage, dbInstanceClass, dbInstanceIdentifier, engine, engineVersion, masterUserPassword, masterUsername outputs: engineVersion, instanceId, status
1
verifyEngineVersion
Describe the available engine versions for the supplied engine and version to confirm the combination is offered before provisioning.
2
createInstance
Create the DB instance pinned to the validated engine and engine version with the supplied class, credentials and storage.
3
pollInstance
Describe the DB instance and inspect its status. While the instance is still creating the workflow loops back to poll again; once it is available the flow ends.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon RDS Verify Engine Support Then Provision
  summary: Validate the engine version is offered, then provision an instance and wait.
  description: >-
    Guards a provisioning request by first confirming the requested engine and
    version are actually offered before creating anything. The workflow describes
    the available engine versions for the engine, confirms the requested version
    appears as the default-or-listed option, creates the DB instance with that
    validated engine version, and polls DescribeDBInstances until it is available.
    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: dbEngineVersionsApi
  url: ../openapi/amazon-rds-db-engine-versions-api-openapi.yml
  type: openapi
- name: dbInstancesApi
  url: ../openapi/amazon-rds-db-instances-api-openapi.yml
  type: openapi
workflows:
- workflowId: verify-engine-then-provision
  summary: Confirm an engine version is offered, then create and await a DB instance.
  description: >-
    Describes available engine versions, creates an instance pinned to the
    validated engine version, then polls DescribeDBInstances until available.
  inputs:
    type: object
    required:
    - dbInstanceIdentifier
    - dbInstanceClass
    - engine
    - engineVersion
    - masterUsername
    - masterUserPassword
    - allocatedStorage
    properties:
      dbInstanceIdentifier:
        type: string
        description: The unique identifier for the new DB instance.
      dbInstanceClass:
        type: string
        description: The compute and memory capacity class (e.g. db.m5.large).
      engine:
        type: string
        description: The database engine to validate and provision.
      engineVersion:
        type: string
        description: The engine version to validate and pin on the new instance.
      masterUsername:
        type: string
        description: The name for the master database user.
      masterUserPassword:
        type: string
        description: The password for the master database user.
      allocatedStorage:
        type: integer
        description: The storage to allocate in gibibytes (GiB).
  steps:
  - stepId: verifyEngineVersion
    description: >-
      Describe the available engine versions for the supplied engine and version
      to confirm the combination is offered before provisioning.
    operationId: describeDBEngineVersions
    parameters:
    - name: Engine
      in: query
      value: $inputs.engine
    - name: EngineVersion
      in: query
      value: $inputs.engineVersion
    successCriteria:
    - condition: $statusCode == 200
  - stepId: createInstance
    description: >-
      Create the DB instance pinned to the validated engine and engine version
      with the supplied class, credentials and storage.
    operationId: createDBInstance
    parameters:
    - name: DBInstanceIdentifier
      in: query
      value: $inputs.dbInstanceIdentifier
    - name: DBInstanceClass
      in: query
      value: $inputs.dbInstanceClass
    - name: Engine
      in: query
      value: $inputs.engine
    - name: EngineVersion
      in: query
      value: $inputs.engineVersion
    - name: MasterUsername
      in: query
      value: $inputs.masterUsername
    - name: MasterUserPassword
      in: query
      value: $inputs.masterUserPassword
    - name: AllocatedStorage
      in: query
      value: $inputs.allocatedStorage
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      instanceId: $response.body#/dBInstance/dBInstanceIdentifier
  - stepId: pollInstance
    description: >-
      Describe the DB instance and inspect its status. While the instance is
      still creating the workflow loops back to poll again; once it is available
      the flow ends.
    operationId: describeDBInstances
    parameters:
    - name: DBInstanceIdentifier
      in: query
      value: $inputs.dbInstanceIdentifier
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/dBInstances/0/dBInstanceStatus
      engineVersion: $response.body#/dBInstances/0/engineVersion
    onSuccess:
    - name: stillCreating
      type: goto
      stepId: pollInstance
      criteria:
      - context: $response.body
        condition: $.dBInstances[0].dBInstanceStatus != 'available'
        type: jsonpath
    - name: available
      type: end
      criteria:
      - context: $response.body
        condition: $.dBInstances[0].dBInstanceStatus == 'available'
        type: jsonpath
  outputs:
    instanceId: $steps.createInstance.outputs.instanceId
    status: $steps.pollInstance.outputs.status
    engineVersion: $steps.pollInstance.outputs.engineVersion

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-rds-verify-engine-then-provision-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.