Class: Aws::WAFV2::Types::RequestBodyAssociatedResourceTypeConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::RequestBodyAssociatedResourceTypeConfig
- Defined in:
- gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb
Overview
Customizes the maximum size of the request body that your protected CloudFront, API Gateway, Amazon Cognito, App Runner, and Verified Access resources forward to WAF for inspection. The default size is 16 KB (16,384 bytes). You can change the setting for any of the available resource types.
Example JSON: { "API_GATEWAY": "KB_48", "APP_RUNNER_SERVICE":
"KB_32" }
For Application Load Balancer and AppSync, the limit is fixed at 8 KB (8,192 bytes).
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, API Gateway, Amazon Cognito, App Runner, or Verified Access resource 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, API Gateway, Amazon Cognito, App Runner, or Verified Access resource 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)
7751 7752 7753 7754 7755 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 7751 class RequestBodyAssociatedResourceTypeConfig < Struct.new( :default_size_inspection_limit) SENSITIVE = [] include Aws::Structure end |