Show / Hide Table of Contents

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" ] }

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-headermatchpattern.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 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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-headermatchpattern.html#cfn-wafv2-rulegroup-headermatchpattern-all

ExcludedHeaders

Inspect only the headers whose keys don't match any of the strings specified here.

string[]? ExcludedHeaders { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-headermatchpattern.html#cfn-wafv2-rulegroup-headermatchpattern-excludedheaders

IncludedHeaders

Inspect only the headers that have a key that matches one of the strings specified here.

string[]? IncludedHeaders { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-headermatchpattern.html#cfn-wafv2-rulegroup-headermatchpattern-includedheaders

Back to top Generated by DocFX