import type * as fms from "@distilled.cloud/aws/fms"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Request for {@link DeleteNotificationChannel}. */ export interface DeleteNotificationChannelRequest extends fms.DeleteNotificationChannelRequest { } /** * Runtime binding for `fms:DeleteNotificationChannel`. * * Deletes the Firewall Manager association with the IAM role and SNS topic used to record SNS logs. Provide the * implementation with `Effect.provide(AWS.FMS.DeleteNotificationChannelHttp)`. * ### Notification Channel * **Example:** Delete the Notification Channel * ```typescript * // init — account-level binding takes no resource * const deleteNotificationChannel = yield* AWS.FMS.DeleteNotificationChannel(); * * // runtime * yield* deleteNotificationChannel(); * ``` * * @binding */ export interface DeleteNotificationChannel extends Binding.Service Effect.Effect<(request?: DeleteNotificationChannelRequest) => Effect.Effect>> { } export declare const DeleteNotificationChannel: DeleteNotificationChannel; //# sourceMappingURL=DeleteNotificationChannel.d.ts.map