Skip to content

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).

// init — account-level, no resource argument
const listEntityEvents = yield* AWS.ApplicationSignals.ListEntityEvents();
// runtime
const page = yield* listEntityEvents({
Entity: {
Type: "Service",
Name: "checkout-service",
Environment: "eks:prod",
},
StartTime: new Date(Date.now() - 24 * 3600_000),
EndTime: new Date(),
});