import type * as notifications from "@distilled.cloud/aws/notifications"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Request for {@link ListManagedNotificationChildEvents}. */ export interface ListManagedNotificationChildEventsRequest extends notifications.ListManagedNotificationChildEventsRequest { } /** * Runtime binding for `notifications:ListManagedNotificationChildEvents`. * * List the child events of one aggregated AWS-managed notification event. * Provide the implementation with * `Effect.provide(AWS.Notifications.ListManagedNotificationChildEventsHttp)`. * ### Reading AWS-Managed Notifications * **Example:** List an Aggregate Event's Children * ```typescript * // init — account-level binding takes no resource * const listManagedNotificationChildEvents = * yield* AWS.Notifications.ListManagedNotificationChildEvents(); * * // runtime * const result = yield* listManagedNotificationChildEvents({ * aggregateManagedNotificationEventArn: aggregateArn, * }); * const children = result.managedNotificationChildEvents; * ``` * * @binding */ export interface ListManagedNotificationChildEvents extends Binding.Service Effect.Effect<(request: ListManagedNotificationChildEventsRequest) => Effect.Effect>> { } export declare const ListManagedNotificationChildEvents: ListManagedNotificationChildEvents; //# sourceMappingURL=ListManagedNotificationChildEvents.d.ts.map