Amazon EventBridge Scheduler · Arazzo Workflow

EventBridge Scheduler Tag Schedule Group

Version 1.0.0

Create a schedule group, tag it, then list its tags to confirm.

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

Provider

amazon-eventbridge-scheduler

Workflows

tag-schedule-group
Create a schedule group, tag it, then list its tags.
Provisions a schedule group, applies a set of tags to the group ARN, and reads the tags back from the resource to confirm they were stored.
3 steps inputs: groupName, tags outputs: scheduleGroupArn, tags
1
createGroup
Create the schedule group to be tagged, capturing its ARN for the tagging steps.
2
tagGroup
Assign the supplied tags to the schedule group using the ARN returned at creation.
3
listTags
List the tags now associated with the schedule group to confirm they were applied.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: EventBridge Scheduler Tag Schedule Group
  summary: Create a schedule group, tag it, then list its tags to confirm.
  description: >-
    Creates a schedule group, assigns one or more tags to the group using its
    returned ARN, and then lists the tags on the resource to confirm they were
    applied. Tags can only be assigned to schedule groups in EventBridge
    Scheduler, so this flow uses the group ARN as the tagging resource. 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: tagsApi
  url: ../openapi/amazon-eventbridge-scheduler-tags-api-openapi.yml
  type: openapi
workflows:
- workflowId: tag-schedule-group
  summary: Create a schedule group, tag it, then list its tags.
  description: >-
    Provisions a schedule group, applies a set of tags to the group ARN, and
    reads the tags back from the resource to confirm they were stored.
  inputs:
    type: object
    required:
    - groupName
    - tags
    properties:
      groupName:
        type: string
        description: The name of the schedule group to create and tag.
      tags:
        type: array
        description: The list of Key/Value tag objects to assign to the schedule group.
        items:
          type: object
          properties:
            Key:
              type: string
            Value:
              type: string
  steps:
  - stepId: createGroup
    description: >-
      Create the schedule group to be tagged, capturing its ARN for the tagging
      steps.
    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: tagGroup
    description: >-
      Assign the supplied tags to the schedule group using the ARN returned at
      creation.
    operationId: TagResource
    parameters:
    - name: ResourceArn
      in: path
      value: $steps.createGroup.outputs.scheduleGroupArn
    requestBody:
      contentType: application/json
      payload:
        Tags: $inputs.tags
    successCriteria:
    - condition: $statusCode == 200
  - stepId: listTags
    description: >-
      List the tags now associated with the schedule group to confirm they were
      applied.
    operationId: ListTagsForResource
    parameters:
    - name: ResourceArn
      in: path
      value: $steps.createGroup.outputs.scheduleGroupArn
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      tags: $response.body#/Tags
  outputs:
    scheduleGroupArn: $steps.createGroup.outputs.scheduleGroupArn
    tags: $steps.listTags.outputs.tags

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