@aws-sdk/client-waf-regional 3.934.0 → 3.935.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.
@@ -0,0 +1,508 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const WafActionType: {
6
+ readonly ALLOW: "ALLOW";
7
+ readonly BLOCK: "BLOCK";
8
+ readonly COUNT: "COUNT";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type WafActionType = (typeof WafActionType)[keyof typeof WafActionType];
14
+ /**
15
+ * @public
16
+ * @enum
17
+ */
18
+ export declare const WafOverrideActionType: {
19
+ readonly COUNT: "COUNT";
20
+ readonly NONE: "NONE";
21
+ };
22
+ /**
23
+ * @public
24
+ */
25
+ export type WafOverrideActionType = (typeof WafOverrideActionType)[keyof typeof WafOverrideActionType];
26
+ /**
27
+ * @public
28
+ * @enum
29
+ */
30
+ export declare const WafRuleType: {
31
+ readonly GROUP: "GROUP";
32
+ readonly RATE_BASED: "RATE_BASED";
33
+ readonly REGULAR: "REGULAR";
34
+ };
35
+ /**
36
+ * @public
37
+ */
38
+ export type WafRuleType = (typeof WafRuleType)[keyof typeof WafRuleType];
39
+ /**
40
+ * @public
41
+ * @enum
42
+ */
43
+ export declare const ParameterExceptionField: {
44
+ readonly BYTE_MATCH_FIELD_TYPE: "BYTE_MATCH_FIELD_TYPE";
45
+ readonly BYTE_MATCH_POSITIONAL_CONSTRAINT: "BYTE_MATCH_POSITIONAL_CONSTRAINT";
46
+ readonly BYTE_MATCH_TEXT_TRANSFORMATION: "BYTE_MATCH_TEXT_TRANSFORMATION";
47
+ readonly CHANGE_ACTION: "CHANGE_ACTION";
48
+ readonly GEO_MATCH_LOCATION_TYPE: "GEO_MATCH_LOCATION_TYPE";
49
+ readonly GEO_MATCH_LOCATION_VALUE: "GEO_MATCH_LOCATION_VALUE";
50
+ readonly IPSET_TYPE: "IPSET_TYPE";
51
+ readonly NEXT_MARKER: "NEXT_MARKER";
52
+ readonly PREDICATE_TYPE: "PREDICATE_TYPE";
53
+ readonly RATE_KEY: "RATE_KEY";
54
+ readonly RESOURCE_ARN: "RESOURCE_ARN";
55
+ readonly RULE_TYPE: "RULE_TYPE";
56
+ readonly SIZE_CONSTRAINT_COMPARISON_OPERATOR: "SIZE_CONSTRAINT_COMPARISON_OPERATOR";
57
+ readonly SQL_INJECTION_MATCH_FIELD_TYPE: "SQL_INJECTION_MATCH_FIELD_TYPE";
58
+ readonly TAGS: "TAGS";
59
+ readonly TAG_KEYS: "TAG_KEYS";
60
+ readonly WAF_ACTION: "WAF_ACTION";
61
+ readonly WAF_OVERRIDE_ACTION: "WAF_OVERRIDE_ACTION";
62
+ };
63
+ /**
64
+ * @public
65
+ */
66
+ export type ParameterExceptionField = (typeof ParameterExceptionField)[keyof typeof ParameterExceptionField];
67
+ /**
68
+ * @public
69
+ * @enum
70
+ */
71
+ export declare const ParameterExceptionReason: {
72
+ readonly ILLEGAL_ARGUMENT: "ILLEGAL_ARGUMENT";
73
+ readonly ILLEGAL_COMBINATION: "ILLEGAL_COMBINATION";
74
+ readonly INVALID_OPTION: "INVALID_OPTION";
75
+ readonly INVALID_TAG_KEY: "INVALID_TAG_KEY";
76
+ };
77
+ /**
78
+ * @public
79
+ */
80
+ export type ParameterExceptionReason = (typeof ParameterExceptionReason)[keyof typeof ParameterExceptionReason];
81
+ /**
82
+ * @public
83
+ * @enum
84
+ */
85
+ export declare const MatchFieldType: {
86
+ readonly ALL_QUERY_ARGS: "ALL_QUERY_ARGS";
87
+ readonly BODY: "BODY";
88
+ readonly HEADER: "HEADER";
89
+ readonly METHOD: "METHOD";
90
+ readonly QUERY_STRING: "QUERY_STRING";
91
+ readonly SINGLE_QUERY_ARG: "SINGLE_QUERY_ARG";
92
+ readonly URI: "URI";
93
+ };
94
+ /**
95
+ * @public
96
+ */
97
+ export type MatchFieldType = (typeof MatchFieldType)[keyof typeof MatchFieldType];
98
+ /**
99
+ * @public
100
+ * @enum
101
+ */
102
+ export declare const PositionalConstraint: {
103
+ readonly CONTAINS: "CONTAINS";
104
+ readonly CONTAINS_WORD: "CONTAINS_WORD";
105
+ readonly ENDS_WITH: "ENDS_WITH";
106
+ readonly EXACTLY: "EXACTLY";
107
+ readonly STARTS_WITH: "STARTS_WITH";
108
+ };
109
+ /**
110
+ * @public
111
+ */
112
+ export type PositionalConstraint = (typeof PositionalConstraint)[keyof typeof PositionalConstraint];
113
+ /**
114
+ * @public
115
+ * @enum
116
+ */
117
+ export declare const TextTransformation: {
118
+ readonly CMD_LINE: "CMD_LINE";
119
+ readonly COMPRESS_WHITE_SPACE: "COMPRESS_WHITE_SPACE";
120
+ readonly HTML_ENTITY_DECODE: "HTML_ENTITY_DECODE";
121
+ readonly LOWERCASE: "LOWERCASE";
122
+ readonly NONE: "NONE";
123
+ readonly URL_DECODE: "URL_DECODE";
124
+ };
125
+ /**
126
+ * @public
127
+ */
128
+ export type TextTransformation = (typeof TextTransformation)[keyof typeof TextTransformation];
129
+ /**
130
+ * @public
131
+ * @enum
132
+ */
133
+ export declare const GeoMatchConstraintType: {
134
+ readonly Country: "Country";
135
+ };
136
+ /**
137
+ * @public
138
+ */
139
+ export type GeoMatchConstraintType = (typeof GeoMatchConstraintType)[keyof typeof GeoMatchConstraintType];
140
+ /**
141
+ * @public
142
+ * @enum
143
+ */
144
+ export declare const GeoMatchConstraintValue: {
145
+ readonly AD: "AD";
146
+ readonly AE: "AE";
147
+ readonly AF: "AF";
148
+ readonly AG: "AG";
149
+ readonly AI: "AI";
150
+ readonly AL: "AL";
151
+ readonly AM: "AM";
152
+ readonly AO: "AO";
153
+ readonly AQ: "AQ";
154
+ readonly AR: "AR";
155
+ readonly AS: "AS";
156
+ readonly AT: "AT";
157
+ readonly AU: "AU";
158
+ readonly AW: "AW";
159
+ readonly AX: "AX";
160
+ readonly AZ: "AZ";
161
+ readonly BA: "BA";
162
+ readonly BB: "BB";
163
+ readonly BD: "BD";
164
+ readonly BE: "BE";
165
+ readonly BF: "BF";
166
+ readonly BG: "BG";
167
+ readonly BH: "BH";
168
+ readonly BI: "BI";
169
+ readonly BJ: "BJ";
170
+ readonly BL: "BL";
171
+ readonly BM: "BM";
172
+ readonly BN: "BN";
173
+ readonly BO: "BO";
174
+ readonly BQ: "BQ";
175
+ readonly BR: "BR";
176
+ readonly BS: "BS";
177
+ readonly BT: "BT";
178
+ readonly BV: "BV";
179
+ readonly BW: "BW";
180
+ readonly BY: "BY";
181
+ readonly BZ: "BZ";
182
+ readonly CA: "CA";
183
+ readonly CC: "CC";
184
+ readonly CD: "CD";
185
+ readonly CF: "CF";
186
+ readonly CG: "CG";
187
+ readonly CH: "CH";
188
+ readonly CI: "CI";
189
+ readonly CK: "CK";
190
+ readonly CL: "CL";
191
+ readonly CM: "CM";
192
+ readonly CN: "CN";
193
+ readonly CO: "CO";
194
+ readonly CR: "CR";
195
+ readonly CU: "CU";
196
+ readonly CV: "CV";
197
+ readonly CW: "CW";
198
+ readonly CX: "CX";
199
+ readonly CY: "CY";
200
+ readonly CZ: "CZ";
201
+ readonly DE: "DE";
202
+ readonly DJ: "DJ";
203
+ readonly DK: "DK";
204
+ readonly DM: "DM";
205
+ readonly DO: "DO";
206
+ readonly DZ: "DZ";
207
+ readonly EC: "EC";
208
+ readonly EE: "EE";
209
+ readonly EG: "EG";
210
+ readonly EH: "EH";
211
+ readonly ER: "ER";
212
+ readonly ES: "ES";
213
+ readonly ET: "ET";
214
+ readonly FI: "FI";
215
+ readonly FJ: "FJ";
216
+ readonly FK: "FK";
217
+ readonly FM: "FM";
218
+ readonly FO: "FO";
219
+ readonly FR: "FR";
220
+ readonly GA: "GA";
221
+ readonly GB: "GB";
222
+ readonly GD: "GD";
223
+ readonly GE: "GE";
224
+ readonly GF: "GF";
225
+ readonly GG: "GG";
226
+ readonly GH: "GH";
227
+ readonly GI: "GI";
228
+ readonly GL: "GL";
229
+ readonly GM: "GM";
230
+ readonly GN: "GN";
231
+ readonly GP: "GP";
232
+ readonly GQ: "GQ";
233
+ readonly GR: "GR";
234
+ readonly GS: "GS";
235
+ readonly GT: "GT";
236
+ readonly GU: "GU";
237
+ readonly GW: "GW";
238
+ readonly GY: "GY";
239
+ readonly HK: "HK";
240
+ readonly HM: "HM";
241
+ readonly HN: "HN";
242
+ readonly HR: "HR";
243
+ readonly HT: "HT";
244
+ readonly HU: "HU";
245
+ readonly ID: "ID";
246
+ readonly IE: "IE";
247
+ readonly IL: "IL";
248
+ readonly IM: "IM";
249
+ readonly IN: "IN";
250
+ readonly IO: "IO";
251
+ readonly IQ: "IQ";
252
+ readonly IR: "IR";
253
+ readonly IS: "IS";
254
+ readonly IT: "IT";
255
+ readonly JE: "JE";
256
+ readonly JM: "JM";
257
+ readonly JO: "JO";
258
+ readonly JP: "JP";
259
+ readonly KE: "KE";
260
+ readonly KG: "KG";
261
+ readonly KH: "KH";
262
+ readonly KI: "KI";
263
+ readonly KM: "KM";
264
+ readonly KN: "KN";
265
+ readonly KP: "KP";
266
+ readonly KR: "KR";
267
+ readonly KW: "KW";
268
+ readonly KY: "KY";
269
+ readonly KZ: "KZ";
270
+ readonly LA: "LA";
271
+ readonly LB: "LB";
272
+ readonly LC: "LC";
273
+ readonly LI: "LI";
274
+ readonly LK: "LK";
275
+ readonly LR: "LR";
276
+ readonly LS: "LS";
277
+ readonly LT: "LT";
278
+ readonly LU: "LU";
279
+ readonly LV: "LV";
280
+ readonly LY: "LY";
281
+ readonly MA: "MA";
282
+ readonly MC: "MC";
283
+ readonly MD: "MD";
284
+ readonly ME: "ME";
285
+ readonly MF: "MF";
286
+ readonly MG: "MG";
287
+ readonly MH: "MH";
288
+ readonly MK: "MK";
289
+ readonly ML: "ML";
290
+ readonly MM: "MM";
291
+ readonly MN: "MN";
292
+ readonly MO: "MO";
293
+ readonly MP: "MP";
294
+ readonly MQ: "MQ";
295
+ readonly MR: "MR";
296
+ readonly MS: "MS";
297
+ readonly MT: "MT";
298
+ readonly MU: "MU";
299
+ readonly MV: "MV";
300
+ readonly MW: "MW";
301
+ readonly MX: "MX";
302
+ readonly MY: "MY";
303
+ readonly MZ: "MZ";
304
+ readonly NA: "NA";
305
+ readonly NC: "NC";
306
+ readonly NE: "NE";
307
+ readonly NF: "NF";
308
+ readonly NG: "NG";
309
+ readonly NI: "NI";
310
+ readonly NL: "NL";
311
+ readonly NO: "NO";
312
+ readonly NP: "NP";
313
+ readonly NR: "NR";
314
+ readonly NU: "NU";
315
+ readonly NZ: "NZ";
316
+ readonly OM: "OM";
317
+ readonly PA: "PA";
318
+ readonly PE: "PE";
319
+ readonly PF: "PF";
320
+ readonly PG: "PG";
321
+ readonly PH: "PH";
322
+ readonly PK: "PK";
323
+ readonly PL: "PL";
324
+ readonly PM: "PM";
325
+ readonly PN: "PN";
326
+ readonly PR: "PR";
327
+ readonly PS: "PS";
328
+ readonly PT: "PT";
329
+ readonly PW: "PW";
330
+ readonly PY: "PY";
331
+ readonly QA: "QA";
332
+ readonly RE: "RE";
333
+ readonly RO: "RO";
334
+ readonly RS: "RS";
335
+ readonly RU: "RU";
336
+ readonly RW: "RW";
337
+ readonly SA: "SA";
338
+ readonly SB: "SB";
339
+ readonly SC: "SC";
340
+ readonly SD: "SD";
341
+ readonly SE: "SE";
342
+ readonly SG: "SG";
343
+ readonly SH: "SH";
344
+ readonly SI: "SI";
345
+ readonly SJ: "SJ";
346
+ readonly SK: "SK";
347
+ readonly SL: "SL";
348
+ readonly SM: "SM";
349
+ readonly SN: "SN";
350
+ readonly SO: "SO";
351
+ readonly SR: "SR";
352
+ readonly SS: "SS";
353
+ readonly ST: "ST";
354
+ readonly SV: "SV";
355
+ readonly SX: "SX";
356
+ readonly SY: "SY";
357
+ readonly SZ: "SZ";
358
+ readonly TC: "TC";
359
+ readonly TD: "TD";
360
+ readonly TF: "TF";
361
+ readonly TG: "TG";
362
+ readonly TH: "TH";
363
+ readonly TJ: "TJ";
364
+ readonly TK: "TK";
365
+ readonly TL: "TL";
366
+ readonly TM: "TM";
367
+ readonly TN: "TN";
368
+ readonly TO: "TO";
369
+ readonly TR: "TR";
370
+ readonly TT: "TT";
371
+ readonly TV: "TV";
372
+ readonly TW: "TW";
373
+ readonly TZ: "TZ";
374
+ readonly UA: "UA";
375
+ readonly UG: "UG";
376
+ readonly UM: "UM";
377
+ readonly US: "US";
378
+ readonly UY: "UY";
379
+ readonly UZ: "UZ";
380
+ readonly VA: "VA";
381
+ readonly VC: "VC";
382
+ readonly VE: "VE";
383
+ readonly VG: "VG";
384
+ readonly VI: "VI";
385
+ readonly VN: "VN";
386
+ readonly VU: "VU";
387
+ readonly WF: "WF";
388
+ readonly WS: "WS";
389
+ readonly YE: "YE";
390
+ readonly YT: "YT";
391
+ readonly ZA: "ZA";
392
+ readonly ZM: "ZM";
393
+ readonly ZW: "ZW";
394
+ };
395
+ /**
396
+ * @public
397
+ */
398
+ export type GeoMatchConstraintValue = (typeof GeoMatchConstraintValue)[keyof typeof GeoMatchConstraintValue];
399
+ /**
400
+ * @public
401
+ * @enum
402
+ */
403
+ export declare const IPSetDescriptorType: {
404
+ readonly IPV4: "IPV4";
405
+ readonly IPV6: "IPV6";
406
+ };
407
+ /**
408
+ * @public
409
+ */
410
+ export type IPSetDescriptorType = (typeof IPSetDescriptorType)[keyof typeof IPSetDescriptorType];
411
+ /**
412
+ * @public
413
+ * @enum
414
+ */
415
+ export declare const RateKey: {
416
+ readonly IP: "IP";
417
+ };
418
+ /**
419
+ * @public
420
+ */
421
+ export type RateKey = (typeof RateKey)[keyof typeof RateKey];
422
+ /**
423
+ * @public
424
+ * @enum
425
+ */
426
+ export declare const PredicateType: {
427
+ readonly BYTE_MATCH: "ByteMatch";
428
+ readonly GEO_MATCH: "GeoMatch";
429
+ readonly IP_MATCH: "IPMatch";
430
+ readonly REGEX_MATCH: "RegexMatch";
431
+ readonly SIZE_CONSTRAINT: "SizeConstraint";
432
+ readonly SQL_INJECTION_MATCH: "SqlInjectionMatch";
433
+ readonly XSS_MATCH: "XssMatch";
434
+ };
435
+ /**
436
+ * @public
437
+ */
438
+ export type PredicateType = (typeof PredicateType)[keyof typeof PredicateType];
439
+ /**
440
+ * @public
441
+ * @enum
442
+ */
443
+ export declare const ComparisonOperator: {
444
+ readonly EQ: "EQ";
445
+ readonly GE: "GE";
446
+ readonly GT: "GT";
447
+ readonly LE: "LE";
448
+ readonly LT: "LT";
449
+ readonly NE: "NE";
450
+ };
451
+ /**
452
+ * @public
453
+ */
454
+ export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
455
+ /**
456
+ * @public
457
+ * @enum
458
+ */
459
+ export declare const MigrationErrorType: {
460
+ readonly ENTITY_NOT_FOUND: "ENTITY_NOT_FOUND";
461
+ readonly ENTITY_NOT_SUPPORTED: "ENTITY_NOT_SUPPORTED";
462
+ readonly S3_BUCKET_INVALID_REGION: "S3_BUCKET_INVALID_REGION";
463
+ readonly S3_BUCKET_NOT_ACCESSIBLE: "S3_BUCKET_NOT_ACCESSIBLE";
464
+ readonly S3_BUCKET_NOT_FOUND: "S3_BUCKET_NOT_FOUND";
465
+ readonly S3_BUCKET_NO_PERMISSION: "S3_BUCKET_NO_PERMISSION";
466
+ readonly S3_INTERNAL_ERROR: "S3_INTERNAL_ERROR";
467
+ };
468
+ /**
469
+ * @public
470
+ */
471
+ export type MigrationErrorType = (typeof MigrationErrorType)[keyof typeof MigrationErrorType];
472
+ /**
473
+ * @public
474
+ * @enum
475
+ */
476
+ export declare const ChangeTokenStatus: {
477
+ readonly INSYNC: "INSYNC";
478
+ readonly PENDING: "PENDING";
479
+ readonly PROVISIONED: "PROVISIONED";
480
+ };
481
+ /**
482
+ * @public
483
+ */
484
+ export type ChangeTokenStatus = (typeof ChangeTokenStatus)[keyof typeof ChangeTokenStatus];
485
+ /**
486
+ * @public
487
+ * @enum
488
+ */
489
+ export declare const ResourceType: {
490
+ readonly API_GATEWAY: "API_GATEWAY";
491
+ readonly APPLICATION_LOAD_BALANCER: "APPLICATION_LOAD_BALANCER";
492
+ };
493
+ /**
494
+ * @public
495
+ */
496
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
497
+ /**
498
+ * @public
499
+ * @enum
500
+ */
501
+ export declare const ChangeAction: {
502
+ readonly DELETE: "DELETE";
503
+ readonly INSERT: "INSERT";
504
+ };
505
+ /**
506
+ * @public
507
+ */
508
+ export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];