@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
32 lines (31 loc) • 1.44 kB
TypeScript
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<GetNotificationChannelResult>;
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 SNS to record AWS Firewall Manager activity.
*/
readonly snsRoleName?: string;
/**
* The Amazon Resource Name (ARN) of the SNS topic that collects notifications from AWS Firewall Manager .
*/
readonly snsTopicArn?: 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<GetNotificationChannelResult>;
export interface GetNotificationChannelOutputArgs {
/**
* The Amazon Resource Name (ARN) of the SNS topic that collects notifications from AWS Firewall Manager .
*/
snsTopicArn: pulumi.Input<string>;
}