Interface CfnRuleGroup.IHeaderMatchPatternProperty
The filter to use to identify the subset of headers to inspect in a web request.
Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRuleGroup.IHeaderMatchPatternProperty
Syntax (vb)
Public Interface CfnRuleGroup.IHeaderMatchPatternProperty
Remarks
You must specify exactly one setting: either All , IncludedHeaders , or ExcludedHeaders .
Example JSON: "MatchPattern": { "ExcludedHeaders": [ "KeyToExclude1", "KeyToExclude2" ] }
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 all;
var headerMatchPatternProperty = new HeaderMatchPatternProperty {
All = all,
ExcludedHeaders = new [] { "excludedHeaders" },
IncludedHeaders = new [] { "includedHeaders" }
};
Synopsis
Properties
| All | Inspect all headers. |
| ExcludedHeaders | Inspect only the headers whose keys don't match any of the strings specified here. |
| IncludedHeaders | Inspect only the headers that have a key that matches one of the strings specified here. |
Properties
All
Inspect all headers.
object? All { get; }
Property Value
Remarks
ExcludedHeaders
Inspect only the headers whose keys don't match any of the strings specified here.
string[]? ExcludedHeaders { get; }
Property Value
string[]
Remarks
IncludedHeaders
Inspect only the headers that have a key that matches one of the strings specified here.
string[]? IncludedHeaders { get; }
Property Value
string[]