Show / Hide Table of Contents

Class CfnWebACL.BodyProperty

Inspect the body of the web request. The body immediately follows the request headers.

Inheritance
object
CfnWebACL.BodyProperty
Implements
CfnWebACL.IBodyProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWebACL.BodyProperty : CfnWebACL.IBodyProperty
Syntax (vb)
Public Class CfnWebACL.BodyProperty 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

BodyProperty()

Inspect the body of the web request. The body immediately follows the request headers.

Properties

OversizeHandling

What AWS WAF should do if the body is larger than AWS WAF can inspect.

Constructors

BodyProperty()

Inspect the body of the web request. The body immediately follows the request headers.

public BodyProperty()
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"
             };

Properties

OversizeHandling

What AWS WAF should do if the body is larger than AWS WAF can inspect.

public string? OversizeHandling { get; set; }
Property Value

string

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

      See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-body.html#cfn-wafv2-webacl-body-oversizehandling

      Implements

      CfnWebACL.IBodyProperty
      Back to top Generated by DocFX