com.pulumi.aws.wafv2.RuleGroupArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.wafv2;
import com.pulumi.aws.wafv2.inputs.RuleGroupCustomResponseBodyArgs;
import com.pulumi.aws.wafv2.inputs.RuleGroupRuleArgs;
import com.pulumi.aws.wafv2.inputs.RuleGroupVisibilityConfigArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class RuleGroupArgs extends com.pulumi.resources.ResourceArgs {
public static final RuleGroupArgs Empty = new RuleGroupArgs();
/**
* The web ACL capacity units (WCUs) required for this rule group. See [here](https://docs.aws.amazon.com/waf/latest/APIReference/API_CreateRuleGroup.html#API_CreateRuleGroup_RequestSyntax) for general information and [here](https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-statements-list.html) for capacity specific information.
*
*/
@Import(name="capacity", required=true)
private Output capacity;
/**
* @return The web ACL capacity units (WCUs) required for this rule group. See [here](https://docs.aws.amazon.com/waf/latest/APIReference/API_CreateRuleGroup.html#API_CreateRuleGroup_RequestSyntax) for general information and [here](https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-statements-list.html) for capacity specific information.
*
*/
public Output capacity() {
return this.capacity;
}
/**
* Defines custom response bodies that can be referenced by `custom_response` actions. See Custom Response Body below for details.
*
*/
@Import(name="customResponseBodies")
private @Nullable Output> customResponseBodies;
/**
* @return Defines custom response bodies that can be referenced by `custom_response` actions. See Custom Response Body below for details.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy