Skip to content

ListNotifications

Source: src/AWS/DataZone/ListNotifications.ts

Runtime binding for datazone:ListNotifications.

Lists task or event notifications for the calling user in the bound domain. The domain id is injected from the binding. Provide the implementation with Effect.provide(AWS.DataZone.ListNotificationsHttp).

// init — bind the operation to the domain
const listNotifications = yield* AWS.DataZone.ListNotifications(domain);
// runtime
const tasks = yield* listNotifications({ type: "TASK", taskStatus: "ACTIVE" });