Skip to content

ListChannels

Source: src/AWS/Notifications/ListChannels.ts

Runtime binding for notifications:ListChannels.

List the delivery channel ARNs associated with a notification configuration. Provide the implementation with Effect.provide(AWS.Notifications.ListChannelsHttp).

// init — bind the operation to the configuration
const listChannels = yield* AWS.Notifications.ListChannels(config);
// runtime
const result = yield* listChannels();
const channelArns = result.channels;