import type * as datazone from "@distilled.cloud/aws/datazone"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Domain } from "./Domain.ts"; export interface ListNotificationsRequest extends Omit { } /** * 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)`. * ### Portal, Profiles & Notifications * **Example:** Read Pending Tasks * ```typescript * // init — bind the operation to the domain * const listNotifications = yield* AWS.DataZone.ListNotifications(domain); * * // runtime * const tasks = yield* listNotifications({ type: "TASK", taskStatus: "ACTIVE" }); * ``` * * @binding */ export interface ListNotifications extends Binding.Service Effect.Effect<(request: ListNotificationsRequest) => Effect.Effect>> { } export declare const ListNotifications: ListNotifications; //# sourceMappingURL=ListNotifications.d.ts.map