typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
15 lines (14 loc) • 579 B
JavaScript
;
// CloudFormation Resource AWS::CloudWatch::InsightRule
Object.defineProperty(exports, "__esModule", { value: true });
exports.InsightRule_Type = void 0;
const base_1 = require("../../base");
exports.InsightRule_Type = 'AWS::CloudWatch::InsightRule';
/**
* Resource Type definition for AWS::CloudWatch::InsightRule {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html}
*/
function InsightRule(props) {
return new base_1.CfnResource(exports.InsightRule_Type, props);
}
exports.default = InsightRule;