Class CfnWebACL.ChallengeConfigProperty
Specifies how AWS WAF should handle Challenge evaluations.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWebACL.ChallengeConfigProperty : CfnWebACL.IChallengeConfigProperty
Syntax (vb)
Public Class CfnWebACL.ChallengeConfigProperty Implements CfnWebACL.IChallengeConfigProperty
Remarks
This is available at the web ACL level and in each rule.
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 challengeConfigProperty = new ChallengeConfigProperty {
ImmunityTimeProperty = new ImmunityTimePropertyProperty {
ImmunityTime = 123
}
};
Synopsis
Constructors
| ChallengeConfigProperty() | Specifies how AWS WAF should handle |
Properties
| ImmunityTimeProperty | Determines how long a challenge timestamp in the token remains valid after the client successfully responds to a challenge. |
Constructors
ChallengeConfigProperty()
Specifies how AWS WAF should handle Challenge evaluations.
public ChallengeConfigProperty()
Remarks
This is available at the web ACL level and in each rule.
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 challengeConfigProperty = new ChallengeConfigProperty {
ImmunityTimeProperty = new ImmunityTimePropertyProperty {
ImmunityTime = 123
}
};
Properties
ImmunityTimeProperty
Determines how long a challenge timestamp in the token remains valid after the client successfully responds to a challenge.
public object? ImmunityTimeProperty { get; set; }