Amazon EventBridge Scheduler · Arazzo Workflow

EventBridge Scheduler List Inspect And Delete Schedule

Version 1.0.0

List schedules in a group, inspect the first match, then delete it.

1 workflow 1 source API 1 provider
View Spec View on GitHub Amazon Web ServicesCronEvent-DrivenSchedulingServerlessArazzoWorkflows

Provider

amazon-eventbridge-scheduler

Workflows

list-inspect-delete-schedule
List schedules in a group, get the first one, then delete it.
Filters schedules by group and name prefix, and when at least one schedule matches, retrieves its detail and deletes it. When no schedule matches the flow ends cleanly.
3 steps inputs: groupName, maxResults, namePrefix outputs: deletedScheduleArn, deletedScheduleName
1
listSchedules
List the schedules associated with the supplied group, optionally filtered by a name prefix, returning at most the requested number of results.
2
getSchedule
Retrieve the full detail of the first matched schedule before deleting it.
3
deleteSchedule
Delete the matched schedule from the group.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: EventBridge Scheduler List Inspect And Delete Schedule
  summary: List schedules in a group, inspect the first match, then delete it.
  description: >-
    Lists the schedules in a group filtered by a name prefix, then branches on
    whether any schedules were returned. When a schedule is found the flow
    retrieves its full detail and deletes it; when the list is empty the flow
    ends without making any changes. 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: schedulesApi
  url: ../openapi/amazon-eventbridge-scheduler-schedules-api-openapi.yml
  type: openapi
workflows:
- workflowId: list-inspect-delete-schedule
  summary: List schedules in a group, get the first one, then delete it.
  description: >-
    Filters schedules by group and name prefix, and when at least one schedule
    matches, retrieves its detail and deletes it. When no schedule matches the
    flow ends cleanly.
  inputs:
    type: object
    required:
    - groupName
    properties:
      groupName:
        type: string
        description: The schedule group whose schedules are listed and from which the match is deleted.
      namePrefix:
        type: string
        description: Schedule name prefix used to filter the listing.
      maxResults:
        type: integer
        description: The maximum number of schedules to return in the listing.
  steps:
  - stepId: listSchedules
    description: >-
      List the schedules associated with the supplied group, optionally filtered
      by a name prefix, returning at most the requested number of results.
    operationId: ListSchedules
    parameters:
    - name: ScheduleGroup
      in: query
      value: $inputs.groupName
    - name: NamePrefix
      in: query
      value: $inputs.namePrefix
    - name: MaxResults
      in: query
      value: $inputs.maxResults
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      matchedScheduleName: $response.body#/Schedules/0/Name
      schedules: $response.body#/Schedules
    onSuccess:
    - name: scheduleFound
      type: goto
      stepId: getSchedule
      criteria:
      - context: $response.body
        condition: $.Schedules.length > 0
        type: jsonpath
    - name: noSchedules
      type: end
      criteria:
      - context: $response.body
        condition: $.Schedules.length == 0
        type: jsonpath
  - stepId: getSchedule
    description: >-
      Retrieve the full detail of the first matched schedule before deleting it.
    operationId: GetSchedule
    parameters:
    - name: Name
      in: path
      value: $steps.listSchedules.outputs.matchedScheduleName
    - name: groupName
      in: query
      value: $inputs.groupName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      scheduleName: $response.body#/Name
      arn: $response.body#/Arn
  - stepId: deleteSchedule
    description: >-
      Delete the matched schedule from the group.
    operationId: DeleteSchedule
    parameters:
    - name: Name
      in: path
      value: $steps.getSchedule.outputs.scheduleName
    - name: groupName
      in: query
      value: $inputs.groupName
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    deletedScheduleName: $steps.getSchedule.outputs.scheduleName
    deletedScheduleArn: $steps.getSchedule.outputs.arn

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-eventbridge-scheduler-list-inspect-delete-schedule-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.