UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

103 lines 5.63 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.WebAcl = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Contains the Rules that identify the requests that you want to allow, block, or count. In a WebACL, you also specify a default action (ALLOW or BLOCK), and the action for each Rule that you add to a WebACL, for example, block requests from specified IP addresses or block requests from specified referrers. You also associate the WebACL with a CloudFront distribution to identify the requests that you want AWS WAF to filter. If you add more than one Rule to a WebACL, a request needs to match only one of the specifications to be allowed, blocked, or counted. */ class WebAcl extends pulumi.CustomResource { /** * Get an existing WebAcl resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name, id, opts) { return new WebAcl(name, undefined, { ...opts, id: id }); } /** * Returns true if the given object is an instance of WebAcl. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === WebAcl.__pulumiType; } /** * Create a WebAcl resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name, args, opts) { let resourceInputs = {}; opts = opts || {}; if (!opts.id) { if (args?.defaultAction === undefined && !opts.urn) { throw new Error("Missing required property 'defaultAction'"); } if (args?.scope === undefined && !opts.urn) { throw new Error("Missing required property 'scope'"); } if (args?.visibilityConfig === undefined && !opts.urn) { throw new Error("Missing required property 'visibilityConfig'"); } resourceInputs["applicationConfig"] = args?.applicationConfig; resourceInputs["associationConfig"] = args?.associationConfig; resourceInputs["captchaConfig"] = args?.captchaConfig; resourceInputs["challengeConfig"] = args?.challengeConfig; resourceInputs["customResponseBodies"] = args?.customResponseBodies; resourceInputs["dataProtectionConfig"] = args?.dataProtectionConfig; resourceInputs["defaultAction"] = args?.defaultAction; resourceInputs["description"] = args?.description; resourceInputs["name"] = args?.name; resourceInputs["onSourceDDoSProtectionConfig"] = args?.onSourceDDoSProtectionConfig; resourceInputs["rules"] = args?.rules; resourceInputs["scope"] = args?.scope; resourceInputs["tags"] = args?.tags; resourceInputs["tokenDomains"] = args?.tokenDomains; resourceInputs["visibilityConfig"] = args?.visibilityConfig; resourceInputs["arn"] = undefined /*out*/; resourceInputs["awsId"] = undefined /*out*/; resourceInputs["capacity"] = undefined /*out*/; resourceInputs["labelNamespace"] = undefined /*out*/; } else { resourceInputs["applicationConfig"] = undefined /*out*/; resourceInputs["arn"] = undefined /*out*/; resourceInputs["associationConfig"] = undefined /*out*/; resourceInputs["awsId"] = undefined /*out*/; resourceInputs["capacity"] = undefined /*out*/; resourceInputs["captchaConfig"] = undefined /*out*/; resourceInputs["challengeConfig"] = undefined /*out*/; resourceInputs["customResponseBodies"] = undefined /*out*/; resourceInputs["dataProtectionConfig"] = undefined /*out*/; resourceInputs["defaultAction"] = undefined /*out*/; resourceInputs["description"] = undefined /*out*/; resourceInputs["labelNamespace"] = undefined /*out*/; resourceInputs["name"] = undefined /*out*/; resourceInputs["onSourceDDoSProtectionConfig"] = undefined /*out*/; resourceInputs["rules"] = undefined /*out*/; resourceInputs["scope"] = undefined /*out*/; resourceInputs["tags"] = undefined /*out*/; resourceInputs["tokenDomains"] = undefined /*out*/; resourceInputs["visibilityConfig"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const replaceOnChanges = { replaceOnChanges: ["name", "scope"] }; opts = pulumi.mergeOptions(opts, replaceOnChanges); super(WebAcl.__pulumiType, name, resourceInputs, opts); } } exports.WebAcl = WebAcl; /** @internal */ WebAcl.__pulumiType = 'aws-native:wafv2:WebAcl'; //# sourceMappingURL=webAcl.js.map