Amazon Control Tower · Arazzo Workflow

AWS Control Tower Disable Control and Confirm

Version 1.0.0

Disable a control on an organizational unit and poll the async operation until it completes.

1 workflow 1 source API 1 provider
View Spec View on GitHub ComplianceGovernanceLanding ZoneMulti-AccountSecurityControlsArazzoWorkflows

Provider

amazon-control-tower

Workflows

disable-control
Disable a control on an OU and wait for the operation to succeed.
Calls disableControl, then repeatedly checks getControlOperation until the operation status is no longer IN_PROGRESS.
2 steps inputs: controlIdentifier, targetIdentifier outputs: operationIdentifier, operationStatus
1
disableControl
Start the asynchronous disable-control operation on the target OU and capture the operation identifier used for polling.
2
pollControlOperation
Check the status of the disable-control operation. Repeats while the operation is still IN_PROGRESS, and ends the workflow once it has SUCCEEDED.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: AWS Control Tower Disable Control and Confirm
  summary: Disable a control on an organizational unit and poll the async operation until it completes.
  description: >-
    Deactivates a control (guardrail) by removing it from a target organizational
    unit. Disabling a control is asynchronous, so the workflow starts the
    operation, captures the returned operation identifier, and polls the control
    operation until it leaves the IN_PROGRESS state, branching to a terminal step
    once it has SUCCEEDED. 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: controlsApi
  url: ../openapi/amazon-control-tower-controls-api-openapi.yml
  type: openapi
workflows:
- workflowId: disable-control
  summary: Disable a control on an OU and wait for the operation to succeed.
  description: >-
    Calls disableControl, then repeatedly checks getControlOperation until the
    operation status is no longer IN_PROGRESS.
  inputs:
    type: object
    required:
    - controlIdentifier
    - targetIdentifier
    properties:
      controlIdentifier:
        type: string
        description: The ARN of the control (guardrail) to deactivate.
      targetIdentifier:
        type: string
        description: The ARN of the organizational unit to remove the control from.
  steps:
  - stepId: disableControl
    description: >-
      Start the asynchronous disable-control operation on the target OU and
      capture the operation identifier used for polling.
    operationId: disableControl
    requestBody:
      contentType: application/json
      payload:
        controlIdentifier: $inputs.controlIdentifier
        targetIdentifier: $inputs.targetIdentifier
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      operationIdentifier: $response.body#/operationIdentifier
  - stepId: pollControlOperation
    description: >-
      Check the status of the disable-control operation. Repeats while the
      operation is still IN_PROGRESS, and ends the workflow once it has
      SUCCEEDED.
    operationId: getControlOperation
    requestBody:
      contentType: application/json
      payload:
        operationIdentifier: $steps.disableControl.outputs.operationIdentifier
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/controlOperation/status
      operationType: $response.body#/controlOperation/operationType
    onSuccess:
    - name: stillRunning
      type: goto
      stepId: pollControlOperation
      criteria:
      - context: $response.body
        condition: $.controlOperation.status == "IN_PROGRESS"
        type: jsonpath
    - name: operationDone
      type: end
      criteria:
      - context: $response.body
        condition: $.controlOperation.status == "SUCCEEDED"
        type: jsonpath
  outputs:
    operationIdentifier: $steps.disableControl.outputs.operationIdentifier
    operationStatus: $steps.pollControlOperation.outputs.status

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-control-tower-disable-control-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.