interface SizeConstraintStatementProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.WAFv2.CfnRuleGroup.SizeConstraintStatementProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awswafv2#CfnRuleGroup_SizeConstraintStatementProperty |
![]() | software.amazon.awscdk.services.wafv2.CfnRuleGroup.SizeConstraintStatementProperty |
![]() | aws_cdk.aws_wafv2.CfnRuleGroup.SizeConstraintStatementProperty |
![]() | aws-cdk-lib » aws_wafv2 » CfnRuleGroup » SizeConstraintStatementProperty |
A rule statement that compares a number of bytes against the size of a request component, using a comparison operator, such as greater than (>) or less than (<).
For example, you can use a size constraint statement to look for query strings that are longer than 100 bytes.
If you configure AWS WAF to inspect the request body, AWS WAF inspects only the number of bytes in the body up to the limit for the web ACL and protected resource type. If you know that the request body for your web requests should never exceed the inspection limit, you can use a size constraint statement to block requests that have a larger request body size. For more information about the inspection limits, see Body
and JsonBody
settings for the FieldToMatch
data type.
If you choose URI for the value of Part of the request to filter on, the slash (/) in the URI counts as one character. For example, the URI /logo.jpg
is nine characters long.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wafv2 as wafv2 } from 'aws-cdk-lib';
declare const all: any;
declare const allQueryArguments: any;
declare const method: any;
declare const queryString: any;
declare const singleHeader: any;
declare const singleQueryArgument: any;
declare const uriPath: any;
const sizeConstraintStatementProperty: wafv2.CfnRuleGroup.SizeConstraintStatementProperty = {
comparisonOperator: 'comparisonOperator',
fieldToMatch: {
allQueryArguments: allQueryArguments,
body: {
oversizeHandling: 'oversizeHandling',
},
cookies: {
matchPattern: {
all: all,
excludedCookies: ['excludedCookies'],
includedCookies: ['includedCookies'],
},
matchScope: 'matchScope',
oversizeHandling: 'oversizeHandling',
},
headers: {
matchPattern: {
all: all,
excludedHeaders: ['excludedHeaders'],
includedHeaders: ['includedHeaders'],
},
matchScope: 'matchScope',
oversizeHandling: 'oversizeHandling',
},
ja3Fingerprint: {
fallbackBehavior: 'fallbackBehavior',
},
ja4Fingerprint: {
fallbackBehavior: 'fallbackBehavior',
},
jsonBody: {
matchPattern: {
all: all,
includedPaths: ['includedPaths'],
},
matchScope: 'matchScope',
// the properties below are optional
invalidFallbackBehavior: 'invalidFallbackBehavior',
oversizeHandling: 'oversizeHandling',
},
method: method,
queryString: queryString,
singleHeader: singleHeader,
singleQueryArgument: singleQueryArgument,
uriPath: uriPath,
},
size: 123,
textTransformations: [{
priority: 123,
type: 'type',
}],
};
Properties
Name | Type | Description |
---|---|---|
comparison | string | The operator to use to compare the request part to the size setting. |
field | IResolvable | Field | The part of the web request that you want AWS WAF to inspect. |
size | number | The size, in byte, to compare to the request part, after any transformations. |
text | IResolvable | IResolvable | Text [] | Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. |
comparisonOperator
Type:
string
The operator to use to compare the request part to the size setting.
fieldToMatch
Type:
IResolvable
|
Field
The part of the web request that you want AWS WAF to inspect.
size
Type:
number
The size, in byte, to compare to the request part, after any transformations.
textTransformations
Type:
IResolvable
|
IResolvable
|
Text
[]
Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.
If you specify one or more transformations in a rule statement, AWS WAF performs all transformations on the content of the request component identified by FieldToMatch
, starting from the lowest priority setting, before inspecting the content for a match.