Show / Hide Table of Contents

Interface CfnWebACL.IRegexMatchStatementProperty

A rule statement used to search web request components for a match against a single regular expression.

Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnWebACL.IRegexMatchStatementProperty
Syntax (vb)
Public Interface CfnWebACL.IRegexMatchStatementProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-regexmatchstatement.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 allQueryArguments;
             var method;
             var queryString;
             var singleHeader;
             var singleQueryArgument;
             var uriPath;

             var regexMatchStatementProperty = new RegexMatchStatementProperty {
                 FieldToMatch = new FieldToMatchProperty {
                     AllQueryArguments = allQueryArguments,
                     Body = new BodyProperty {
                         OversizeHandling = "oversizeHandling"
                     },
                     Cookies = new CookiesProperty {
                         MatchPattern = new CookieMatchPatternProperty {
                             All = all,
                             ExcludedCookies = new [] { "excludedCookies" },
                             IncludedCookies = new [] { "includedCookies" }
                         },
                         MatchScope = "matchScope",
                         OversizeHandling = "oversizeHandling"
                     },
                     HeaderOrder = new HeaderOrderProperty {
                         OversizeHandling = "oversizeHandling"
                     },
                     Headers = new HeadersProperty {
                         MatchPattern = new HeaderMatchPatternProperty {
                             All = all,
                             ExcludedHeaders = new [] { "excludedHeaders" },
                             IncludedHeaders = new [] { "includedHeaders" }
                         },
                         MatchScope = "matchScope",
                         OversizeHandling = "oversizeHandling"
                     },
                     Ja3Fingerprint = new JA3FingerprintProperty {
                         FallbackBehavior = "fallbackBehavior"
                     },
                     Ja4Fingerprint = new JA4FingerprintProperty {
                         FallbackBehavior = "fallbackBehavior"
                     },
                     JsonBody = new JsonBodyProperty {
                         MatchPattern = new JsonMatchPatternProperty {
                             All = all,
                             IncludedPaths = new [] { "includedPaths" }
                         },
                         MatchScope = "matchScope",

                         // the properties below are optional
                         InvalidFallbackBehavior = "invalidFallbackBehavior",
                         OversizeHandling = "oversizeHandling"
                     },
                     Method = method,
                     QueryString = queryString,
                     SingleHeader = singleHeader,
                     SingleQueryArgument = singleQueryArgument,
                     UriFragment = new UriFragmentProperty {
                         FallbackBehavior = "fallbackBehavior"
                     },
                     UriPath = uriPath
                 },
                 RegexString = "regexString",
                 TextTransformations = new [] { new TextTransformationProperty {
                     Priority = 123,
                     Type = "type"
                 } }
             };

Synopsis

Properties

FieldToMatch

The part of the web request that you want AWS WAF to inspect.

RegexString

The string representing the regular expression.

TextTransformations

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.

Properties

FieldToMatch

The part of the web request that you want AWS WAF to inspect.

object FieldToMatch { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-regexmatchstatement.html#cfn-wafv2-webacl-regexmatchstatement-fieldtomatch

Type union: either IResolvable or CfnWebACL.IFieldToMatchProperty

RegexString

The string representing the regular expression.

string RegexString { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-regexmatchstatement.html#cfn-wafv2-webacl-regexmatchstatement-regexstring

TextTransformations

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.

object TextTransformations { get; }
Property Value

object

Remarks

If you specify one or more transformations in a rule statement, AWS WAF performs all transformations on the content of the request component identified by FieldToMatch , starting from the lowest priority setting, before inspecting the content for a match.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-regexmatchstatement.html#cfn-wafv2-webacl-regexmatchstatement-texttransformations

Type union: either IResolvable or (either IResolvable or CfnWebACL.ITextTransformationProperty)[]

Back to top Generated by DocFX