Skip to content

PutNotificationChannel

Source: src/AWS/FMS/PutNotificationChannel.ts

Runtime binding for fms:PutNotificationChannel.

Designates the SNS topic and IAM role that Firewall Manager uses to record SNS logs — the channel through which Firewall Manager notifications flow. Provide the implementation with Effect.provide(AWS.FMS.PutNotificationChannelHttp).

// init — account-level binding takes no resource
const putNotificationChannel = yield* AWS.FMS.PutNotificationChannel();
// runtime
yield* putNotificationChannel({
SnsTopicArn: topicArn,
SnsRoleName: roleArn,
});