import * as pulumi from "@pulumi/pulumi"; /** * Designates the IAM role and Amazon Simple Notification Service (SNS) topic that AWS Firewall Manager uses to record SNS logs. */ export declare function getNotificationChannel(args: GetNotificationChannelArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetNotificationChannelArgs { /** * The Amazon Resource Name (ARN) of the SNS topic that collects notifications from AWS Firewall Manager . */ snsTopicArn: string; } export interface GetNotificationChannelResult { /** * The Amazon Resource Name (ARN) of the IAM role that allows Amazon to record AWS Firewall Manager activity. */ readonly snsRoleName?: string; } /** * Designates the IAM role and Amazon Simple Notification Service (SNS) topic that AWS Firewall Manager uses to record SNS logs. */ export declare function getNotificationChannelOutput(args: GetNotificationChannelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetNotificationChannelOutputArgs { /** * The Amazon Resource Name (ARN) of the SNS topic that collects notifications from AWS Firewall Manager . */ snsTopicArn: pulumi.Input; }