aws-cdk-lib.aws_wafregional.CfnWebACL.ActionProperty

interface ActionProperty

LanguageType name
.NETAmazon.CDK.AWS.WAFRegional.CfnWebACL.ActionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awswafregional#CfnWebACL_ActionProperty
Javasoftware.amazon.awscdk.services.waf.regional.CfnWebACL.ActionProperty
Pythonaws_cdk.aws_wafregional.CfnWebACL.ActionProperty
TypeScript aws-cdk-lib » aws_wafregional » CfnWebACL » ActionProperty

Specifies the action AWS WAF takes when a web request matches or doesn't match all rule conditions.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wafregional as wafregional } from 'aws-cdk-lib';
const actionProperty: wafregional.CfnWebACL.ActionProperty = {
  type: 'type',
};

Properties

NameTypeDescription
typestringFor actions that are associated with a rule, the action that AWS WAF takes when a web request matches all conditions in a rule.

type

Type: string

For actions that are associated with a rule, the action that AWS WAF takes when a web request matches all conditions in a rule.

For the default action of a web access control list (ACL), the action that AWS WAF takes when a web request doesn't match all conditions in any rule.

Valid settings include the following:

  • ALLOW : AWS WAF allows requests
  • BLOCK : AWS WAF blocks requests
  • COUNT : AWS WAF increments a counter of the requests that match all of the conditions in the rule. AWS WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specify COUNT for the default action for a WebACL.