typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 632 B
JavaScript
;
// CloudFormation Resource AWS::WAFv2::WebACLAssociation
Object.defineProperty(exports, "__esModule", { value: true });
exports.WebACLAssociation_Type = void 0;
const base_1 = require("../../base");
exports.WebACLAssociation_Type = 'AWS::WAFv2::WebACLAssociation';
/**
* Associates WebACL to Application Load Balancer, CloudFront or API
* Gateway. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html}
*/
function WebACLAssociation(props) {
return new base_1.CfnResource(exports.WebACLAssociation_Type, props);
}
exports.default = WebACLAssociation;