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