PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::WAF::ActivatedRule; use Moose; has Action => (is => 'ro', isa => 'Paws::WAF::WafAction'); has ExcludedRules => (is => 'ro', isa => 'ArrayRef[Paws::WAF::ExcludedRule]'); has OverrideAction => (is => 'ro', isa => 'Paws::WAF::WafOverrideAction'); has Priority => (is => 'ro', isa => 'Int', required => 1); has RuleId => (is => 'ro', isa => 'Str', required => 1); has Type => (is => 'ro', isa => 'Str'); 1; ### main pod documentation begin ### =head1 NAME Paws::WAF::ActivatedRule =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::WAF::ActivatedRule object: $service_obj->Method(Att1 => { Action => $value, ..., Type => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::WAF::ActivatedRule object: $result = $service_obj->Method(...); $result->Att1->Action =head1 DESCRIPTION This is B documentation. For more information, see AWS WAF Classic (https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html) in the developer guide. B, use the AWS WAFV2 API and see the AWS WAF Developer Guide (https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html). With the latest version, AWS WAF has a single set of endpoints for regional and global use. The C object in an UpdateWebACL request specifies a C that you want to insert or delete, the priority of the C in the C, and the action that you want AWS WAF to take when a web request matches the C (C, C, or C). To specify whether to insert or delete a C, use the C parameter in the WebACLUpdate data type. =head1 ATTRIBUTES =head2 Action => L Specifies the action that CloudFront or AWS WAF takes when a web request matches the conditions in the C. Valid values for C include the following: =over =item * C: CloudFront responds with the requested object. =item * C: CloudFront responds with an HTTP 403 (Forbidden) status code. =item * C: AWS WAF increments a counter of requests that match the conditions in the rule and then continues to inspect the web request based on the remaining rules in the web ACL. =back C applies only when updating or adding a C to a C. In this case, you do not use C. For all other update requests, C is used instead of C. =head2 ExcludedRules => ArrayRef[L] An array of rules to exclude from a rule group. This is applicable only when the C refers to a C. Sometimes it is necessary to troubleshoot rule groups that are blocking traffic unexpectedly (false positives). One troubleshooting technique is to identify the specific rule within the rule group that is blocking the legitimate traffic and then disable (exclude) that particular rule. You can exclude rules from both your own rule groups and AWS Marketplace rule groups that have been associated with a web ACL. Specifying C does not remove those rules from the rule group. Rather, it changes the action for the rules to C. Therefore, requests that match an C are counted but not blocked. The C owner will receive COUNT metrics for each C. If you want to exclude rules from a rule group that is already associated with a web ACL, perform the following steps: =over =item 1. Use the AWS WAF logs to identify the IDs of the rules that you want to exclude. For more information about the logs, see Logging Web ACL Traffic Information (https://docs.aws.amazon.com/waf/latest/developerguide/logging.html). =item 2. Submit an UpdateWebACL request that has two actions: =over =item * The first action deletes the existing rule group from the web ACL. That is, in the UpdateWebACL request, the first C should be C and C should be the rule group that contains the rules that you want to exclude. =item * The second action inserts the same rule group back in, but specifying the rules to exclude. That is, the second C should be C, C should be the rule group that you just removed, and C should contain the rules that you want to exclude. =back =back =head2 OverrideAction => L Use the C to test your C. Any rule in a C can potentially block a request. If you set the C to C, the C will block a request if any individual rule in the C matches the request and is configured to block that request. However if you first want to test the C, set the C to C. The C will then override any block action specified by individual rules contained within the group. Instead of blocking matching requests, those requests will be counted. You can view a record of counted requests using GetSampledRequests. C applies only when updating or adding a C to a C. In this case you do not use C. For all other update requests, C is used instead of C. =head2 B Priority => Int Specifies the order in which the C in a C are evaluated. Rules with a lower value for C are evaluated before C with a higher value. The value must be a unique integer. If you add multiple C to a C, the values don't need to be consecutive. =head2 B RuleId => Str The C for a C. You use C to get more information about a C (see GetRule), update a C (see UpdateRule), insert a C into a C or delete a one from a C (see UpdateWebACL), or delete a C from AWS WAF (see DeleteRule). C is returned by CreateRule and by ListRules. =head2 Type => Str The rule type, either C, as defined by Rule, C, as defined by RateBasedRule, or C, as defined by RuleGroup. The default is REGULAR. Although this field is optional, be aware that if you try to add a RATE_BASED rule to a web ACL without setting the type, the UpdateWebACL request will fail because the request tries to add a REGULAR rule with the specified ID, which does not exist. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut