@aws-sdk/client-wafv2 3.1101.0 → 3.1102.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js
CHANGED
|
@@ -1066,7 +1066,7 @@ export interface ByteMatchStatement {
|
|
|
1066
1066
|
* <p>Pre-parse text transformations normalize the raw query string before WAF parses it into individual
|
|
1067
1067
|
* query arguments. They are applied before the standard text transformations. Pre-parse text transformations
|
|
1068
1068
|
* are only supported when <code>FieldToMatch</code> is <code>SingleQueryArgument</code> or
|
|
1069
|
-
* <code>AllQueryArguments</code>. You can specify up to
|
|
1069
|
+
* <code>AllQueryArguments</code>. You can specify up to 10 pre-parse text transformations per rule statement.</p>
|
|
1070
1070
|
* @public
|
|
1071
1071
|
*/
|
|
1072
1072
|
PreParseTextTransformations?: PreParseTextTransformation[] | undefined;
|
|
@@ -2629,7 +2629,7 @@ export interface RegexMatchStatement {
|
|
|
2629
2629
|
* <p>Pre-parse text transformations normalize the raw query string before WAF parses it into individual
|
|
2630
2630
|
* query arguments. They are applied before the standard text transformations. Pre-parse text transformations
|
|
2631
2631
|
* are only supported when <code>FieldToMatch</code> is <code>SingleQueryArgument</code> or
|
|
2632
|
-
* <code>AllQueryArguments</code>. You can specify up to
|
|
2632
|
+
* <code>AllQueryArguments</code>. You can specify up to 10 pre-parse text transformations per rule statement.</p>
|
|
2633
2633
|
* @public
|
|
2634
2634
|
*/
|
|
2635
2635
|
PreParseTextTransformations?: PreParseTextTransformation[] | undefined;
|
|
@@ -2660,7 +2660,7 @@ export interface RegexPatternSetReferenceStatement {
|
|
|
2660
2660
|
* <p>Pre-parse text transformations normalize the raw query string before WAF parses it into individual
|
|
2661
2661
|
* query arguments. They are applied before the standard text transformations. Pre-parse text transformations
|
|
2662
2662
|
* are only supported when <code>FieldToMatch</code> is <code>SingleQueryArgument</code> or
|
|
2663
|
-
* <code>AllQueryArguments</code>. You can specify up to
|
|
2663
|
+
* <code>AllQueryArguments</code>. You can specify up to 10 pre-parse text transformations per rule statement.</p>
|
|
2664
2664
|
* @public
|
|
2665
2665
|
*/
|
|
2666
2666
|
PreParseTextTransformations?: PreParseTextTransformation[] | undefined;
|
|
@@ -2726,7 +2726,7 @@ export interface SizeConstraintStatement {
|
|
|
2726
2726
|
* <p>Pre-parse text transformations normalize the raw query string before WAF parses it into individual
|
|
2727
2727
|
* query arguments. They are applied before the standard text transformations. Pre-parse text transformations
|
|
2728
2728
|
* are only supported when <code>FieldToMatch</code> is <code>SingleQueryArgument</code> or
|
|
2729
|
-
* <code>AllQueryArguments</code>. You can specify up to
|
|
2729
|
+
* <code>AllQueryArguments</code>. You can specify up to 10 pre-parse text transformations per rule statement.</p>
|
|
2730
2730
|
* @public
|
|
2731
2731
|
*/
|
|
2732
2732
|
PreParseTextTransformations?: PreParseTextTransformation[] | undefined;
|
|
@@ -2750,7 +2750,7 @@ export interface SqliMatchStatement {
|
|
|
2750
2750
|
* <p>Pre-parse text transformations normalize the raw query string before WAF parses it into individual
|
|
2751
2751
|
* query arguments. They are applied before the standard text transformations. Pre-parse text transformations
|
|
2752
2752
|
* are only supported when <code>FieldToMatch</code> is <code>SingleQueryArgument</code> or
|
|
2753
|
-
* <code>AllQueryArguments</code>. You can specify up to
|
|
2753
|
+
* <code>AllQueryArguments</code>. You can specify up to 10 pre-parse text transformations per rule statement.</p>
|
|
2754
2754
|
* @public
|
|
2755
2755
|
*/
|
|
2756
2756
|
PreParseTextTransformations?: PreParseTextTransformation[] | undefined;
|
|
@@ -2791,7 +2791,7 @@ export interface XssMatchStatement {
|
|
|
2791
2791
|
* <p>Pre-parse text transformations normalize the raw query string before WAF parses it into individual
|
|
2792
2792
|
* query arguments. They are applied before the standard text transformations. Pre-parse text transformations
|
|
2793
2793
|
* are only supported when <code>FieldToMatch</code> is <code>SingleQueryArgument</code> or
|
|
2794
|
-
* <code>AllQueryArguments</code>. You can specify up to
|
|
2794
|
+
* <code>AllQueryArguments</code>. You can specify up to 10 pre-parse text transformations per rule statement.</p>
|
|
2795
2795
|
* @public
|
|
2796
2796
|
*/
|
|
2797
2797
|
PreParseTextTransformations?: PreParseTextTransformation[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-wafv2",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1102.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Wafv2 Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-wafv2",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@aws-sdk/core": "^3.977.
|
|
50
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
49
|
+
"@aws-sdk/core": "^3.977.5",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.77",
|
|
51
51
|
"@aws-sdk/types": "^3.974.2",
|
|
52
52
|
"@smithy/core": "^3.31.1",
|
|
53
53
|
"@smithy/fetch-http-handler": "^5.6.13",
|