Skip to content

ListManagedNotificationConfigurations

Source: src/AWS/Notifications/ListManagedNotificationConfigurations.ts

Runtime binding for notifications:ListManagedNotificationConfigurations.

List the AWS-managed notification configurations (the AWS Health Security/Operations/Issue/Billing categories), optionally filtered by an associated channel. Provide the implementation with Effect.provide(AWS.Notifications.ListManagedNotificationConfigurationsHttp).

// init — account-level binding takes no resource
const listManagedNotificationConfigurations =
yield* AWS.Notifications.ListManagedNotificationConfigurations();
// runtime
const result = yield* listManagedNotificationConfigurations();
const names = result.managedNotificationConfigurations.map((c) => c.name);