Amazon RDS · Arazzo Workflow

Amazon RDS Rotate Master Password

Version 1.0.0

Reset the master user password immediately and poll until the instance stabilizes.

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

Provider

amazon-rds

Workflows

rotate-master-password
Reset a DB instance master password and wait for it to apply.
Confirms the instance is available, modifies the master user password with ApplyImmediately, then polls until DescribeDBInstances reports the instance available again.
3 steps inputs: dbInstanceIdentifier, masterUserPassword outputs: masterUsername, status
1
confirmInstance
describeDBInstances
Describe the DB instance to confirm it is available before rotating the master credentials.
2
resetPassword
modifyDBInstance
Submit the modify request setting the new master user password with the change applied immediately.
3
pollInstance
describeDBInstances
Describe the DB instance and inspect its status. While the instance is still resetting credentials 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 Rotate Master Password
  summary: Reset the master user password immediately and poll until the instance stabilizes.
  description: >-
    Rotates the master user password for a DB instance and waits for the
    credential change to apply. The workflow confirms the instance is available,
    submits a modify request setting a new MasterUserPassword with
    ApplyImmediately, and polls DescribeDBInstances until the status settles back
    to available, looping while the instance is still resetting credentials.
    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: amazonRdsApi
  url: ../openapi/amazon-rds-openapi.yml
  type: openapi
workflows:
- workflowId: rotate-master-password
  summary: Reset a DB instance master password and wait for it to apply.
  description: >-
    Confirms the instance is available, modifies the master user password with
    ApplyImmediately, then polls until DescribeDBInstances reports the instance
    available again.
  inputs:
    type: object
    required:
    - dbInstanceIdentifier
    - masterUserPassword
    properties:
      dbInstanceIdentifier:
        type: string
        description: The identifier of the DB instance to rotate credentials for.
      masterUserPassword:
        type: string
        description: The new password to set for the master database user.
  steps:
  - stepId: confirmInstance
    description: >-
      Describe the DB instance to confirm it is available before rotating the
      master credentials.
    operationId: describeDBInstances
    parameters:
    - name: DBInstanceIdentifier
      in: query
      value: $inputs.dbInstanceIdentifier
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.dBInstances[0].dBInstanceStatus == 'available'
      type: jsonpath
    outputs:
      masterUsername: $response.body#/dBInstances/0/masterUsername
  - stepId: resetPassword
    description: >-
      Submit the modify request setting the new master user password with the
      change applied immediately.
    operationId: modifyDBInstance
    parameters:
    - name: DBInstanceIdentifier
      in: query
      value: $inputs.dbInstanceIdentifier
    - name: MasterUserPassword
      in: query
      value: $inputs.masterUserPassword
    - name: ApplyImmediately
      in: query
      value: true
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      pendingStatus: $response.body#/dBInstance/dBInstanceStatus
  - stepId: pollInstance
    description: >-
      Describe the DB instance and inspect its status. While the instance is
      still resetting credentials 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
    onSuccess:
    - name: stillApplying
      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:
    status: $steps.pollInstance.outputs.status
    masterUsername: $steps.confirmInstance.outputs.masterUsername

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-rotate-master-password-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 email required.

A second provider on the same verified email joins the account you already have.