aws-cdk-lib.aws_shield.CfnProtection.ActionProperty

interface ActionProperty

LanguageType name
.NETAmazon.CDK.aws_shield.CfnProtection.ActionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsshield#CfnProtection_ActionProperty
Javaservices.shield.CfnProtection.ActionProperty
Pythonaws_cdk.aws_shield.CfnProtection.ActionProperty
TypeScript aws-cdk-lib » aws_shield » CfnProtection » ActionProperty

Specifies the action setting that Shield Advanced should use in the AWS WAF rules that it creates on behalf of the protected resource in response to DDoS attacks.

You specify this as part of the configuration for the automatic application layer DDoS mitigation feature, when you enable or update automatic mitigation. Shield Advanced creates the AWS WAF rules in a Shield Advanced-managed rule group, inside the web ACL that you have associated with the resource.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_shield as shield } from 'aws-cdk-lib';

declare const block: any;
declare const count: any;
const actionProperty: shield.CfnProtection.ActionProperty = {
  block: block,
  count: count,
};

Properties

NameTypeDescription
block?anySpecifies that Shield Advanced should configure its AWS WAF rules with the AWS WAF Block action.
count?anySpecifies that Shield Advanced should configure its AWS WAF rules with the AWS WAF Count action.

block?

Type: any (optional)

Specifies that Shield Advanced should configure its AWS WAF rules with the AWS WAF Block action.

You must specify exactly one action, either Block or Count .

Example JSON: { "Block": {} }

Example YAML: Block: {}


count?

Type: any (optional)

Specifies that Shield Advanced should configure its AWS WAF rules with the AWS WAF Count action.

You must specify exactly one action, either Block or Count .

Example JSON: { "Count": {} }

Example YAML: Count: {}