Class CfnWebACL.BodyProperty
Inspect the body of the web request. The body immediately follows the request headers.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class BodyProperty : Object, CfnWebACL.IBodyProperty
Syntax (vb)
Public Class BodyProperty
Inherits Object
Implements CfnWebACL.IBodyProperty
Remarks
This is used to indicate the web request component to inspect, in the FieldToMatch
specification.
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-body.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.WAFv2;
var bodyProperty = new BodyProperty {
OversizeHandling = "oversizeHandling"
};
Synopsis
Constructors
Body |
Properties
Oversize |
What AWS WAF should do if the body is larger than AWS WAF can inspect. |
Constructors
BodyProperty()
public BodyProperty()
Properties
OversizeHandling
What AWS WAF should do if the body is larger than AWS WAF can inspect.
public string OversizeHandling { get; set; }
Property Value
System.
Remarks
AWS WAF does not support inspecting the entire contents of the web request body if the body exceeds the limit for the resource type. When a web request body is larger than the limit, the underlying host service only forwards the contents that are within the limit to AWS WAF for inspection.
The options for oversize handling are the following:
You can combine the MATCH
or NO_MATCH
settings for oversize handling with your rule and web ACL action settings, so that you block any request whose body is over the limit.
Default: CONTINUE