Amazon RDS · Arazzo Workflow

Amazon RDS Clean Up a DB Snapshot

Version 1.0.0

Confirm a manual snapshot is available, delete it, then verify removal.

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

Provider

amazon-rds

Workflows

clean-up-snapshot
Delete a manual DB snapshot and verify it has been removed.
Confirms the snapshot is an available manual snapshot, deletes it, then re-lists manual snapshots for the source instance to verify removal.
3 steps inputs: dbInstanceIdentifier, dbSnapshotIdentifier outputs: snapshotType
1
confirmSnapshot
Describe the snapshot to confirm it is an available manual snapshot before deleting it.
2
deleteSnapshot
Delete the confirmed manual snapshot.
3
verifyRemoval
Re-list the manual snapshots for the source DB instance to verify the deleted snapshot no longer appears.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon RDS Clean Up a DB Snapshot
  summary: Confirm a manual snapshot is available, delete it, then verify removal.
  description: >-
    Removes a manual DB snapshot that is no longer needed and confirms it is
    gone. The workflow describes the snapshot to confirm it is a deletable
    manual snapshot in the available state, deletes it, and re-describes
    snapshots for the source instance to verify the snapshot no longer appears.
    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: dbSnapshotsApi
  url: ../openapi/amazon-rds-db-snapshots-api-openapi.yml
  type: openapi
workflows:
- workflowId: clean-up-snapshot
  summary: Delete a manual DB snapshot and verify it has been removed.
  description: >-
    Confirms the snapshot is an available manual snapshot, deletes it, then
    re-lists manual snapshots for the source instance to verify removal.
  inputs:
    type: object
    required:
    - dbSnapshotIdentifier
    - dbInstanceIdentifier
    properties:
      dbSnapshotIdentifier:
        type: string
        description: The identifier of the manual DB snapshot to delete.
      dbInstanceIdentifier:
        type: string
        description: The source DB instance whose snapshots are re-listed to verify removal.
  steps:
  - stepId: confirmSnapshot
    description: >-
      Describe the snapshot to confirm it is an available manual snapshot before
      deleting it.
    operationId: describeDBSnapshots
    parameters:
    - name: DBSnapshotIdentifier
      in: query
      value: $inputs.dbSnapshotIdentifier
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.dBSnapshots[0].status == 'available'
      type: jsonpath
    - context: $response.body
      condition: $.dBSnapshots[0].snapshotType == 'manual'
      type: jsonpath
    outputs:
      snapshotType: $response.body#/dBSnapshots/0/snapshotType
  - stepId: deleteSnapshot
    description: >-
      Delete the confirmed manual snapshot.
    operationId: deleteDBSnapshot
    parameters:
    - name: DBSnapshotIdentifier
      in: query
      value: $inputs.dbSnapshotIdentifier
    successCriteria:
    - condition: $statusCode == 200
  - stepId: verifyRemoval
    description: >-
      Re-list the manual snapshots for the source DB instance to verify the
      deleted snapshot no longer appears.
    operationId: describeDBSnapshots
    parameters:
    - name: DBInstanceIdentifier
      in: query
      value: $inputs.dbInstanceIdentifier
    - name: SnapshotType
      in: query
      value: manual
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      remainingMarker: $response.body#/marker
  outputs:
    snapshotType: $steps.confirmSnapshot.outputs.snapshotType

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-clean-up-snapshot-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.