Cross-Provider Workflow

RDS Snapshot to Slack Notification

Version 1.0.0

Snapshot an Amazon RDS database, then notify the team in Slack.

1 workflow 2 source APIs 2 providers
View Spec View on GitHub ArazzoWorkflowsCross-Provider

Providers Orchestrated

amazon-rds slack

Workflows

snapshot-and-notify
Create an RDS snapshot and post a Slack notification.
Creates a manual snapshot of an Amazon RDS DB instance, then posts a backup notification to Slack via chat.postMessage.
2 steps inputs: channel, dbInstanceIdentifier, dbSnapshotIdentifier outputs: messageTs, snapshotStatus
1
create-snapshot
$sourceDescriptions.amazonRdsApi.createDBSnapshot
Create a manual snapshot of the DB instance.
2
notify-slack
$sourceDescriptions.slackChatApi.postChatPostmessage
Notify the team that the backup snapshot was created.

Source API Descriptions

Arazzo Workflow Specification

geo-amazon-rds-snapshot-slack-notify.yml Raw ↑
arazzo: 1.0.1
info:
  title: RDS Snapshot to Slack Notification
  summary: Snapshot an Amazon RDS database, then notify the team in Slack.
  description: >-
    A high-value cross-domain operations workflow that creates a manual snapshot of an
    Amazon RDS database instance and announces the backup to an on-call team in a Slack
    channel. Demonstrates pairing a managed database provider with a team messaging
    provider for backup observability.
  version: 1.0.0
sourceDescriptions:
  - name: amazonRdsApi
    url: https://raw.githubusercontent.com/api-evangelist/amazon-rds/refs/heads/main/openapi/amazon-rds-db-snapshots-api-openapi.yml
    type: openapi
  - name: slackChatApi
    url: https://raw.githubusercontent.com/api-evangelist/slack/refs/heads/main/openapi/slack-chat-api-openapi.yml
    type: openapi
workflows:
  - workflowId: snapshot-and-notify
    summary: Create an RDS snapshot and post a Slack notification.
    description: >-
      Creates a manual snapshot of an Amazon RDS DB instance, then posts a backup
      notification to Slack via chat.postMessage.
    inputs:
      type: object
      properties:
        dbInstanceIdentifier:
          type: string
        dbSnapshotIdentifier:
          type: string
        channel:
          type: string
    steps:
      - stepId: create-snapshot
        description: Create a manual snapshot of the DB instance.
        operationId: $sourceDescriptions.amazonRdsApi.createDBSnapshot
        parameters:
          - name: DBSnapshotIdentifier
            in: query
            value: $inputs.dbSnapshotIdentifier
          - name: DBInstanceIdentifier
            in: query
            value: $inputs.dbInstanceIdentifier
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          snapshotStatus: $statusCode
      - stepId: notify-slack
        description: Notify the team that the backup snapshot was created.
        operationId: $sourceDescriptions.slackChatApi.postChatPostmessage
        requestBody:
          contentType: application/x-www-form-urlencoded
          payload:
            channel: $inputs.channel
            text: A manual RDS snapshot was created successfully.
        successCriteria:
          - condition: $statusCode == 200
          - condition: $response.body#/ok == true
        outputs:
          messageTs: $response.body#/ts
    outputs:
      snapshotStatus: $steps.create-snapshot.outputs.snapshotStatus
      messageTs: $steps.notify-slack.outputs.messageTs

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/geo-amazon-rds-snapshot-slack-notify"
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.