typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 693 B
JavaScript
;
// CloudFormation Resource AWS::FMS::NotificationChannel
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotificationChannel_Type = void 0;
const base_1 = require("../../base");
exports.NotificationChannel_Type = 'AWS::FMS::NotificationChannel';
/**
* Designates the IAM role and Amazon Simple Notification Service (SNS)
* topic that AWS Firewall Manager uses to record SNS logs. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html}
*/
function NotificationChannel(props) {
return new base_1.CfnResource(exports.NotificationChannel_Type, props);
}
exports.default = NotificationChannel;