ListEntityEvents
Source:
src/AWS/ApplicationSignals/ListEntityEvents.ts
Runtime binding for application-signals:ListEntityEvents.
Lists change events (deployments, configuration changes, and other
state-changing activities) for a specific entity. Provide the
implementation with
Effect.provide(AWS.ApplicationSignals.ListEntityEventsHttp).
Tracking Changes
Section titled “Tracking Changes”// init — account-level, no resource argumentconst listEntityEvents = yield* AWS.ApplicationSignals.ListEntityEvents();
// runtimeconst page = yield* listEntityEvents({ Entity: { Type: "Service", Name: "checkout-service", Environment: "eks:prod", }, StartTime: new Date(Date.now() - 24 * 3600_000), EndTime: new Date(),});