Skip to content

ScheduleGroup

Source: src/AWS/Scheduler/ScheduleGroup.ts

An EventBridge Scheduler schedule group.

Schedule groups provide a namespace for schedules so higher-level helpers can organize recurring jobs separately from one-shot or operational schedules.

Unlike individual schedules, schedule groups DO support tagging, so alchemy brands its groups with internal tags and uses tag presence to decide whether a foreign group can be adopted (with --adopt/adopt(true)).

const group = yield* ScheduleGroup("Operations", {
tags: {
domain: "ops",
},
});