typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
17 lines (16 loc) • 731 B
JavaScript
;
// CloudFormation Resource AWS::WAFv2::RegexPatternSet
Object.defineProperty(exports, "__esModule", { value: true });
exports.RegexPatternSet_Type = void 0;
const base_1 = require("../../base");
exports.RegexPatternSet_Type = 'AWS::WAFv2::RegexPatternSet';
/**
* Contains a list of Regular expressions based on the provided inputs.
* RegexPatternSet can be used with other WAF entities with
* RegexPatternSetReferenceStatement to perform other actions . {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-regexpatternset.html}
*/
function RegexPatternSet(props) {
return new base_1.CfnResource(exports.RegexPatternSet_Type, props);
}
exports.default = RegexPatternSet;