Show / Hide Table of Contents

Class CfnWebACL.ChallengeConfigProperty

Specifies how AWS WAF should handle Challenge evaluations.

Inheritance
object
CfnWebACL.ChallengeConfigProperty
Implements
CfnWebACL.IChallengeConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-challengeconfig.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 challengeConfigProperty = new ChallengeConfigProperty {
                 ImmunityTimeProperty = new ImmunityTimePropertyProperty {
                     ImmunityTime = 123
                 }
             };

Synopsis

Constructors

ChallengeConfigProperty()

Specifies how AWS WAF should handle Challenge evaluations.

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-challengeconfig.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 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; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnWebACL.IImmunityTimePropertyProperty

Implements

CfnWebACL.IChallengeConfigProperty
Back to top Generated by DocFX