Class: Aws::WAFV2::Types::SizeConstraintStatement
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::SizeConstraintStatement
- Defined in:
- gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb
Overview
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 WAF to inspect the request body, WAF inspects only the first 8192 bytes (8 KB). If the request body for your web requests never exceeds 8192 bytes, you could use a size constraint statement to block requests that have a request body greater than 8192 bytes.
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison_operator ⇒ String
The operator to use to compare the request part to the size setting.
-
#field_to_match ⇒ Types::FieldToMatch
The part of the web request that you want WAF to inspect.
-
#size ⇒ Integer
The size, in byte, to compare to the request part, after any transformations.
-
#text_transformations ⇒ Array<Types::TextTransformation>
Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.
Instance Attribute Details
#comparison_operator ⇒ String
The operator to use to compare the request part to the size setting.
5869 5870 5871 5872 5873 5874 5875 5876 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 5869 class SizeConstraintStatement < Struct.new( :field_to_match, :comparison_operator, :size, :text_transformations) SENSITIVE = [] include Aws::Structure end |
#field_to_match ⇒ Types::FieldToMatch
The part of the web request that you want WAF to inspect.
5869 5870 5871 5872 5873 5874 5875 5876 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 5869 class SizeConstraintStatement < Struct.new( :field_to_match, :comparison_operator, :size, :text_transformations) SENSITIVE = [] include Aws::Structure end |
#size ⇒ Integer
The size, in byte, to compare to the request part, after any transformations.
5869 5870 5871 5872 5873 5874 5875 5876 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 5869 class SizeConstraintStatement < Struct.new( :field_to_match, :comparison_operator, :size, :text_transformations) SENSITIVE = [] include Aws::Structure end |
#text_transformations ⇒ Array<Types::TextTransformation>
Text transformations eliminate some of the unusual formatting that
attackers use in web requests in an effort to bypass detection. If
you specify one or more transformations in a rule statement, 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.
5869 5870 5871 5872 5873 5874 5875 5876 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 5869 class SizeConstraintStatement < Struct.new( :field_to_match, :comparison_operator, :size, :text_transformations) SENSITIVE = [] include Aws::Structure end |