Skip to content

ListManagedNotificationChildEvents

Source: src/AWS/Notifications/ListManagedNotificationChildEvents.ts

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).

// init — account-level binding takes no resource
const listManagedNotificationChildEvents =
yield* AWS.Notifications.ListManagedNotificationChildEvents();
// runtime
const result = yield* listManagedNotificationChildEvents({
aggregateManagedNotificationEventArn: aggregateArn,
});
const children = result.managedNotificationChildEvents;