Class CfnRuleGroup.CaptchaProperty
Checks valid token exists with request.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRuleGroup.CaptchaProperty : CfnRuleGroup.ICaptchaProperty
Syntax (vb)
Public Class CfnRuleGroup.CaptchaProperty Implements CfnRuleGroup.ICaptchaProperty
Remarks
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 captchaProperty = new CaptchaProperty {
CustomRequestHandling = new CustomRequestHandlingProperty {
InsertHeaders = new [] { new CustomHTTPHeaderProperty {
Name = "name",
Value = "value"
} }
}
};
Synopsis
Constructors
| CaptchaProperty() | Checks valid token exists with request. |
Properties
| CustomRequestHandling | Custom request handling. |
Constructors
CaptchaProperty()
Checks valid token exists with request.
public CaptchaProperty()
Remarks
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 captchaProperty = new CaptchaProperty {
CustomRequestHandling = new CustomRequestHandlingProperty {
InsertHeaders = new [] { new CustomHTTPHeaderProperty {
Name = "name",
Value = "value"
} }
}
};
Properties
CustomRequestHandling
Custom request handling.
public object? CustomRequestHandling { get; set; }