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