@aws-sdk/client-wafv2 3.325.0 → 3.327.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.
Files changed (52) hide show
  1. package/dist-types/commands/AssociateWebACLCommand.d.ts +4 -0
  2. package/dist-types/commands/CheckCapacityCommand.d.ts +6 -0
  3. package/dist-types/commands/CreateAPIKeyCommand.d.ts +6 -0
  4. package/dist-types/commands/CreateIPSetCommand.d.ts +12 -0
  5. package/dist-types/commands/CreateRegexPatternSetCommand.d.ts +12 -0
  6. package/dist-types/commands/CreateRuleGroupCommand.d.ts +12 -0
  7. package/dist-types/commands/CreateWebACLCommand.d.ts +12 -0
  8. package/dist-types/commands/DeleteFirewallManagerRuleGroupsCommand.d.ts +6 -0
  9. package/dist-types/commands/DeleteIPSetCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +4 -0
  11. package/dist-types/commands/DeletePermissionPolicyCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteRegexPatternSetCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteRuleGroupCommand.d.ts +4 -0
  14. package/dist-types/commands/DeleteWebACLCommand.d.ts +4 -0
  15. package/dist-types/commands/DescribeManagedRuleGroupCommand.d.ts +78 -0
  16. package/dist-types/commands/DisassociateWebACLCommand.d.ts +4 -0
  17. package/dist-types/commands/GenerateMobileSdkReleaseUrlCommand.d.ts +6 -0
  18. package/dist-types/commands/GetDecryptedAPIKeyCommand.d.ts +9 -0
  19. package/dist-types/commands/GetIPSetCommand.d.ts +16 -0
  20. package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +85 -0
  21. package/dist-types/commands/GetManagedRuleSetCommand.d.ts +24 -0
  22. package/dist-types/commands/GetMobileSdkReleaseCommand.d.ts +16 -0
  23. package/dist-types/commands/GetPermissionPolicyCommand.d.ts +6 -0
  24. package/dist-types/commands/GetRateBasedStatementManagedKeysCommand.d.ts +17 -0
  25. package/dist-types/commands/GetRegexPatternSetCommand.d.ts +17 -0
  26. package/dist-types/commands/GetRuleGroupCommand.d.ts +772 -0
  27. package/dist-types/commands/GetSampledRequestsCommand.d.ts +54 -0
  28. package/dist-types/commands/GetWebACLCommand.d.ts +951 -0
  29. package/dist-types/commands/GetWebACLForResourceCommand.d.ts +949 -0
  30. package/dist-types/commands/ListAPIKeysCommand.d.ts +17 -0
  31. package/dist-types/commands/ListAvailableManagedRuleGroupVersionsCommand.d.ts +13 -0
  32. package/dist-types/commands/ListAvailableManagedRuleGroupsCommand.d.ts +14 -0
  33. package/dist-types/commands/ListIPSetsCommand.d.ts +15 -0
  34. package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +88 -0
  35. package/dist-types/commands/ListManagedRuleSetsCommand.d.ts +16 -0
  36. package/dist-types/commands/ListMobileSdkReleasesCommand.d.ts +12 -0
  37. package/dist-types/commands/ListRegexPatternSetsCommand.d.ts +15 -0
  38. package/dist-types/commands/ListResourcesForWebACLCommand.d.ts +8 -0
  39. package/dist-types/commands/ListRuleGroupsCommand.d.ts +15 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +15 -0
  41. package/dist-types/commands/ListWebACLsCommand.d.ts +15 -0
  42. package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +85 -0
  43. package/dist-types/commands/PutManagedRuleSetVersionsCommand.d.ts +6 -0
  44. package/dist-types/commands/PutPermissionPolicyCommand.d.ts +4 -0
  45. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  46. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  47. package/dist-types/commands/UpdateIPSetCommand.d.ts +6 -0
  48. package/dist-types/commands/UpdateManagedRuleSetVersionExpiryDateCommand.d.ts +8 -0
  49. package/dist-types/commands/UpdateRegexPatternSetCommand.d.ts +6 -0
  50. package/dist-types/commands/UpdateRuleGroupCommand.d.ts +6 -0
  51. package/dist-types/commands/UpdateWebACLCommand.d.ts +6 -0
  52. package/package.json +7 -7
@@ -31,6 +31,953 @@ export interface GetWebACLForResourceCommandOutput extends GetWebACLForResourceR
31
31
  * };
32
32
  * const command = new GetWebACLForResourceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetWebACLForResourceResponse
35
+ * // WebACL: { // WebACL
36
+ * // Name: "STRING_VALUE", // required
37
+ * // Id: "STRING_VALUE", // required
38
+ * // ARN: "STRING_VALUE", // required
39
+ * // DefaultAction: { // DefaultAction
40
+ * // Block: { // BlockAction
41
+ * // CustomResponse: { // CustomResponse
42
+ * // ResponseCode: Number("int"), // required
43
+ * // CustomResponseBodyKey: "STRING_VALUE",
44
+ * // ResponseHeaders: [ // CustomHTTPHeaders
45
+ * // { // CustomHTTPHeader
46
+ * // Name: "STRING_VALUE", // required
47
+ * // Value: "STRING_VALUE", // required
48
+ * // },
49
+ * // ],
50
+ * // },
51
+ * // },
52
+ * // Allow: { // AllowAction
53
+ * // CustomRequestHandling: { // CustomRequestHandling
54
+ * // InsertHeaders: [ // required
55
+ * // {
56
+ * // Name: "STRING_VALUE", // required
57
+ * // Value: "STRING_VALUE", // required
58
+ * // },
59
+ * // ],
60
+ * // },
61
+ * // },
62
+ * // },
63
+ * // Description: "STRING_VALUE",
64
+ * // Rules: [ // Rules
65
+ * // { // Rule
66
+ * // Name: "STRING_VALUE", // required
67
+ * // Priority: Number("int"), // required
68
+ * // Statement: { // Statement
69
+ * // ByteMatchStatement: { // ByteMatchStatement
70
+ * // SearchString: "BLOB_VALUE", // required
71
+ * // FieldToMatch: { // FieldToMatch
72
+ * // SingleHeader: { // SingleHeader
73
+ * // Name: "STRING_VALUE", // required
74
+ * // },
75
+ * // SingleQueryArgument: { // SingleQueryArgument
76
+ * // Name: "STRING_VALUE", // required
77
+ * // },
78
+ * // AllQueryArguments: {},
79
+ * // UriPath: {},
80
+ * // QueryString: {},
81
+ * // Body: { // Body
82
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH",
83
+ * // },
84
+ * // Method: {},
85
+ * // JsonBody: { // JsonBody
86
+ * // MatchPattern: { // JsonMatchPattern
87
+ * // All: {},
88
+ * // IncludedPaths: [ // JsonPointerPaths
89
+ * // "STRING_VALUE",
90
+ * // ],
91
+ * // },
92
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
93
+ * // InvalidFallbackBehavior: "MATCH" || "NO_MATCH" || "EVALUATE_AS_STRING",
94
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH",
95
+ * // },
96
+ * // Headers: { // Headers
97
+ * // MatchPattern: { // HeaderMatchPattern
98
+ * // All: {},
99
+ * // IncludedHeaders: [ // HeaderNames
100
+ * // "STRING_VALUE",
101
+ * // ],
102
+ * // ExcludedHeaders: [
103
+ * // "STRING_VALUE",
104
+ * // ],
105
+ * // },
106
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
107
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH", // required
108
+ * // },
109
+ * // Cookies: { // Cookies
110
+ * // MatchPattern: { // CookieMatchPattern
111
+ * // All: {},
112
+ * // IncludedCookies: [ // CookieNames
113
+ * // "STRING_VALUE",
114
+ * // ],
115
+ * // ExcludedCookies: [
116
+ * // "STRING_VALUE",
117
+ * // ],
118
+ * // },
119
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
120
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH", // required
121
+ * // },
122
+ * // },
123
+ * // TextTransformations: [ // TextTransformations // required
124
+ * // { // TextTransformation
125
+ * // Priority: Number("int"), // required
126
+ * // Type: "NONE" || "COMPRESS_WHITE_SPACE" || "HTML_ENTITY_DECODE" || "LOWERCASE" || "CMD_LINE" || "URL_DECODE" || "BASE64_DECODE" || "HEX_DECODE" || "MD5" || "REPLACE_COMMENTS" || "ESCAPE_SEQ_DECODE" || "SQL_HEX_DECODE" || "CSS_DECODE" || "JS_DECODE" || "NORMALIZE_PATH" || "NORMALIZE_PATH_WIN" || "REMOVE_NULLS" || "REPLACE_NULLS" || "BASE64_DECODE_EXT" || "URL_DECODE_UNI" || "UTF8_TO_UNICODE", // required
127
+ * // },
128
+ * // ],
129
+ * // PositionalConstraint: "EXACTLY" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CONTAINS_WORD", // required
130
+ * // },
131
+ * // SqliMatchStatement: { // SqliMatchStatement
132
+ * // FieldToMatch: {
133
+ * // SingleHeader: {
134
+ * // Name: "STRING_VALUE", // required
135
+ * // },
136
+ * // SingleQueryArgument: {
137
+ * // Name: "STRING_VALUE", // required
138
+ * // },
139
+ * // AllQueryArguments: {},
140
+ * // UriPath: {},
141
+ * // QueryString: {},
142
+ * // Body: {
143
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH",
144
+ * // },
145
+ * // Method: {},
146
+ * // JsonBody: {
147
+ * // MatchPattern: {
148
+ * // All: {},
149
+ * // IncludedPaths: [
150
+ * // "STRING_VALUE",
151
+ * // ],
152
+ * // },
153
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
154
+ * // InvalidFallbackBehavior: "MATCH" || "NO_MATCH" || "EVALUATE_AS_STRING",
155
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH",
156
+ * // },
157
+ * // Headers: {
158
+ * // MatchPattern: {
159
+ * // All: {},
160
+ * // IncludedHeaders: [
161
+ * // "STRING_VALUE",
162
+ * // ],
163
+ * // ExcludedHeaders: [
164
+ * // "STRING_VALUE",
165
+ * // ],
166
+ * // },
167
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
168
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH", // required
169
+ * // },
170
+ * // Cookies: {
171
+ * // MatchPattern: {
172
+ * // All: "<All>",
173
+ * // IncludedCookies: [
174
+ * // "STRING_VALUE",
175
+ * // ],
176
+ * // ExcludedCookies: [
177
+ * // "STRING_VALUE",
178
+ * // ],
179
+ * // },
180
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
181
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH", // required
182
+ * // },
183
+ * // },
184
+ * // TextTransformations: [ // required
185
+ * // {
186
+ * // Priority: Number("int"), // required
187
+ * // Type: "NONE" || "COMPRESS_WHITE_SPACE" || "HTML_ENTITY_DECODE" || "LOWERCASE" || "CMD_LINE" || "URL_DECODE" || "BASE64_DECODE" || "HEX_DECODE" || "MD5" || "REPLACE_COMMENTS" || "ESCAPE_SEQ_DECODE" || "SQL_HEX_DECODE" || "CSS_DECODE" || "JS_DECODE" || "NORMALIZE_PATH" || "NORMALIZE_PATH_WIN" || "REMOVE_NULLS" || "REPLACE_NULLS" || "BASE64_DECODE_EXT" || "URL_DECODE_UNI" || "UTF8_TO_UNICODE", // required
188
+ * // },
189
+ * // ],
190
+ * // SensitivityLevel: "LOW" || "HIGH",
191
+ * // },
192
+ * // XssMatchStatement: { // XssMatchStatement
193
+ * // FieldToMatch: {
194
+ * // SingleHeader: {
195
+ * // Name: "STRING_VALUE", // required
196
+ * // },
197
+ * // SingleQueryArgument: {
198
+ * // Name: "STRING_VALUE", // required
199
+ * // },
200
+ * // AllQueryArguments: {},
201
+ * // UriPath: {},
202
+ * // QueryString: {},
203
+ * // Body: {
204
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH",
205
+ * // },
206
+ * // Method: {},
207
+ * // JsonBody: {
208
+ * // MatchPattern: {
209
+ * // All: "<All>",
210
+ * // IncludedPaths: [
211
+ * // "STRING_VALUE",
212
+ * // ],
213
+ * // },
214
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
215
+ * // InvalidFallbackBehavior: "MATCH" || "NO_MATCH" || "EVALUATE_AS_STRING",
216
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH",
217
+ * // },
218
+ * // Headers: {
219
+ * // MatchPattern: {
220
+ * // All: "<All>",
221
+ * // IncludedHeaders: [
222
+ * // "STRING_VALUE",
223
+ * // ],
224
+ * // ExcludedHeaders: "<HeaderNames>",
225
+ * // },
226
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
227
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH", // required
228
+ * // },
229
+ * // Cookies: {
230
+ * // MatchPattern: {
231
+ * // All: "<All>",
232
+ * // IncludedCookies: [
233
+ * // "STRING_VALUE",
234
+ * // ],
235
+ * // ExcludedCookies: "<CookieNames>",
236
+ * // },
237
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
238
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH", // required
239
+ * // },
240
+ * // },
241
+ * // TextTransformations: [ // required
242
+ * // {
243
+ * // Priority: Number("int"), // required
244
+ * // Type: "NONE" || "COMPRESS_WHITE_SPACE" || "HTML_ENTITY_DECODE" || "LOWERCASE" || "CMD_LINE" || "URL_DECODE" || "BASE64_DECODE" || "HEX_DECODE" || "MD5" || "REPLACE_COMMENTS" || "ESCAPE_SEQ_DECODE" || "SQL_HEX_DECODE" || "CSS_DECODE" || "JS_DECODE" || "NORMALIZE_PATH" || "NORMALIZE_PATH_WIN" || "REMOVE_NULLS" || "REPLACE_NULLS" || "BASE64_DECODE_EXT" || "URL_DECODE_UNI" || "UTF8_TO_UNICODE", // required
245
+ * // },
246
+ * // ],
247
+ * // },
248
+ * // SizeConstraintStatement: { // SizeConstraintStatement
249
+ * // FieldToMatch: {
250
+ * // SingleHeader: {
251
+ * // Name: "STRING_VALUE", // required
252
+ * // },
253
+ * // SingleQueryArgument: {
254
+ * // Name: "STRING_VALUE", // required
255
+ * // },
256
+ * // AllQueryArguments: {},
257
+ * // UriPath: {},
258
+ * // QueryString: {},
259
+ * // Body: {
260
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH",
261
+ * // },
262
+ * // Method: {},
263
+ * // JsonBody: {
264
+ * // MatchPattern: {
265
+ * // All: "<All>",
266
+ * // IncludedPaths: [
267
+ * // "STRING_VALUE",
268
+ * // ],
269
+ * // },
270
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
271
+ * // InvalidFallbackBehavior: "MATCH" || "NO_MATCH" || "EVALUATE_AS_STRING",
272
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH",
273
+ * // },
274
+ * // Headers: {
275
+ * // MatchPattern: {
276
+ * // All: "<All>",
277
+ * // IncludedHeaders: "<HeaderNames>",
278
+ * // ExcludedHeaders: "<HeaderNames>",
279
+ * // },
280
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
281
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH", // required
282
+ * // },
283
+ * // Cookies: {
284
+ * // MatchPattern: {
285
+ * // All: "<All>",
286
+ * // IncludedCookies: "<CookieNames>",
287
+ * // ExcludedCookies: "<CookieNames>",
288
+ * // },
289
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
290
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH", // required
291
+ * // },
292
+ * // },
293
+ * // ComparisonOperator: "EQ" || "NE" || "LE" || "LT" || "GE" || "GT", // required
294
+ * // Size: Number("long"), // required
295
+ * // TextTransformations: [ // required
296
+ * // {
297
+ * // Priority: Number("int"), // required
298
+ * // Type: "NONE" || "COMPRESS_WHITE_SPACE" || "HTML_ENTITY_DECODE" || "LOWERCASE" || "CMD_LINE" || "URL_DECODE" || "BASE64_DECODE" || "HEX_DECODE" || "MD5" || "REPLACE_COMMENTS" || "ESCAPE_SEQ_DECODE" || "SQL_HEX_DECODE" || "CSS_DECODE" || "JS_DECODE" || "NORMALIZE_PATH" || "NORMALIZE_PATH_WIN" || "REMOVE_NULLS" || "REPLACE_NULLS" || "BASE64_DECODE_EXT" || "URL_DECODE_UNI" || "UTF8_TO_UNICODE", // required
299
+ * // },
300
+ * // ],
301
+ * // },
302
+ * // GeoMatchStatement: { // GeoMatchStatement
303
+ * // CountryCodes: [ // CountryCodes
304
+ * // "AF" || "AX" || "AL" || "DZ" || "AS" || "AD" || "AO" || "AI" || "AQ" || "AG" || "AR" || "AM" || "AW" || "AU" || "AT" || "AZ" || "BS" || "BH" || "BD" || "BB" || "BY" || "BE" || "BZ" || "BJ" || "BM" || "BT" || "BO" || "BQ" || "BA" || "BW" || "BV" || "BR" || "IO" || "BN" || "BG" || "BF" || "BI" || "KH" || "CM" || "CA" || "CV" || "KY" || "CF" || "TD" || "CL" || "CN" || "CX" || "CC" || "CO" || "KM" || "CG" || "CD" || "CK" || "CR" || "CI" || "HR" || "CU" || "CW" || "CY" || "CZ" || "DK" || "DJ" || "DM" || "DO" || "EC" || "EG" || "SV" || "GQ" || "ER" || "EE" || "ET" || "FK" || "FO" || "FJ" || "FI" || "FR" || "GF" || "PF" || "TF" || "GA" || "GM" || "GE" || "DE" || "GH" || "GI" || "GR" || "GL" || "GD" || "GP" || "GU" || "GT" || "GG" || "GN" || "GW" || "GY" || "HT" || "HM" || "VA" || "HN" || "HK" || "HU" || "IS" || "IN" || "ID" || "IR" || "IQ" || "IE" || "IM" || "IL" || "IT" || "JM" || "JP" || "JE" || "JO" || "KZ" || "KE" || "KI" || "KP" || "KR" || "KW" || "KG" || "LA" || "LV" || "LB" || "LS" || "LR" || "LY" || "LI" || "LT" || "LU" || "MO" || "MK" || "MG" || "MW" || "MY" || "MV" || "ML" || "MT" || "MH" || "MQ" || "MR" || "MU" || "YT" || "MX" || "FM" || "MD" || "MC" || "MN" || "ME" || "MS" || "MA" || "MZ" || "MM" || "NA" || "NR" || "NP" || "NL" || "NC" || "NZ" || "NI" || "NE" || "NG" || "NU" || "NF" || "MP" || "NO" || "OM" || "PK" || "PW" || "PS" || "PA" || "PG" || "PY" || "PE" || "PH" || "PN" || "PL" || "PT" || "PR" || "QA" || "RE" || "RO" || "RU" || "RW" || "BL" || "SH" || "KN" || "LC" || "MF" || "PM" || "VC" || "WS" || "SM" || "ST" || "SA" || "SN" || "RS" || "SC" || "SL" || "SG" || "SX" || "SK" || "SI" || "SB" || "SO" || "ZA" || "GS" || "SS" || "ES" || "LK" || "SD" || "SR" || "SJ" || "SZ" || "SE" || "CH" || "SY" || "TW" || "TJ" || "TZ" || "TH" || "TL" || "TG" || "TK" || "TO" || "TT" || "TN" || "TR" || "TM" || "TC" || "TV" || "UG" || "UA" || "AE" || "GB" || "US" || "UM" || "UY" || "UZ" || "VU" || "VE" || "VN" || "VG" || "VI" || "WF" || "EH" || "YE" || "ZM" || "ZW" || "XK",
305
+ * // ],
306
+ * // ForwardedIPConfig: { // ForwardedIPConfig
307
+ * // HeaderName: "STRING_VALUE", // required
308
+ * // FallbackBehavior: "MATCH" || "NO_MATCH", // required
309
+ * // },
310
+ * // },
311
+ * // RuleGroupReferenceStatement: { // RuleGroupReferenceStatement
312
+ * // ARN: "STRING_VALUE", // required
313
+ * // ExcludedRules: [ // ExcludedRules
314
+ * // { // ExcludedRule
315
+ * // Name: "STRING_VALUE", // required
316
+ * // },
317
+ * // ],
318
+ * // RuleActionOverrides: [ // RuleActionOverrides
319
+ * // { // RuleActionOverride
320
+ * // Name: "STRING_VALUE", // required
321
+ * // ActionToUse: { // RuleAction
322
+ * // Block: {
323
+ * // CustomResponse: {
324
+ * // ResponseCode: Number("int"), // required
325
+ * // CustomResponseBodyKey: "STRING_VALUE",
326
+ * // ResponseHeaders: [
327
+ * // {
328
+ * // Name: "STRING_VALUE", // required
329
+ * // Value: "STRING_VALUE", // required
330
+ * // },
331
+ * // ],
332
+ * // },
333
+ * // },
334
+ * // Allow: {
335
+ * // CustomRequestHandling: {
336
+ * // InsertHeaders: [ // required
337
+ * // {
338
+ * // Name: "STRING_VALUE", // required
339
+ * // Value: "STRING_VALUE", // required
340
+ * // },
341
+ * // ],
342
+ * // },
343
+ * // },
344
+ * // Count: { // CountAction
345
+ * // CustomRequestHandling: {
346
+ * // InsertHeaders: [ // required
347
+ * // {
348
+ * // Name: "STRING_VALUE", // required
349
+ * // Value: "STRING_VALUE", // required
350
+ * // },
351
+ * // ],
352
+ * // },
353
+ * // },
354
+ * // Captcha: { // CaptchaAction
355
+ * // CustomRequestHandling: {
356
+ * // InsertHeaders: "<CustomHTTPHeaders>", // required
357
+ * // },
358
+ * // },
359
+ * // Challenge: { // ChallengeAction
360
+ * // CustomRequestHandling: {
361
+ * // InsertHeaders: "<CustomHTTPHeaders>", // required
362
+ * // },
363
+ * // },
364
+ * // },
365
+ * // },
366
+ * // ],
367
+ * // },
368
+ * // IPSetReferenceStatement: { // IPSetReferenceStatement
369
+ * // ARN: "STRING_VALUE", // required
370
+ * // IPSetForwardedIPConfig: { // IPSetForwardedIPConfig
371
+ * // HeaderName: "STRING_VALUE", // required
372
+ * // FallbackBehavior: "MATCH" || "NO_MATCH", // required
373
+ * // Position: "FIRST" || "LAST" || "ANY", // required
374
+ * // },
375
+ * // },
376
+ * // RegexPatternSetReferenceStatement: { // RegexPatternSetReferenceStatement
377
+ * // ARN: "STRING_VALUE", // required
378
+ * // FieldToMatch: {
379
+ * // SingleHeader: {
380
+ * // Name: "STRING_VALUE", // required
381
+ * // },
382
+ * // SingleQueryArgument: {
383
+ * // Name: "STRING_VALUE", // required
384
+ * // },
385
+ * // AllQueryArguments: {},
386
+ * // UriPath: {},
387
+ * // QueryString: {},
388
+ * // Body: {
389
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH",
390
+ * // },
391
+ * // Method: {},
392
+ * // JsonBody: {
393
+ * // MatchPattern: {
394
+ * // All: "<All>",
395
+ * // IncludedPaths: [
396
+ * // "STRING_VALUE",
397
+ * // ],
398
+ * // },
399
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
400
+ * // InvalidFallbackBehavior: "MATCH" || "NO_MATCH" || "EVALUATE_AS_STRING",
401
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH",
402
+ * // },
403
+ * // Headers: {
404
+ * // MatchPattern: {
405
+ * // All: "<All>",
406
+ * // IncludedHeaders: "<HeaderNames>",
407
+ * // ExcludedHeaders: "<HeaderNames>",
408
+ * // },
409
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
410
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH", // required
411
+ * // },
412
+ * // Cookies: {
413
+ * // MatchPattern: {
414
+ * // All: "<All>",
415
+ * // IncludedCookies: "<CookieNames>",
416
+ * // ExcludedCookies: "<CookieNames>",
417
+ * // },
418
+ * // MatchScope: "ALL" || "KEY" || "VALUE", // required
419
+ * // OversizeHandling: "CONTINUE" || "MATCH" || "NO_MATCH", // required
420
+ * // },
421
+ * // },
422
+ * // TextTransformations: [ // required
423
+ * // {
424
+ * // Priority: Number("int"), // required
425
+ * // Type: "NONE" || "COMPRESS_WHITE_SPACE" || "HTML_ENTITY_DECODE" || "LOWERCASE" || "CMD_LINE" || "URL_DECODE" || "BASE64_DECODE" || "HEX_DECODE" || "MD5" || "REPLACE_COMMENTS" || "ESCAPE_SEQ_DECODE" || "SQL_HEX_DECODE" || "CSS_DECODE" || "JS_DECODE" || "NORMALIZE_PATH" || "NORMALIZE_PATH_WIN" || "REMOVE_NULLS" || "REPLACE_NULLS" || "BASE64_DECODE_EXT" || "URL_DECODE_UNI" || "UTF8_TO_UNICODE", // required
426
+ * // },
427
+ * // ],
428
+ * // },
429
+ * // RateBasedStatement: { // RateBasedStatement
430
+ * // Limit: Number("long"), // required
431
+ * // AggregateKeyType: "IP" || "FORWARDED_IP", // required
432
+ * // ScopeDownStatement: {
433
+ * // ByteMatchStatement: {
434
+ * // SearchString: "BLOB_VALUE", // required
435
+ * // FieldToMatch: "<FieldToMatch>", // required
436
+ * // TextTransformations: "<TextTransformations>", // required
437
+ * // PositionalConstraint: "EXACTLY" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CONTAINS_WORD", // required
438
+ * // },
439
+ * // SqliMatchStatement: {
440
+ * // FieldToMatch: "<FieldToMatch>", // required
441
+ * // TextTransformations: "<TextTransformations>", // required
442
+ * // SensitivityLevel: "LOW" || "HIGH",
443
+ * // },
444
+ * // XssMatchStatement: {
445
+ * // FieldToMatch: "<FieldToMatch>", // required
446
+ * // TextTransformations: "<TextTransformations>", // required
447
+ * // },
448
+ * // SizeConstraintStatement: {
449
+ * // FieldToMatch: "<FieldToMatch>", // required
450
+ * // ComparisonOperator: "EQ" || "NE" || "LE" || "LT" || "GE" || "GT", // required
451
+ * // Size: Number("long"), // required
452
+ * // TextTransformations: "<TextTransformations>", // required
453
+ * // },
454
+ * // GeoMatchStatement: {
455
+ * // CountryCodes: [
456
+ * // "AF" || "AX" || "AL" || "DZ" || "AS" || "AD" || "AO" || "AI" || "AQ" || "AG" || "AR" || "AM" || "AW" || "AU" || "AT" || "AZ" || "BS" || "BH" || "BD" || "BB" || "BY" || "BE" || "BZ" || "BJ" || "BM" || "BT" || "BO" || "BQ" || "BA" || "BW" || "BV" || "BR" || "IO" || "BN" || "BG" || "BF" || "BI" || "KH" || "CM" || "CA" || "CV" || "KY" || "CF" || "TD" || "CL" || "CN" || "CX" || "CC" || "CO" || "KM" || "CG" || "CD" || "CK" || "CR" || "CI" || "HR" || "CU" || "CW" || "CY" || "CZ" || "DK" || "DJ" || "DM" || "DO" || "EC" || "EG" || "SV" || "GQ" || "ER" || "EE" || "ET" || "FK" || "FO" || "FJ" || "FI" || "FR" || "GF" || "PF" || "TF" || "GA" || "GM" || "GE" || "DE" || "GH" || "GI" || "GR" || "GL" || "GD" || "GP" || "GU" || "GT" || "GG" || "GN" || "GW" || "GY" || "HT" || "HM" || "VA" || "HN" || "HK" || "HU" || "IS" || "IN" || "ID" || "IR" || "IQ" || "IE" || "IM" || "IL" || "IT" || "JM" || "JP" || "JE" || "JO" || "KZ" || "KE" || "KI" || "KP" || "KR" || "KW" || "KG" || "LA" || "LV" || "LB" || "LS" || "LR" || "LY" || "LI" || "LT" || "LU" || "MO" || "MK" || "MG" || "MW" || "MY" || "MV" || "ML" || "MT" || "MH" || "MQ" || "MR" || "MU" || "YT" || "MX" || "FM" || "MD" || "MC" || "MN" || "ME" || "MS" || "MA" || "MZ" || "MM" || "NA" || "NR" || "NP" || "NL" || "NC" || "NZ" || "NI" || "NE" || "NG" || "NU" || "NF" || "MP" || "NO" || "OM" || "PK" || "PW" || "PS" || "PA" || "PG" || "PY" || "PE" || "PH" || "PN" || "PL" || "PT" || "PR" || "QA" || "RE" || "RO" || "RU" || "RW" || "BL" || "SH" || "KN" || "LC" || "MF" || "PM" || "VC" || "WS" || "SM" || "ST" || "SA" || "SN" || "RS" || "SC" || "SL" || "SG" || "SX" || "SK" || "SI" || "SB" || "SO" || "ZA" || "GS" || "SS" || "ES" || "LK" || "SD" || "SR" || "SJ" || "SZ" || "SE" || "CH" || "SY" || "TW" || "TJ" || "TZ" || "TH" || "TL" || "TG" || "TK" || "TO" || "TT" || "TN" || "TR" || "TM" || "TC" || "TV" || "UG" || "UA" || "AE" || "GB" || "US" || "UM" || "UY" || "UZ" || "VU" || "VE" || "VN" || "VG" || "VI" || "WF" || "EH" || "YE" || "ZM" || "ZW" || "XK",
457
+ * // ],
458
+ * // ForwardedIPConfig: {
459
+ * // HeaderName: "STRING_VALUE", // required
460
+ * // FallbackBehavior: "MATCH" || "NO_MATCH", // required
461
+ * // },
462
+ * // },
463
+ * // RuleGroupReferenceStatement: {
464
+ * // ARN: "STRING_VALUE", // required
465
+ * // ExcludedRules: [
466
+ * // {
467
+ * // Name: "STRING_VALUE", // required
468
+ * // },
469
+ * // ],
470
+ * // RuleActionOverrides: [
471
+ * // {
472
+ * // Name: "STRING_VALUE", // required
473
+ * // ActionToUse: {
474
+ * // Block: "<BlockAction>",
475
+ * // Allow: "<AllowAction>",
476
+ * // Count: {
477
+ * // CustomRequestHandling: "<CustomRequestHandling>",
478
+ * // },
479
+ * // Captcha: {
480
+ * // CustomRequestHandling: "<CustomRequestHandling>",
481
+ * // },
482
+ * // Challenge: {
483
+ * // CustomRequestHandling: "<CustomRequestHandling>",
484
+ * // },
485
+ * // },
486
+ * // },
487
+ * // ],
488
+ * // },
489
+ * // IPSetReferenceStatement: {
490
+ * // ARN: "STRING_VALUE", // required
491
+ * // IPSetForwardedIPConfig: {
492
+ * // HeaderName: "STRING_VALUE", // required
493
+ * // FallbackBehavior: "MATCH" || "NO_MATCH", // required
494
+ * // Position: "FIRST" || "LAST" || "ANY", // required
495
+ * // },
496
+ * // },
497
+ * // RegexPatternSetReferenceStatement: {
498
+ * // ARN: "STRING_VALUE", // required
499
+ * // FieldToMatch: "<FieldToMatch>", // required
500
+ * // TextTransformations: "<TextTransformations>", // required
501
+ * // },
502
+ * // RateBasedStatement: {
503
+ * // Limit: Number("long"), // required
504
+ * // AggregateKeyType: "IP" || "FORWARDED_IP", // required
505
+ * // ScopeDownStatement: "<Statement>",
506
+ * // ForwardedIPConfig: {
507
+ * // HeaderName: "STRING_VALUE", // required
508
+ * // FallbackBehavior: "MATCH" || "NO_MATCH", // required
509
+ * // },
510
+ * // },
511
+ * // AndStatement: { // AndStatement
512
+ * // Statements: [ // Statements // required
513
+ * // "<Statement>",
514
+ * // ],
515
+ * // },
516
+ * // OrStatement: { // OrStatement
517
+ * // Statements: [ // required
518
+ * // "<Statement>",
519
+ * // ],
520
+ * // },
521
+ * // NotStatement: { // NotStatement
522
+ * // Statement: "<Statement>", // required
523
+ * // },
524
+ * // ManagedRuleGroupStatement: { // ManagedRuleGroupStatement
525
+ * // VendorName: "STRING_VALUE", // required
526
+ * // Name: "STRING_VALUE", // required
527
+ * // Version: "STRING_VALUE",
528
+ * // ExcludedRules: [
529
+ * // {
530
+ * // Name: "STRING_VALUE", // required
531
+ * // },
532
+ * // ],
533
+ * // ScopeDownStatement: "<Statement>",
534
+ * // ManagedRuleGroupConfigs: [ // ManagedRuleGroupConfigs
535
+ * // { // ManagedRuleGroupConfig
536
+ * // LoginPath: "STRING_VALUE",
537
+ * // PayloadType: "JSON" || "FORM_ENCODED",
538
+ * // UsernameField: { // UsernameField
539
+ * // Identifier: "STRING_VALUE", // required
540
+ * // },
541
+ * // PasswordField: { // PasswordField
542
+ * // Identifier: "STRING_VALUE", // required
543
+ * // },
544
+ * // AWSManagedRulesBotControlRuleSet: { // AWSManagedRulesBotControlRuleSet
545
+ * // InspectionLevel: "COMMON" || "TARGETED", // required
546
+ * // },
547
+ * // AWSManagedRulesATPRuleSet: { // AWSManagedRulesATPRuleSet
548
+ * // LoginPath: "STRING_VALUE", // required
549
+ * // RequestInspection: { // RequestInspection
550
+ * // PayloadType: "JSON" || "FORM_ENCODED", // required
551
+ * // UsernameField: {
552
+ * // Identifier: "STRING_VALUE", // required
553
+ * // },
554
+ * // PasswordField: {
555
+ * // Identifier: "STRING_VALUE", // required
556
+ * // },
557
+ * // },
558
+ * // ResponseInspection: { // ResponseInspection
559
+ * // StatusCode: { // ResponseInspectionStatusCode
560
+ * // SuccessCodes: [ // ResponseInspectionStatusCodeSuccessCodes // required
561
+ * // Number("int"),
562
+ * // ],
563
+ * // FailureCodes: [ // ResponseInspectionStatusCodeFailureCodes // required
564
+ * // Number("int"),
565
+ * // ],
566
+ * // },
567
+ * // Header: { // ResponseInspectionHeader
568
+ * // Name: "STRING_VALUE", // required
569
+ * // SuccessValues: [ // ResponseInspectionHeaderSuccessValues // required
570
+ * // "STRING_VALUE",
571
+ * // ],
572
+ * // FailureValues: [ // ResponseInspectionHeaderFailureValues // required
573
+ * // "STRING_VALUE",
574
+ * // ],
575
+ * // },
576
+ * // BodyContains: { // ResponseInspectionBodyContains
577
+ * // SuccessStrings: [ // ResponseInspectionBodyContainsSuccessStrings // required
578
+ * // "STRING_VALUE",
579
+ * // ],
580
+ * // FailureStrings: [ // ResponseInspectionBodyContainsFailureStrings // required
581
+ * // "STRING_VALUE",
582
+ * // ],
583
+ * // },
584
+ * // Json: { // ResponseInspectionJson
585
+ * // Identifier: "STRING_VALUE", // required
586
+ * // SuccessValues: [ // ResponseInspectionJsonSuccessValues // required
587
+ * // "STRING_VALUE",
588
+ * // ],
589
+ * // FailureValues: [ // ResponseInspectionJsonFailureValues // required
590
+ * // "STRING_VALUE",
591
+ * // ],
592
+ * // },
593
+ * // },
594
+ * // },
595
+ * // },
596
+ * // ],
597
+ * // RuleActionOverrides: [
598
+ * // {
599
+ * // Name: "STRING_VALUE", // required
600
+ * // ActionToUse: {
601
+ * // Block: "<BlockAction>",
602
+ * // Allow: "<AllowAction>",
603
+ * // Count: {
604
+ * // CustomRequestHandling: "<CustomRequestHandling>",
605
+ * // },
606
+ * // Captcha: {
607
+ * // CustomRequestHandling: "<CustomRequestHandling>",
608
+ * // },
609
+ * // Challenge: {
610
+ * // CustomRequestHandling: "<CustomRequestHandling>",
611
+ * // },
612
+ * // },
613
+ * // },
614
+ * // ],
615
+ * // },
616
+ * // LabelMatchStatement: { // LabelMatchStatement
617
+ * // Scope: "LABEL" || "NAMESPACE", // required
618
+ * // Key: "STRING_VALUE", // required
619
+ * // },
620
+ * // RegexMatchStatement: { // RegexMatchStatement
621
+ * // RegexString: "STRING_VALUE", // required
622
+ * // FieldToMatch: "<FieldToMatch>", // required
623
+ * // TextTransformations: "<TextTransformations>", // required
624
+ * // },
625
+ * // },
626
+ * // ForwardedIPConfig: {
627
+ * // HeaderName: "STRING_VALUE", // required
628
+ * // FallbackBehavior: "MATCH" || "NO_MATCH", // required
629
+ * // },
630
+ * // },
631
+ * // AndStatement: {
632
+ * // Statements: [ // required
633
+ * // "<Statement>",
634
+ * // ],
635
+ * // },
636
+ * // OrStatement: {
637
+ * // Statements: [ // required
638
+ * // "<Statement>",
639
+ * // ],
640
+ * // },
641
+ * // NotStatement: {
642
+ * // Statement: "<Statement>", // required
643
+ * // },
644
+ * // ManagedRuleGroupStatement: {
645
+ * // VendorName: "STRING_VALUE", // required
646
+ * // Name: "STRING_VALUE", // required
647
+ * // Version: "STRING_VALUE",
648
+ * // ExcludedRules: [
649
+ * // {
650
+ * // Name: "STRING_VALUE", // required
651
+ * // },
652
+ * // ],
653
+ * // ScopeDownStatement: "<Statement>",
654
+ * // ManagedRuleGroupConfigs: [
655
+ * // {
656
+ * // LoginPath: "STRING_VALUE",
657
+ * // PayloadType: "JSON" || "FORM_ENCODED",
658
+ * // UsernameField: "<UsernameField>",
659
+ * // PasswordField: "<PasswordField>",
660
+ * // AWSManagedRulesBotControlRuleSet: {
661
+ * // InspectionLevel: "COMMON" || "TARGETED", // required
662
+ * // },
663
+ * // AWSManagedRulesATPRuleSet: {
664
+ * // LoginPath: "STRING_VALUE", // required
665
+ * // RequestInspection: {
666
+ * // PayloadType: "JSON" || "FORM_ENCODED", // required
667
+ * // UsernameField: "<UsernameField>", // required
668
+ * // PasswordField: "<PasswordField>", // required
669
+ * // },
670
+ * // ResponseInspection: {
671
+ * // StatusCode: {
672
+ * // SuccessCodes: [ // required
673
+ * // Number("int"),
674
+ * // ],
675
+ * // FailureCodes: [ // required
676
+ * // Number("int"),
677
+ * // ],
678
+ * // },
679
+ * // Header: {
680
+ * // Name: "STRING_VALUE", // required
681
+ * // SuccessValues: [ // required
682
+ * // "STRING_VALUE",
683
+ * // ],
684
+ * // FailureValues: [ // required
685
+ * // "STRING_VALUE",
686
+ * // ],
687
+ * // },
688
+ * // BodyContains: {
689
+ * // SuccessStrings: [ // required
690
+ * // "STRING_VALUE",
691
+ * // ],
692
+ * // FailureStrings: [ // required
693
+ * // "STRING_VALUE",
694
+ * // ],
695
+ * // },
696
+ * // Json: {
697
+ * // Identifier: "STRING_VALUE", // required
698
+ * // SuccessValues: [ // required
699
+ * // "STRING_VALUE",
700
+ * // ],
701
+ * // FailureValues: [ // required
702
+ * // "STRING_VALUE",
703
+ * // ],
704
+ * // },
705
+ * // },
706
+ * // },
707
+ * // },
708
+ * // ],
709
+ * // RuleActionOverrides: [
710
+ * // {
711
+ * // Name: "STRING_VALUE", // required
712
+ * // ActionToUse: {
713
+ * // Block: "<BlockAction>",
714
+ * // Allow: "<AllowAction>",
715
+ * // Count: {
716
+ * // CustomRequestHandling: "<CustomRequestHandling>",
717
+ * // },
718
+ * // Captcha: {
719
+ * // CustomRequestHandling: "<CustomRequestHandling>",
720
+ * // },
721
+ * // Challenge: {
722
+ * // CustomRequestHandling: "<CustomRequestHandling>",
723
+ * // },
724
+ * // },
725
+ * // },
726
+ * // ],
727
+ * // },
728
+ * // LabelMatchStatement: {
729
+ * // Scope: "LABEL" || "NAMESPACE", // required
730
+ * // Key: "STRING_VALUE", // required
731
+ * // },
732
+ * // RegexMatchStatement: {
733
+ * // RegexString: "STRING_VALUE", // required
734
+ * // FieldToMatch: "<FieldToMatch>", // required
735
+ * // TextTransformations: "<TextTransformations>", // required
736
+ * // },
737
+ * // },
738
+ * // Action: "<RuleAction>",
739
+ * // OverrideAction: { // OverrideAction
740
+ * // Count: "<CountAction>",
741
+ * // None: {},
742
+ * // },
743
+ * // RuleLabels: [ // Labels
744
+ * // { // Label
745
+ * // Name: "STRING_VALUE", // required
746
+ * // },
747
+ * // ],
748
+ * // VisibilityConfig: { // VisibilityConfig
749
+ * // SampledRequestsEnabled: true || false, // required
750
+ * // CloudWatchMetricsEnabled: true || false, // required
751
+ * // MetricName: "STRING_VALUE", // required
752
+ * // },
753
+ * // CaptchaConfig: { // CaptchaConfig
754
+ * // ImmunityTimeProperty: { // ImmunityTimeProperty
755
+ * // ImmunityTime: Number("long"), // required
756
+ * // },
757
+ * // },
758
+ * // ChallengeConfig: { // ChallengeConfig
759
+ * // ImmunityTimeProperty: {
760
+ * // ImmunityTime: Number("long"), // required
761
+ * // },
762
+ * // },
763
+ * // },
764
+ * // ],
765
+ * // VisibilityConfig: {
766
+ * // SampledRequestsEnabled: true || false, // required
767
+ * // CloudWatchMetricsEnabled: true || false, // required
768
+ * // MetricName: "STRING_VALUE", // required
769
+ * // },
770
+ * // Capacity: Number("long"),
771
+ * // PreProcessFirewallManagerRuleGroups: [ // FirewallManagerRuleGroups
772
+ * // { // FirewallManagerRuleGroup
773
+ * // Name: "STRING_VALUE", // required
774
+ * // Priority: Number("int"), // required
775
+ * // FirewallManagerStatement: { // FirewallManagerStatement
776
+ * // ManagedRuleGroupStatement: {
777
+ * // VendorName: "STRING_VALUE", // required
778
+ * // Name: "STRING_VALUE", // required
779
+ * // Version: "STRING_VALUE",
780
+ * // ExcludedRules: [
781
+ * // {
782
+ * // Name: "STRING_VALUE", // required
783
+ * // },
784
+ * // ],
785
+ * // ScopeDownStatement: "<Statement>",
786
+ * // ManagedRuleGroupConfigs: [
787
+ * // {
788
+ * // LoginPath: "STRING_VALUE",
789
+ * // PayloadType: "JSON" || "FORM_ENCODED",
790
+ * // UsernameField: "<UsernameField>",
791
+ * // PasswordField: "<PasswordField>",
792
+ * // AWSManagedRulesBotControlRuleSet: {
793
+ * // InspectionLevel: "COMMON" || "TARGETED", // required
794
+ * // },
795
+ * // AWSManagedRulesATPRuleSet: {
796
+ * // LoginPath: "STRING_VALUE", // required
797
+ * // RequestInspection: {
798
+ * // PayloadType: "JSON" || "FORM_ENCODED", // required
799
+ * // UsernameField: "<UsernameField>", // required
800
+ * // PasswordField: "<PasswordField>", // required
801
+ * // },
802
+ * // ResponseInspection: {
803
+ * // StatusCode: {
804
+ * // SuccessCodes: [ // required
805
+ * // Number("int"),
806
+ * // ],
807
+ * // FailureCodes: [ // required
808
+ * // Number("int"),
809
+ * // ],
810
+ * // },
811
+ * // Header: {
812
+ * // Name: "STRING_VALUE", // required
813
+ * // SuccessValues: [ // required
814
+ * // "STRING_VALUE",
815
+ * // ],
816
+ * // FailureValues: [ // required
817
+ * // "STRING_VALUE",
818
+ * // ],
819
+ * // },
820
+ * // BodyContains: {
821
+ * // SuccessStrings: [ // required
822
+ * // "STRING_VALUE",
823
+ * // ],
824
+ * // FailureStrings: [ // required
825
+ * // "STRING_VALUE",
826
+ * // ],
827
+ * // },
828
+ * // Json: {
829
+ * // Identifier: "STRING_VALUE", // required
830
+ * // SuccessValues: [ // required
831
+ * // "STRING_VALUE",
832
+ * // ],
833
+ * // FailureValues: [ // required
834
+ * // "STRING_VALUE",
835
+ * // ],
836
+ * // },
837
+ * // },
838
+ * // },
839
+ * // },
840
+ * // ],
841
+ * // RuleActionOverrides: [
842
+ * // {
843
+ * // Name: "STRING_VALUE", // required
844
+ * // ActionToUse: "<RuleAction>", // required
845
+ * // },
846
+ * // ],
847
+ * // },
848
+ * // RuleGroupReferenceStatement: {
849
+ * // ARN: "STRING_VALUE", // required
850
+ * // ExcludedRules: "<ExcludedRules>",
851
+ * // RuleActionOverrides: "<RuleActionOverrides>",
852
+ * // },
853
+ * // },
854
+ * // OverrideAction: {
855
+ * // Count: "<CountAction>",
856
+ * // None: {},
857
+ * // },
858
+ * // VisibilityConfig: {
859
+ * // SampledRequestsEnabled: true || false, // required
860
+ * // CloudWatchMetricsEnabled: true || false, // required
861
+ * // MetricName: "STRING_VALUE", // required
862
+ * // },
863
+ * // },
864
+ * // ],
865
+ * // PostProcessFirewallManagerRuleGroups: [
866
+ * // {
867
+ * // Name: "STRING_VALUE", // required
868
+ * // Priority: Number("int"), // required
869
+ * // FirewallManagerStatement: {
870
+ * // ManagedRuleGroupStatement: {
871
+ * // VendorName: "STRING_VALUE", // required
872
+ * // Name: "STRING_VALUE", // required
873
+ * // Version: "STRING_VALUE",
874
+ * // ExcludedRules: "<ExcludedRules>",
875
+ * // ScopeDownStatement: "<Statement>",
876
+ * // ManagedRuleGroupConfigs: [
877
+ * // {
878
+ * // LoginPath: "STRING_VALUE",
879
+ * // PayloadType: "JSON" || "FORM_ENCODED",
880
+ * // UsernameField: "<UsernameField>",
881
+ * // PasswordField: "<PasswordField>",
882
+ * // AWSManagedRulesBotControlRuleSet: {
883
+ * // InspectionLevel: "COMMON" || "TARGETED", // required
884
+ * // },
885
+ * // AWSManagedRulesATPRuleSet: {
886
+ * // LoginPath: "STRING_VALUE", // required
887
+ * // RequestInspection: {
888
+ * // PayloadType: "JSON" || "FORM_ENCODED", // required
889
+ * // UsernameField: "<UsernameField>", // required
890
+ * // PasswordField: "<PasswordField>", // required
891
+ * // },
892
+ * // ResponseInspection: {
893
+ * // StatusCode: {
894
+ * // SuccessCodes: [ // required
895
+ * // Number("int"),
896
+ * // ],
897
+ * // FailureCodes: [ // required
898
+ * // Number("int"),
899
+ * // ],
900
+ * // },
901
+ * // Header: {
902
+ * // Name: "STRING_VALUE", // required
903
+ * // SuccessValues: [ // required
904
+ * // "STRING_VALUE",
905
+ * // ],
906
+ * // FailureValues: [ // required
907
+ * // "STRING_VALUE",
908
+ * // ],
909
+ * // },
910
+ * // BodyContains: {
911
+ * // SuccessStrings: [ // required
912
+ * // "STRING_VALUE",
913
+ * // ],
914
+ * // FailureStrings: [ // required
915
+ * // "STRING_VALUE",
916
+ * // ],
917
+ * // },
918
+ * // Json: {
919
+ * // Identifier: "STRING_VALUE", // required
920
+ * // SuccessValues: [ // required
921
+ * // "STRING_VALUE",
922
+ * // ],
923
+ * // FailureValues: [ // required
924
+ * // "STRING_VALUE",
925
+ * // ],
926
+ * // },
927
+ * // },
928
+ * // },
929
+ * // },
930
+ * // ],
931
+ * // RuleActionOverrides: "<RuleActionOverrides>",
932
+ * // },
933
+ * // RuleGroupReferenceStatement: {
934
+ * // ARN: "STRING_VALUE", // required
935
+ * // ExcludedRules: "<ExcludedRules>",
936
+ * // RuleActionOverrides: "<RuleActionOverrides>",
937
+ * // },
938
+ * // },
939
+ * // OverrideAction: {
940
+ * // Count: "<CountAction>",
941
+ * // None: {},
942
+ * // },
943
+ * // VisibilityConfig: {
944
+ * // SampledRequestsEnabled: true || false, // required
945
+ * // CloudWatchMetricsEnabled: true || false, // required
946
+ * // MetricName: "STRING_VALUE", // required
947
+ * // },
948
+ * // },
949
+ * // ],
950
+ * // ManagedByFirewallManager: true || false,
951
+ * // LabelNamespace: "STRING_VALUE",
952
+ * // CustomResponseBodies: { // CustomResponseBodies
953
+ * // "<keys>": { // CustomResponseBody
954
+ * // ContentType: "TEXT_PLAIN" || "TEXT_HTML" || "APPLICATION_JSON", // required
955
+ * // Content: "STRING_VALUE", // required
956
+ * // },
957
+ * // },
958
+ * // CaptchaConfig: {
959
+ * // ImmunityTimeProperty: {
960
+ * // ImmunityTime: Number("long"), // required
961
+ * // },
962
+ * // },
963
+ * // ChallengeConfig: {
964
+ * // ImmunityTimeProperty: {
965
+ * // ImmunityTime: Number("long"), // required
966
+ * // },
967
+ * // },
968
+ * // TokenDomains: [ // TokenDomains
969
+ * // "STRING_VALUE",
970
+ * // ],
971
+ * // AssociationConfig: { // AssociationConfig
972
+ * // RequestBody: { // RequestBody
973
+ * // "<keys>": { // RequestBodyAssociatedResourceTypeConfig
974
+ * // DefaultSizeInspectionLimit: "KB_16" || "KB_32" || "KB_48" || "KB_64", // required
975
+ * // },
976
+ * // },
977
+ * // },
978
+ * // },
979
+ * // };
980
+ *
34
981
  * ```
35
982
  *
36
983
  * @param GetWebACLForResourceCommandInput - {@link GetWebACLForResourceCommandInput}
@@ -80,6 +1027,8 @@ export interface GetWebACLForResourceCommandOutput extends GetWebACLForResourceR
80
1027
  * for changes to propagate. Verify the resources that you are specifying in your request
81
1028
  * parameters and then retry the operation.</p>
82
1029
  *
1030
+ * @throws {@link WAFV2ServiceException}
1031
+ * <p>Base exception class for all service exceptions from WAFV2 service.</p>
83
1032
  *
84
1033
  */
85
1034
  export declare class GetWebACLForResourceCommand extends $Command<GetWebACLForResourceCommandInput, GetWebACLForResourceCommandOutput, WAFV2ClientResolvedConfig> {