Show / Hide Table of Contents

Interface CfnWebACL.IClientSideActionConfigProperty

This is part of the configuration for the managed rules AWSManagedRulesAntiDDoSRuleSet in ManagedRuleGroupConfig .

Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnWebACL.IClientSideActionConfigProperty
Syntax (vb)
Public Interface CfnWebACL.IClientSideActionConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-clientsideactionconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.WAFv2;

             var clientSideActionConfigProperty = new ClientSideActionConfigProperty {
                 Challenge = new ClientSideActionProperty {
                     UsageOfAction = "usageOfAction",

                     // the properties below are optional
                     ExemptUriRegularExpressions = new [] { new RegexProperty {
                         RegexString = "regexString"
                     } },
                     Sensitivity = "sensitivity"
                 }
             };

Synopsis

Properties

Challenge

Configuration for the use of the AWSManagedRulesAntiDDoSRuleSet rules ChallengeAllDuringEvent and ChallengeDDoSRequests .

Properties

Challenge

Configuration for the use of the AWSManagedRulesAntiDDoSRuleSet rules ChallengeAllDuringEvent and ChallengeDDoSRequests .

object Challenge { get; }
Property Value

object

Remarks
This setting isn't related to the configuration of the <code>Challenge</code> action itself. It only configures the use of the two anti-DDoS rules named here.

You can enable or disable the use of these rules, and you can configure how to use them when they are enabled.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-clientsideactionconfig.html#cfn-wafv2-webacl-clientsideactionconfig-challenge

Type union: either IResolvable or CfnWebACL.IClientSideActionProperty

Back to top Generated by DocFX