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)

101 lines 5.8 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, Object.assign(Object.assign({}, 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 || args.defaultAction === undefined) && !opts.urn) { throw new Error("Missing required property 'defaultAction'"); } if ((!args || args.scope === undefined) && !opts.urn) { throw new Error("Missing required property 'scope'"); } if ((!args || args.visibilityConfig === undefined) && !opts.urn) { throw new Error("Missing required property 'visibilityConfig'"); } resourceInputs["associationConfig"] = args ? args.associationConfig : undefined; resourceInputs["captchaConfig"] = args ? args.captchaConfig : undefined; resourceInputs["challengeConfig"] = args ? args.challengeConfig : undefined; resourceInputs["customResponseBodies"] = args ? args.customResponseBodies : undefined; resourceInputs["dataProtectionConfig"] = args ? args.dataProtectionConfig : undefined; resourceInputs["defaultAction"] = args ? args.defaultAction : undefined; resourceInputs["description"] = args ? args.description : undefined; resourceInputs["name"] = args ? args.name : undefined; resourceInputs["onSourceDDoSProtectionConfig"] = args ? args.onSourceDDoSProtectionConfig : undefined; resourceInputs["rules"] = args ? args.rules : undefined; resourceInputs["scope"] = args ? args.scope : undefined; resourceInputs["tags"] = args ? args.tags : undefined; resourceInputs["tokenDomains"] = args ? args.tokenDomains : undefined; resourceInputs["visibilityConfig"] = args ? args.visibilityConfig : undefined; resourceInputs["arn"] = undefined /*out*/; resourceInputs["awsId"] = undefined /*out*/; resourceInputs["capacity"] = undefined /*out*/; resourceInputs["labelNamespace"] = undefined /*out*/; } else { 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