GetNotificationEvent
Source:
src/AWS/Notifications/GetNotificationEvent.ts
Runtime binding for notifications:GetNotificationEvent.
Fetch one notification event (headline, message components, source event
metadata) by its ARN. Provide the implementation with
Effect.provide(AWS.Notifications.GetNotificationEventHttp).
Reading Notification Events
Section titled “Reading Notification Events”// init — account-level binding takes no resourceconst getNotificationEvent = yield* AWS.Notifications.GetNotificationEvent();
// runtimeconst event = yield* getNotificationEvent({ arn: eventArn });const headline = event.content.messageComponents.headline;