GetManagedNotificationEvent
Source:
src/AWS/Notifications/GetManagedNotificationEvent.ts
Runtime binding for notifications:GetManagedNotificationEvent.
Fetch one AWS-managed notification event (AWS Health security,
operations, billing and issue notifications) by its ARN. Provide the
implementation with
Effect.provide(AWS.Notifications.GetManagedNotificationEventHttp).
Reading AWS-Managed Notifications
Section titled “Reading AWS-Managed Notifications”// init — account-level binding takes no resourceconst getManagedNotificationEvent = yield* AWS.Notifications.GetManagedNotificationEvent();
// runtimeconst event = yield* getManagedNotificationEvent({ arn: eventArn });const headline = event.content.messageComponents.headline;