Group
Source:
src/AWS/Synthetics/Group.ts
A CloudWatch Synthetics group — associates canaries (including cross-Region canaries) so you can view aggregated run results and manage them as a unit. A group can hold as many as 10 canaries, and an account can have as many as 20 groups.
Creating Groups
Section titled “Creating Groups”Group of Canaries
import * as Synthetics from "alchemy/AWS/Synthetics";
const group = yield* Synthetics.Group("ApiCanaries", { members: [checkoutCanary.canaryArn, searchCanary.canaryArn],});Empty Group with Tags
const group = yield* Synthetics.Group("Fleet", { tags: { team: "platform" },});