Interface CfnRuleGroup.RateLimitQueryStringProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuleGroup.RateLimitQueryStringProperty.Jsii$Proxy
- Enclosing class:
CfnRuleGroup
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 software.amazon.awscdk.services.wafv2.*;
RateLimitQueryStringProperty rateLimitQueryStringProperty = RateLimitQueryStringProperty.builder()
.textTransformations(List.of(TextTransformationProperty.builder()
.priority(123)
.type("type")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRuleGroup.RateLimitQueryStringPropertystatic final classAn implementation forCfnRuleGroup.RateLimitQueryStringProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTextTransformations
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
FieldToMatchrequest 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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRuleGroup.TextTransformationProperty>- See Also:
-
builder
-