Show / Hide Table of Contents

Class CfnWebACL.CaptchaConfigProperty

Specifies how AWS WAF should handle CAPTCHA evaluations for rules that don't have their own CaptchaConfig settings.

Inheritance
object
CfnWebACL.CaptchaConfigProperty
Implements
CfnWebACL.ICaptchaConfigProperty
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.CaptchaConfigProperty : CfnWebACL.ICaptchaConfigProperty
Syntax (vb)
Public Class CfnWebACL.CaptchaConfigProperty Implements CfnWebACL.ICaptchaConfigProperty
Remarks

If you don't specify this, AWS WAF uses its default settings for CaptchaConfig .

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

Synopsis

Constructors

CaptchaConfigProperty()

Specifies how AWS WAF should handle CAPTCHA evaluations for rules that don't have their own CaptchaConfig settings.

Properties

ImmunityTimeProperty

Determines how long a CAPTCHA timestamp in the token remains valid after the client successfully solves a CAPTCHA puzzle.

Constructors

CaptchaConfigProperty()

Specifies how AWS WAF should handle CAPTCHA evaluations for rules that don't have their own CaptchaConfig settings.

public CaptchaConfigProperty()
Remarks

If you don't specify this, AWS WAF uses its default settings for CaptchaConfig .

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

Properties

ImmunityTimeProperty

Determines how long a CAPTCHA timestamp in the token remains valid after the client successfully solves a CAPTCHA puzzle.

public object? ImmunityTimeProperty { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnWebACL.IImmunityTimePropertyProperty

Implements

CfnWebACL.ICaptchaConfigProperty
Back to top Generated by DocFX