ListManagedNotificationEvents
Source:
src/AWS/Notifications/ListManagedNotificationEvents.ts
Runtime binding for notifications:ListManagedNotificationEvents.
List the account’s AWS-managed notification events (AWS Health security,
operations, billing and issue notifications), optionally filtered by time
range, source, or related account. Provide the implementation with
Effect.provide(AWS.Notifications.ListManagedNotificationEventsHttp).
Reading AWS-Managed Notifications
Section titled “Reading AWS-Managed Notifications”// init — account-level binding takes no resourceconst listManagedNotificationEvents = yield* AWS.Notifications.ListManagedNotificationEvents();
// runtimeconst result = yield* listManagedNotificationEvents({ startTime: new Date(Date.now() - 7 * 24 * 3600 * 1000),});const count = result.managedNotificationEvents.length;