Class SizeConstraintSetSizeConstraintArgs
Inherited Members
Namespace: Pulumi.Aws.WafRegional.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class SizeConstraintSetSizeConstraintArgs : ResourceArgs
Constructors
View SourceSizeConstraintSetSizeConstraintArgs()
Declaration
public SizeConstraintSetSizeConstraintArgs()
Properties
View SourceComparisonOperator
The type of comparison you want to perform.
e.g. EQ, NE, LT, GT.
See docs for all supported values.
Declaration
public Input<string> ComparisonOperator { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
FieldToMatch
Specifies where in a web request to look for the size constraint.
Declaration
public Input<SizeConstraintSetSizeConstraintFieldToMatchArgs> FieldToMatch { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<SizeConstraintSetSizeConstraintFieldToMatchArgs> |
Size
The size in bytes that you want to compare against the size of the specified field_to_match.
Valid values are between 0 - 21474836480 bytes (0 - 20 GB).
Declaration
public Input<int> Size { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
TextTransformation
Text transformations used to eliminate unusual formatting that attackers use in web requests in an effort to bypass AWS WAF.
If you specify a transformation, AWS WAF performs the transformation on field_to_match before inspecting a request for a match.
e.g. CMD_LINE, HTML_ENTITY_DECODE or NONE.
See docs
for all supported values.
Note: if you choose BODY as type, you must choose NONE because CloudFront forwards only the first 8192 bytes for inspection.
Declaration
public Input<string> TextTransformation { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |