Amazon EventBridge Scheduler · Arazzo Workflow

EventBridge Scheduler Provision Grouped Schedule

Version 1.0.0

Create a schedule group, add a schedule to it, then read the schedule back.

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

Provider

amazon-eventbridge-scheduler

Workflows

provision-grouped-schedule
Create a schedule group, create a schedule within it, then get the schedule.
Creates a named schedule group, provisions a schedule that targets a resource within that group, and reads the schedule back to confirm its group association and target.
3 steps inputs: description, groupName, roleArn, scheduleExpression, scheduleExpressionTimezone, scheduleName, targetArn outputs: scheduleArn, scheduleGroupArn, state
1
createGroup
Create the schedule group that the new schedule will belong to.
2
createSchedule
Create a schedule inside the newly created group. The schedule requires a flexible time window mode, a schedule expression, and a target.
3
getSchedule
Retrieve the schedule from the group to confirm it was created and is associated with the expected group.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: EventBridge Scheduler Provision Grouped Schedule
  summary: Create a schedule group, add a schedule to it, then read the schedule back.
  description: >-
    Stands up an isolated schedule group, creates a recurring or one-time
    schedule inside that group, and then retrieves the schedule to confirm it
    was registered against the group. This is the canonical EventBridge
    Scheduler onboarding flow: group first, schedule second, verification last.
    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
- name: schedulesApi
  url: ../openapi/amazon-eventbridge-scheduler-schedules-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-grouped-schedule
  summary: Create a schedule group, create a schedule within it, then get the schedule.
  description: >-
    Creates a named schedule group, provisions a schedule that targets a
    resource within that group, and reads the schedule back to confirm its
    group association and target.
  inputs:
    type: object
    required:
    - groupName
    - scheduleName
    - scheduleExpression
    - targetArn
    - roleArn
    properties:
      groupName:
        type: string
        description: The name of the schedule group to create and associate the schedule with.
      scheduleName:
        type: string
        description: The name of the schedule to create.
      scheduleExpression:
        type: string
        description: The expression that defines when the schedule runs (at/rate/cron).
      scheduleExpressionTimezone:
        type: string
        description: The timezone in which the scheduling expression is evaluated.
      targetArn:
        type: string
        description: The Amazon Resource Name (ARN) of the schedule target.
      roleArn:
        type: string
        description: The ARN of the IAM role EventBridge Scheduler uses to invoke the target.
      description:
        type: string
        description: The description to assign to the schedule.
  steps:
  - stepId: createGroup
    description: >-
      Create the schedule group that the new schedule will belong to.
    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: createSchedule
    description: >-
      Create a schedule inside the newly created group. The schedule requires a
      flexible time window mode, a schedule expression, and a target.
    operationId: CreateSchedule
    parameters:
    - name: Name
      in: path
      value: $inputs.scheduleName
    requestBody:
      contentType: application/json
      payload:
        GroupName: $inputs.groupName
        ScheduleExpression: $inputs.scheduleExpression
        ScheduleExpressionTimezone: $inputs.scheduleExpressionTimezone
        Description: $inputs.description
        FlexibleTimeWindow:
          Mode: 'OFF'
        State: ENABLED
        Target:
          Arn: $inputs.targetArn
          RoleArn: $inputs.roleArn
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      scheduleArn: $response.body#/ScheduleArn
  - stepId: getSchedule
    description: >-
      Retrieve the schedule from the group to confirm it was created and is
      associated with the expected group.
    operationId: GetSchedule
    parameters:
    - name: Name
      in: path
      value: $inputs.scheduleName
    - name: groupName
      in: query
      value: $inputs.groupName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      scheduleName: $response.body#/Name
      groupName: $response.body#/GroupName
      arn: $response.body#/Arn
      state: $response.body#/State
  outputs:
    scheduleGroupArn: $steps.createGroup.outputs.scheduleGroupArn
    scheduleArn: $steps.createSchedule.outputs.scheduleArn
    state: $steps.getSchedule.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-provision-grouped-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.