Amazon EventBridge Scheduler · Arazzo Workflow

EventBridge Scheduler Schedule Group Lifecycle

Version 1.0.0

Create a schedule group, confirm it, then delete it.

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

Provider

amazon-eventbridge-scheduler

Workflows

schedule-group-lifecycle
Create a schedule group, get it, then delete it.
Provisions a schedule group, reads it back to confirm creation and capture its state, and then removes it.
3 steps inputs: groupName outputs: deletedGroupName, scheduleGroupArn, stateBeforeDelete
1
createGroup
Create the schedule group.
2
getGroup
Retrieve the schedule group to confirm it exists and capture its current state before deletion.
3
deleteGroup
Delete the schedule group, which also removes any schedules associated with it.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: EventBridge Scheduler Schedule Group Lifecycle
  summary: Create a schedule group, confirm it, then delete it.
  description: >-
    Exercises the full lifecycle of a schedule group: create the group, retrieve
    it to confirm it reached an active state, and then delete it. Deleting a
    group also deletes every schedule associated with it, so this flow is a clean
    way to provision and tear down an isolated grouping. 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: scheduleGroupsApi
  url: ../openapi/amazon-eventbridge-scheduler-schedule-groups-api-openapi.yml
  type: openapi
workflows:
- workflowId: schedule-group-lifecycle
  summary: Create a schedule group, get it, then delete it.
  description: >-
    Provisions a schedule group, reads it back to confirm creation and capture
    its state, and then removes it.
  inputs:
    type: object
    required:
    - groupName
    properties:
      groupName:
        type: string
        description: The name of the schedule group to create, confirm, and delete.
  steps:
  - stepId: createGroup
    description: >-
      Create the schedule group.
    operationId: CreateScheduleGroup
    parameters:
    - name: Name
      in: path
      value: $inputs.groupName
    requestBody:
      contentType: application/json
      payload:
        Tags: []
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      scheduleGroupArn: $response.body#/ScheduleGroupArn
  - stepId: getGroup
    description: >-
      Retrieve the schedule group to confirm it exists and capture its current
      state before deletion.
    operationId: GetScheduleGroup
    parameters:
    - name: Name
      in: path
      value: $inputs.groupName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      groupName: $response.body#/Name
      groupArn: $response.body#/Arn
      state: $response.body#/State
  - stepId: deleteGroup
    description: >-
      Delete the schedule group, which also removes any schedules associated
      with it.
    operationId: DeleteScheduleGroup
    parameters:
    - name: Name
      in: path
      value: $inputs.groupName
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    scheduleGroupArn: $steps.createGroup.outputs.scheduleGroupArn
    deletedGroupName: $steps.getGroup.outputs.groupName
    stateBeforeDelete: $steps.getGroup.outputs.state

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-schedule-group-lifecycle-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.