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).
Reading AWS-Managed Notifications
Section titled “Reading AWS-Managed Notifications”// init — account-level binding takes no resourceconst listManagedNotificationConfigurations = yield* AWS.Notifications.ListManagedNotificationConfigurations();
// runtimeconst result = yield* listManagedNotificationConfigurations();const names = result.managedNotificationConfigurations.map((c) => c.name);