interface RateLimitQueryStringProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.WAFv2.CfnWebACL.RateLimitQueryStringProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswafv2#CfnWebACL_RateLimitQueryStringProperty |
Java | software.amazon.awscdk.services.wafv2.CfnWebACL.RateLimitQueryStringProperty |
Python | aws_cdk.aws_wafv2.CfnWebACL.RateLimitQueryStringProperty |
TypeScript | aws-cdk-lib » aws_wafv2 » CfnWebACL » RateLimitQueryStringProperty |
Specifies the request's query string as an aggregate key for a rate-based rule.
Each distinct string contributes to the aggregation instance. If you use just the query string as your custom key, then each string fully defines an aggregation instance.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wafv2 as wafv2 } from 'aws-cdk-lib';
const rateLimitQueryStringProperty: wafv2.CfnWebACL.RateLimitQueryStringProperty = {
textTransformations: [{
priority: 123,
type: 'type',
}],
};
Properties
Name | Type | Description |
---|---|---|
text | IResolvable | IResolvable | Text [] | Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. |
textTransformations
Type:
IResolvable
|
IResolvable
|
Text
[]
Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.
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.