ListCoreDevices
Source:
src/AWS/GreengrassV2/ListCoreDevices.ts
Runtime binding for greengrass:ListCoreDevices.
Enumerates the account’s Greengrass core devices, optionally filtered by
status (HEALTHY / UNHEALTHY), thing group, or nucleus runtime — the
entry point for fleet-health dashboards. Provide the implementation with
Effect.provide(AWS.GreengrassV2.ListCoreDevicesHttp).
Managing Core Devices
Section titled “Managing Core Devices”// init — account-level binding, no resource argumentconst listCoreDevices = yield* AWS.GreengrassV2.ListCoreDevices();
// runtimeconst { coreDevices } = yield* listCoreDevices({ status: "UNHEALTHY" });