AWS::WAFv2::RuleGroup SizeConstraintStatement
A rule statement that compares a number of bytes against the size of a request component, using a comparison operator, such as greater than (>) or less than (<). For example, you can use a size constraint statement to look for query strings that are longer than 100 bytes.
If you configure Amazon WAF to inspect the request body, Amazon WAF inspects only the number of bytes of the body up to the limit for the web ACL. By default, for regional web ACLs, this limit is 8 KB (8,192 kilobytes) and for CloudFront web ACLs, this limit is 16 KB (16,384 kilobytes). For CloudFront web ACLs, you can increase the limit in the web ACL AssociationConfig, for additional fees. If you know that the request body for your web requests should never exceed the inspection limit, you could use a size constraint statement to block requests that have a larger request body size.
If you choose URI for the value of Part of the request to filter on, the slash (/) in the URI counts as one character. For example, the URI /logo.jpg is nine characters long.
Syntax
To declare this entity in your Amazon CloudFormation template, use the following syntax:
JSON
{ "ComparisonOperator" :String, "FieldToMatch" :FieldToMatch, "Size" :Double, "TextTransformations" :[ TextTransformation, ... ]}
YAML
ComparisonOperator:StringFieldToMatch:FieldToMatchSize:DoubleTextTransformations:- TextTransformation
Properties
ComparisonOperator-
The operator to use to compare the request part to the size setting.
Required: Yes
Type: String
Allowed values:
EQ | GE | GT | LE | LT | NEUpdate requires: No interruption
FieldToMatch-
The part of the web request that you want Amazon WAF to inspect.
Required: Yes
Type: FieldToMatch
Update requires: No interruption
Size-
The size, in byte, to compare to the request part, after any transformations.
Required: Yes
Type: Double
Update requires: No interruption
TextTransformations-
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, Amazon WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the component contents.Required: Yes
Type: List of TextTransformation
Update requires: No interruption