typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 553 B
JavaScript
;
// CloudFormation Resource AWS::WAFv2::IPSet
Object.defineProperty(exports, "__esModule", { value: true });
exports.IPSet_Type = void 0;
const base_1 = require("../../base");
exports.IPSet_Type = 'AWS::WAFv2::IPSet';
/**
* Contains a list of IP addresses. This can be either IPV4 or IPV6. The
* list will be mutually {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-ipset.html}
*/
function IPSet(props) {
return new base_1.CfnResource(exports.IPSet_Type, props);
}
exports.default = IPSet;