Amazon QuickSight · Arazzo Workflow

Amazon QuickSight Audit Dashboard Publish Health

Version 1.0.0

List dashboards, describe one, and branch on whether its version failed to publish.

1 workflow 1 source API 1 provider
View Spec View on GitHub AnalyticsBIBusiness IntelligenceDashboardsMachine-LearningReportingVisualizationArazzoWorkflows

Provider

amazon-quicksight

Workflows

audit-dashboard-publish-health
Detect dashboards whose latest version is in a failed publish state.
Lists the dashboards in an account, describes a target dashboard, and branches to a remediation outcome when its version status indicates a failed publish.
3 steps inputs: AwsAccountId, DashboardId outputs: auditedStatus, remediationVersionNumber
1
listDashboards
List the dashboards in the account so a dashboard id can be resolved for the publish-health check.
2
describeForHealth
Describe the target dashboard and branch on its version status: a failed status routes to remediation, any other status routes to a clean end.
3
flagForRemediation
Re-describe the unhealthy dashboard to capture the failing version number and last updated time for a remediation record.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon QuickSight Audit Dashboard Publish Health
  summary: List dashboards, describe one, and branch on whether its version failed to publish.
  description: >-
    A health check for the dashboards in an account. The workflow lists the
    dashboards, describes a target dashboard (the first listed by default, or one
    pinned by id), and branches on its version status so that dashboards stuck in
    a failed publish state are routed to a remediation outcome while healthy
    dashboards are routed to a clean end. 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: dashboardsApi
  url: ../openapi/amazon-quicksight-dashboards-api-openapi.yml
  type: openapi
workflows:
- workflowId: audit-dashboard-publish-health
  summary: Detect dashboards whose latest version is in a failed publish state.
  description: >-
    Lists the dashboards in an account, describes a target dashboard, and
    branches to a remediation outcome when its version status indicates a failed
    publish.
  inputs:
    type: object
    required:
    - AwsAccountId
    properties:
      AwsAccountId:
        type: string
        description: The AWS account id that contains the dashboards.
      DashboardId:
        type: string
        description: >-
          Optional dashboard id to audit. When omitted the workflow audits the
          first dashboard returned by the list step.
  steps:
  - stepId: listDashboards
    description: >-
      List the dashboards in the account so a dashboard id can be resolved for
      the publish-health check.
    operationId: ListDashboards
    parameters:
    - name: AwsAccountId
      in: path
      value: $inputs.AwsAccountId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      dashboardSummaryList: $response.body#/DashboardSummaryList
      firstDashboardId: $response.body#/DashboardSummaryList/0/DashboardId
  - stepId: describeForHealth
    description: >-
      Describe the target dashboard and branch on its version status: a failed
      status routes to remediation, any other status routes to a clean end.
    operationId: DescribeDashboard
    parameters:
    - name: AwsAccountId
      in: path
      value: $inputs.AwsAccountId
    - name: DashboardId
      in: path
      value: $steps.listDashboards.outputs.firstDashboardId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      dashboardId: $response.body#/DashboardId
      versionStatus: $response.body#/Version/Status
    onSuccess:
    - name: publishFailed
      type: goto
      stepId: flagForRemediation
      criteria:
      - context: $response.body
        condition: $.Version.Status == 'CREATION_FAILED' || $.Version.Status == 'UPDATE_FAILED'
        type: jsonpath
    - name: healthy
      type: end
      criteria:
      - context: $response.body
        condition: $.Version.Status == 'CREATION_SUCCESSFUL' || $.Version.Status == 'UPDATE_SUCCESSFUL'
        type: jsonpath
  - stepId: flagForRemediation
    description: >-
      Re-describe the unhealthy dashboard to capture the failing version number
      and last updated time for a remediation record.
    operationId: DescribeDashboard
    parameters:
    - name: AwsAccountId
      in: path
      value: $inputs.AwsAccountId
    - name: DashboardId
      in: path
      value: $steps.describeForHealth.outputs.dashboardId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      versionNumber: $response.body#/Version/VersionNumber
      versionStatus: $response.body#/Version/Status
      lastUpdatedTime: $response.body#/LastUpdatedTime
  outputs:
    auditedStatus: $steps.describeForHealth.outputs.versionStatus
    remediationVersionNumber: $steps.flagForRemediation.outputs.versionNumber

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-quicksight-audit-dashboard-publish-health-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.