Skip to content

ListManagedNotificationChannelAssociations

Source: src/AWS/Notifications/ListManagedNotificationChannelAssociations.ts

Runtime binding for notifications:ListManagedNotificationChannelAssociations.

List the account contacts and channels associated with an AWS-managed notification configuration. Provide the implementation with Effect.provide(AWS.Notifications.ListManagedNotificationChannelAssociationsHttp).

// init — account-level binding takes no resource
const listManagedNotificationChannelAssociations =
yield* AWS.Notifications.ListManagedNotificationChannelAssociations();
// runtime
const result = yield* listManagedNotificationChannelAssociations({
managedNotificationConfigurationArn: managedConfigArn,
});
const channels = result.channelAssociations;