Class CfnRuleGroup.CountProperty
Count traffic towards application.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRuleGroup.CountProperty : CfnRuleGroup.ICountProperty
Syntax (vb)
Public Class CfnRuleGroup.CountProperty Implements CfnRuleGroup.ICountProperty
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 countProperty = new CountProperty {
CustomRequestHandling = new CustomRequestHandlingProperty {
InsertHeaders = new [] { new CustomHTTPHeaderProperty {
Name = "name",
Value = "value"
} }
}
};
Synopsis
Constructors
| CountProperty() | Count traffic towards application. |
Properties
| CustomRequestHandling | Custom request handling. |
Constructors
CountProperty()
Count traffic towards application.
public CountProperty()
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 countProperty = new CountProperty {
CustomRequestHandling = new CustomRequestHandlingProperty {
InsertHeaders = new [] { new CustomHTTPHeaderProperty {
Name = "name",
Value = "value"
} }
}
};
Properties
CustomRequestHandling
Custom request handling.
public object? CustomRequestHandling { get; set; }