Class: Aws::WAFV2::Types::RequestBodyAssociatedResourceTypeConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::RequestBodyAssociatedResourceTypeConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-wafv2/types.rb
Overview
Customizes the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default size is 16 KB (16,384 bytes).
<note markdown=“1”> You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see [WAF Pricing].
</note>
This is used in the ‘AssociationConfig` of the web ACL.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_size_inspection_limit ⇒ String
Specifies the maximum size of the web request body component that an associated CloudFront distribution should send to WAF for inspection.
Instance Attribute Details
#default_size_inspection_limit ⇒ String
Specifies the maximum size of the web request body component that an associated CloudFront distribution should send to WAF for inspection. This applies to statements in the web ACL that inspect the body or JSON body.
Default: ‘16 KB (16,384 bytes)`
6862 6863 6864 6865 6866 |
# File 'lib/aws-sdk-wafv2/types.rb', line 6862 class RequestBodyAssociatedResourceTypeConfig < Struct.new( :default_size_inspection_limit) SENSITIVE = [] include Aws::Structure end |