Class CfnRuleGroup.RateLimitUriPathProperty
Specifies the request's URI path as an aggregate key for a rate-based rule.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRuleGroup.RateLimitUriPathProperty : CfnRuleGroup.IRateLimitUriPathProperty
Syntax (vb)
Public Class CfnRuleGroup.RateLimitUriPathProperty Implements CfnRuleGroup.IRateLimitUriPathProperty
Remarks
Each distinct URI path contributes to the aggregation instance. If you use just the URI path as your custom key, then each URI path fully defines an aggregation instance.
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 rateLimitUriPathProperty = new RateLimitUriPathProperty {
TextTransformations = new [] { new TextTransformationProperty {
Priority = 123,
Type = "type"
} }
};
Synopsis
Constructors
| RateLimitUriPathProperty() | Specifies the request's URI path as an aggregate key for a rate-based rule. |
Properties
| TextTransformations | Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. |
Constructors
RateLimitUriPathProperty()
Specifies the request's URI path as an aggregate key for a rate-based rule.
public RateLimitUriPathProperty()
Remarks
Each distinct URI path contributes to the aggregation instance. If you use just the URI path as your custom key, then each URI path fully defines an aggregation instance.
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 rateLimitUriPathProperty = new RateLimitUriPathProperty {
TextTransformations = new [] { new TextTransformationProperty {
Priority = 123,
Type = "type"
} }
};
Properties
TextTransformations
Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.
public object TextTransformations { get; set; }
Property Value
Remarks
Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, AWS WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.
Type union: either IResolvable or (either IResolvable or CfnRuleGroup.ITextTransformationProperty)[]