@aws-sdk/client-wafv2 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.
- package/dist-cjs/index.js +682 -681
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +508 -0
- package/dist-es/models/errors.js +287 -0
- package/dist-es/models/models_0.js +1 -795
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/commands/GetWebACLCommand.d.ts +1 -2
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +780 -0
- package/dist-types/models/errors.d.ts +368 -0
- package/dist-types/models/models_0.d.ts +23 -1146
- package/dist-types/ts3.4/commands/GetWebACLCommand.d.ts +1 -2
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +565 -0
- package/dist-types/ts3.4/models/errors.d.ts +194 -0
- package/dist-types/ts3.4/models/models_0.d.ts +40 -757
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -2
- package/dist-es/models/models_1.js +0 -1
- package/dist-types/models/index.d.ts +0 -2
- package/dist-types/models/models_1.d.ts +0 -23
- package/dist-types/ts3.4/models/index.d.ts +0 -2
- package/dist-types/ts3.4/models/models_1.d.ts +0 -6
|
@@ -1,14 +1,38 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import {
|
|
2
|
+
ActionValue,
|
|
3
|
+
AssociatedResourceType,
|
|
4
|
+
BodyParsingFallbackBehavior,
|
|
5
|
+
ComparisonOperator,
|
|
6
|
+
CountryCode,
|
|
7
|
+
DataProtectionAction,
|
|
8
|
+
FailureReason,
|
|
9
|
+
FallbackBehavior,
|
|
10
|
+
FieldToProtectType,
|
|
11
|
+
FilterBehavior,
|
|
12
|
+
FilterRequirement,
|
|
13
|
+
ForwardedIPPosition,
|
|
14
|
+
InspectionLevel,
|
|
15
|
+
IPAddressVersion,
|
|
16
|
+
JsonMatchScope,
|
|
17
|
+
LabelMatchScope,
|
|
18
|
+
LogScope,
|
|
19
|
+
LogType,
|
|
20
|
+
LowReputationMode,
|
|
21
|
+
MapMatchScope,
|
|
22
|
+
OversizeHandling,
|
|
23
|
+
PayloadType,
|
|
24
|
+
Platform,
|
|
25
|
+
PositionalConstraint,
|
|
26
|
+
RateBasedStatementAggregateKeyType,
|
|
27
|
+
ResourceType,
|
|
28
|
+
ResponseContentType,
|
|
29
|
+
Scope,
|
|
30
|
+
SensitivityLevel,
|
|
31
|
+
SensitivityToAct,
|
|
32
|
+
SizeInspectionLimit,
|
|
33
|
+
TextTransformationType,
|
|
34
|
+
UsageOfAction,
|
|
35
|
+
} from "./enums";
|
|
12
36
|
export interface ActionCondition {
|
|
13
37
|
Action: ActionValue | undefined;
|
|
14
38
|
}
|
|
@@ -27,12 +51,6 @@ export interface AllowAction {
|
|
|
27
51
|
CustomRequestHandling?: CustomRequestHandling | undefined;
|
|
28
52
|
}
|
|
29
53
|
export interface AllQueryArguments {}
|
|
30
|
-
export declare const FallbackBehavior: {
|
|
31
|
-
readonly MATCH: "MATCH";
|
|
32
|
-
readonly NO_MATCH: "NO_MATCH";
|
|
33
|
-
};
|
|
34
|
-
export type FallbackBehavior =
|
|
35
|
-
(typeof FallbackBehavior)[keyof typeof FallbackBehavior];
|
|
36
54
|
export interface ForwardedIPConfig {
|
|
37
55
|
HeaderName: string | undefined;
|
|
38
56
|
FallbackBehavior: FallbackBehavior | undefined;
|
|
@@ -41,13 +59,6 @@ export interface AsnMatchStatement {
|
|
|
41
59
|
AsnList: number[] | undefined;
|
|
42
60
|
ForwardedIPConfig?: ForwardedIPConfig | undefined;
|
|
43
61
|
}
|
|
44
|
-
export declare const OversizeHandling: {
|
|
45
|
-
readonly CONTINUE: "CONTINUE";
|
|
46
|
-
readonly MATCH: "MATCH";
|
|
47
|
-
readonly NO_MATCH: "NO_MATCH";
|
|
48
|
-
};
|
|
49
|
-
export type OversizeHandling =
|
|
50
|
-
(typeof OversizeHandling)[keyof typeof OversizeHandling];
|
|
51
62
|
export interface Body {
|
|
52
63
|
OversizeHandling?: OversizeHandling | undefined;
|
|
53
64
|
}
|
|
@@ -56,12 +67,6 @@ export interface CookieMatchPattern {
|
|
|
56
67
|
IncludedCookies?: string[] | undefined;
|
|
57
68
|
ExcludedCookies?: string[] | undefined;
|
|
58
69
|
}
|
|
59
|
-
export declare const MapMatchScope: {
|
|
60
|
-
readonly ALL: "ALL";
|
|
61
|
-
readonly KEY: "KEY";
|
|
62
|
-
readonly VALUE: "VALUE";
|
|
63
|
-
};
|
|
64
|
-
export type MapMatchScope = (typeof MapMatchScope)[keyof typeof MapMatchScope];
|
|
65
70
|
export interface Cookies {
|
|
66
71
|
MatchPattern: CookieMatchPattern | undefined;
|
|
67
72
|
MatchScope: MapMatchScope | undefined;
|
|
@@ -86,24 +91,10 @@ export interface JA3Fingerprint {
|
|
|
86
91
|
export interface JA4Fingerprint {
|
|
87
92
|
FallbackBehavior: FallbackBehavior | undefined;
|
|
88
93
|
}
|
|
89
|
-
export declare const BodyParsingFallbackBehavior: {
|
|
90
|
-
readonly EVALUATE_AS_STRING: "EVALUATE_AS_STRING";
|
|
91
|
-
readonly MATCH: "MATCH";
|
|
92
|
-
readonly NO_MATCH: "NO_MATCH";
|
|
93
|
-
};
|
|
94
|
-
export type BodyParsingFallbackBehavior =
|
|
95
|
-
(typeof BodyParsingFallbackBehavior)[keyof typeof BodyParsingFallbackBehavior];
|
|
96
94
|
export interface JsonMatchPattern {
|
|
97
95
|
All?: All | undefined;
|
|
98
96
|
IncludedPaths?: string[] | undefined;
|
|
99
97
|
}
|
|
100
|
-
export declare const JsonMatchScope: {
|
|
101
|
-
readonly ALL: "ALL";
|
|
102
|
-
readonly KEY: "KEY";
|
|
103
|
-
readonly VALUE: "VALUE";
|
|
104
|
-
};
|
|
105
|
-
export type JsonMatchScope =
|
|
106
|
-
(typeof JsonMatchScope)[keyof typeof JsonMatchScope];
|
|
107
98
|
export interface JsonBody {
|
|
108
99
|
MatchPattern: JsonMatchPattern | undefined;
|
|
109
100
|
MatchScope: JsonMatchScope | undefined;
|
|
@@ -138,40 +129,6 @@ export interface FieldToMatch {
|
|
|
138
129
|
JA4Fingerprint?: JA4Fingerprint | undefined;
|
|
139
130
|
UriFragment?: UriFragment | undefined;
|
|
140
131
|
}
|
|
141
|
-
export declare const PositionalConstraint: {
|
|
142
|
-
readonly CONTAINS: "CONTAINS";
|
|
143
|
-
readonly CONTAINS_WORD: "CONTAINS_WORD";
|
|
144
|
-
readonly ENDS_WITH: "ENDS_WITH";
|
|
145
|
-
readonly EXACTLY: "EXACTLY";
|
|
146
|
-
readonly STARTS_WITH: "STARTS_WITH";
|
|
147
|
-
};
|
|
148
|
-
export type PositionalConstraint =
|
|
149
|
-
(typeof PositionalConstraint)[keyof typeof PositionalConstraint];
|
|
150
|
-
export declare const TextTransformationType: {
|
|
151
|
-
readonly BASE64_DECODE: "BASE64_DECODE";
|
|
152
|
-
readonly BASE64_DECODE_EXT: "BASE64_DECODE_EXT";
|
|
153
|
-
readonly CMD_LINE: "CMD_LINE";
|
|
154
|
-
readonly COMPRESS_WHITE_SPACE: "COMPRESS_WHITE_SPACE";
|
|
155
|
-
readonly CSS_DECODE: "CSS_DECODE";
|
|
156
|
-
readonly ESCAPE_SEQ_DECODE: "ESCAPE_SEQ_DECODE";
|
|
157
|
-
readonly HEX_DECODE: "HEX_DECODE";
|
|
158
|
-
readonly HTML_ENTITY_DECODE: "HTML_ENTITY_DECODE";
|
|
159
|
-
readonly JS_DECODE: "JS_DECODE";
|
|
160
|
-
readonly LOWERCASE: "LOWERCASE";
|
|
161
|
-
readonly MD5: "MD5";
|
|
162
|
-
readonly NONE: "NONE";
|
|
163
|
-
readonly NORMALIZE_PATH: "NORMALIZE_PATH";
|
|
164
|
-
readonly NORMALIZE_PATH_WIN: "NORMALIZE_PATH_WIN";
|
|
165
|
-
readonly REMOVE_NULLS: "REMOVE_NULLS";
|
|
166
|
-
readonly REPLACE_COMMENTS: "REPLACE_COMMENTS";
|
|
167
|
-
readonly REPLACE_NULLS: "REPLACE_NULLS";
|
|
168
|
-
readonly SQL_HEX_DECODE: "SQL_HEX_DECODE";
|
|
169
|
-
readonly URL_DECODE: "URL_DECODE";
|
|
170
|
-
readonly URL_DECODE_UNI: "URL_DECODE_UNI";
|
|
171
|
-
readonly UTF8_TO_UNICODE: "UTF8_TO_UNICODE";
|
|
172
|
-
};
|
|
173
|
-
export type TextTransformationType =
|
|
174
|
-
(typeof TextTransformationType)[keyof typeof TextTransformationType];
|
|
175
132
|
export interface TextTransformation {
|
|
176
133
|
Priority: number | undefined;
|
|
177
134
|
Type: TextTransformationType | undefined;
|
|
@@ -182,270 +139,10 @@ export interface ByteMatchStatement {
|
|
|
182
139
|
TextTransformations: TextTransformation[] | undefined;
|
|
183
140
|
PositionalConstraint: PositionalConstraint | undefined;
|
|
184
141
|
}
|
|
185
|
-
export declare const CountryCode: {
|
|
186
|
-
readonly AD: "AD";
|
|
187
|
-
readonly AE: "AE";
|
|
188
|
-
readonly AF: "AF";
|
|
189
|
-
readonly AG: "AG";
|
|
190
|
-
readonly AI: "AI";
|
|
191
|
-
readonly AL: "AL";
|
|
192
|
-
readonly AM: "AM";
|
|
193
|
-
readonly AO: "AO";
|
|
194
|
-
readonly AQ: "AQ";
|
|
195
|
-
readonly AR: "AR";
|
|
196
|
-
readonly AS: "AS";
|
|
197
|
-
readonly AT: "AT";
|
|
198
|
-
readonly AU: "AU";
|
|
199
|
-
readonly AW: "AW";
|
|
200
|
-
readonly AX: "AX";
|
|
201
|
-
readonly AZ: "AZ";
|
|
202
|
-
readonly BA: "BA";
|
|
203
|
-
readonly BB: "BB";
|
|
204
|
-
readonly BD: "BD";
|
|
205
|
-
readonly BE: "BE";
|
|
206
|
-
readonly BF: "BF";
|
|
207
|
-
readonly BG: "BG";
|
|
208
|
-
readonly BH: "BH";
|
|
209
|
-
readonly BI: "BI";
|
|
210
|
-
readonly BJ: "BJ";
|
|
211
|
-
readonly BL: "BL";
|
|
212
|
-
readonly BM: "BM";
|
|
213
|
-
readonly BN: "BN";
|
|
214
|
-
readonly BO: "BO";
|
|
215
|
-
readonly BQ: "BQ";
|
|
216
|
-
readonly BR: "BR";
|
|
217
|
-
readonly BS: "BS";
|
|
218
|
-
readonly BT: "BT";
|
|
219
|
-
readonly BV: "BV";
|
|
220
|
-
readonly BW: "BW";
|
|
221
|
-
readonly BY: "BY";
|
|
222
|
-
readonly BZ: "BZ";
|
|
223
|
-
readonly CA: "CA";
|
|
224
|
-
readonly CC: "CC";
|
|
225
|
-
readonly CD: "CD";
|
|
226
|
-
readonly CF: "CF";
|
|
227
|
-
readonly CG: "CG";
|
|
228
|
-
readonly CH: "CH";
|
|
229
|
-
readonly CI: "CI";
|
|
230
|
-
readonly CK: "CK";
|
|
231
|
-
readonly CL: "CL";
|
|
232
|
-
readonly CM: "CM";
|
|
233
|
-
readonly CN: "CN";
|
|
234
|
-
readonly CO: "CO";
|
|
235
|
-
readonly CR: "CR";
|
|
236
|
-
readonly CU: "CU";
|
|
237
|
-
readonly CV: "CV";
|
|
238
|
-
readonly CW: "CW";
|
|
239
|
-
readonly CX: "CX";
|
|
240
|
-
readonly CY: "CY";
|
|
241
|
-
readonly CZ: "CZ";
|
|
242
|
-
readonly DE: "DE";
|
|
243
|
-
readonly DJ: "DJ";
|
|
244
|
-
readonly DK: "DK";
|
|
245
|
-
readonly DM: "DM";
|
|
246
|
-
readonly DO: "DO";
|
|
247
|
-
readonly DZ: "DZ";
|
|
248
|
-
readonly EC: "EC";
|
|
249
|
-
readonly EE: "EE";
|
|
250
|
-
readonly EG: "EG";
|
|
251
|
-
readonly EH: "EH";
|
|
252
|
-
readonly ER: "ER";
|
|
253
|
-
readonly ES: "ES";
|
|
254
|
-
readonly ET: "ET";
|
|
255
|
-
readonly FI: "FI";
|
|
256
|
-
readonly FJ: "FJ";
|
|
257
|
-
readonly FK: "FK";
|
|
258
|
-
readonly FM: "FM";
|
|
259
|
-
readonly FO: "FO";
|
|
260
|
-
readonly FR: "FR";
|
|
261
|
-
readonly GA: "GA";
|
|
262
|
-
readonly GB: "GB";
|
|
263
|
-
readonly GD: "GD";
|
|
264
|
-
readonly GE: "GE";
|
|
265
|
-
readonly GF: "GF";
|
|
266
|
-
readonly GG: "GG";
|
|
267
|
-
readonly GH: "GH";
|
|
268
|
-
readonly GI: "GI";
|
|
269
|
-
readonly GL: "GL";
|
|
270
|
-
readonly GM: "GM";
|
|
271
|
-
readonly GN: "GN";
|
|
272
|
-
readonly GP: "GP";
|
|
273
|
-
readonly GQ: "GQ";
|
|
274
|
-
readonly GR: "GR";
|
|
275
|
-
readonly GS: "GS";
|
|
276
|
-
readonly GT: "GT";
|
|
277
|
-
readonly GU: "GU";
|
|
278
|
-
readonly GW: "GW";
|
|
279
|
-
readonly GY: "GY";
|
|
280
|
-
readonly HK: "HK";
|
|
281
|
-
readonly HM: "HM";
|
|
282
|
-
readonly HN: "HN";
|
|
283
|
-
readonly HR: "HR";
|
|
284
|
-
readonly HT: "HT";
|
|
285
|
-
readonly HU: "HU";
|
|
286
|
-
readonly ID: "ID";
|
|
287
|
-
readonly IE: "IE";
|
|
288
|
-
readonly IL: "IL";
|
|
289
|
-
readonly IM: "IM";
|
|
290
|
-
readonly IN: "IN";
|
|
291
|
-
readonly IO: "IO";
|
|
292
|
-
readonly IQ: "IQ";
|
|
293
|
-
readonly IR: "IR";
|
|
294
|
-
readonly IS: "IS";
|
|
295
|
-
readonly IT: "IT";
|
|
296
|
-
readonly JE: "JE";
|
|
297
|
-
readonly JM: "JM";
|
|
298
|
-
readonly JO: "JO";
|
|
299
|
-
readonly JP: "JP";
|
|
300
|
-
readonly KE: "KE";
|
|
301
|
-
readonly KG: "KG";
|
|
302
|
-
readonly KH: "KH";
|
|
303
|
-
readonly KI: "KI";
|
|
304
|
-
readonly KM: "KM";
|
|
305
|
-
readonly KN: "KN";
|
|
306
|
-
readonly KP: "KP";
|
|
307
|
-
readonly KR: "KR";
|
|
308
|
-
readonly KW: "KW";
|
|
309
|
-
readonly KY: "KY";
|
|
310
|
-
readonly KZ: "KZ";
|
|
311
|
-
readonly LA: "LA";
|
|
312
|
-
readonly LB: "LB";
|
|
313
|
-
readonly LC: "LC";
|
|
314
|
-
readonly LI: "LI";
|
|
315
|
-
readonly LK: "LK";
|
|
316
|
-
readonly LR: "LR";
|
|
317
|
-
readonly LS: "LS";
|
|
318
|
-
readonly LT: "LT";
|
|
319
|
-
readonly LU: "LU";
|
|
320
|
-
readonly LV: "LV";
|
|
321
|
-
readonly LY: "LY";
|
|
322
|
-
readonly MA: "MA";
|
|
323
|
-
readonly MC: "MC";
|
|
324
|
-
readonly MD: "MD";
|
|
325
|
-
readonly ME: "ME";
|
|
326
|
-
readonly MF: "MF";
|
|
327
|
-
readonly MG: "MG";
|
|
328
|
-
readonly MH: "MH";
|
|
329
|
-
readonly MK: "MK";
|
|
330
|
-
readonly ML: "ML";
|
|
331
|
-
readonly MM: "MM";
|
|
332
|
-
readonly MN: "MN";
|
|
333
|
-
readonly MO: "MO";
|
|
334
|
-
readonly MP: "MP";
|
|
335
|
-
readonly MQ: "MQ";
|
|
336
|
-
readonly MR: "MR";
|
|
337
|
-
readonly MS: "MS";
|
|
338
|
-
readonly MT: "MT";
|
|
339
|
-
readonly MU: "MU";
|
|
340
|
-
readonly MV: "MV";
|
|
341
|
-
readonly MW: "MW";
|
|
342
|
-
readonly MX: "MX";
|
|
343
|
-
readonly MY: "MY";
|
|
344
|
-
readonly MZ: "MZ";
|
|
345
|
-
readonly NA: "NA";
|
|
346
|
-
readonly NC: "NC";
|
|
347
|
-
readonly NE: "NE";
|
|
348
|
-
readonly NF: "NF";
|
|
349
|
-
readonly NG: "NG";
|
|
350
|
-
readonly NI: "NI";
|
|
351
|
-
readonly NL: "NL";
|
|
352
|
-
readonly NO: "NO";
|
|
353
|
-
readonly NP: "NP";
|
|
354
|
-
readonly NR: "NR";
|
|
355
|
-
readonly NU: "NU";
|
|
356
|
-
readonly NZ: "NZ";
|
|
357
|
-
readonly OM: "OM";
|
|
358
|
-
readonly PA: "PA";
|
|
359
|
-
readonly PE: "PE";
|
|
360
|
-
readonly PF: "PF";
|
|
361
|
-
readonly PG: "PG";
|
|
362
|
-
readonly PH: "PH";
|
|
363
|
-
readonly PK: "PK";
|
|
364
|
-
readonly PL: "PL";
|
|
365
|
-
readonly PM: "PM";
|
|
366
|
-
readonly PN: "PN";
|
|
367
|
-
readonly PR: "PR";
|
|
368
|
-
readonly PS: "PS";
|
|
369
|
-
readonly PT: "PT";
|
|
370
|
-
readonly PW: "PW";
|
|
371
|
-
readonly PY: "PY";
|
|
372
|
-
readonly QA: "QA";
|
|
373
|
-
readonly RE: "RE";
|
|
374
|
-
readonly RO: "RO";
|
|
375
|
-
readonly RS: "RS";
|
|
376
|
-
readonly RU: "RU";
|
|
377
|
-
readonly RW: "RW";
|
|
378
|
-
readonly SA: "SA";
|
|
379
|
-
readonly SB: "SB";
|
|
380
|
-
readonly SC: "SC";
|
|
381
|
-
readonly SD: "SD";
|
|
382
|
-
readonly SE: "SE";
|
|
383
|
-
readonly SG: "SG";
|
|
384
|
-
readonly SH: "SH";
|
|
385
|
-
readonly SI: "SI";
|
|
386
|
-
readonly SJ: "SJ";
|
|
387
|
-
readonly SK: "SK";
|
|
388
|
-
readonly SL: "SL";
|
|
389
|
-
readonly SM: "SM";
|
|
390
|
-
readonly SN: "SN";
|
|
391
|
-
readonly SO: "SO";
|
|
392
|
-
readonly SR: "SR";
|
|
393
|
-
readonly SS: "SS";
|
|
394
|
-
readonly ST: "ST";
|
|
395
|
-
readonly SV: "SV";
|
|
396
|
-
readonly SX: "SX";
|
|
397
|
-
readonly SY: "SY";
|
|
398
|
-
readonly SZ: "SZ";
|
|
399
|
-
readonly TC: "TC";
|
|
400
|
-
readonly TD: "TD";
|
|
401
|
-
readonly TF: "TF";
|
|
402
|
-
readonly TG: "TG";
|
|
403
|
-
readonly TH: "TH";
|
|
404
|
-
readonly TJ: "TJ";
|
|
405
|
-
readonly TK: "TK";
|
|
406
|
-
readonly TL: "TL";
|
|
407
|
-
readonly TM: "TM";
|
|
408
|
-
readonly TN: "TN";
|
|
409
|
-
readonly TO: "TO";
|
|
410
|
-
readonly TR: "TR";
|
|
411
|
-
readonly TT: "TT";
|
|
412
|
-
readonly TV: "TV";
|
|
413
|
-
readonly TW: "TW";
|
|
414
|
-
readonly TZ: "TZ";
|
|
415
|
-
readonly UA: "UA";
|
|
416
|
-
readonly UG: "UG";
|
|
417
|
-
readonly UM: "UM";
|
|
418
|
-
readonly US: "US";
|
|
419
|
-
readonly UY: "UY";
|
|
420
|
-
readonly UZ: "UZ";
|
|
421
|
-
readonly VA: "VA";
|
|
422
|
-
readonly VC: "VC";
|
|
423
|
-
readonly VE: "VE";
|
|
424
|
-
readonly VG: "VG";
|
|
425
|
-
readonly VI: "VI";
|
|
426
|
-
readonly VN: "VN";
|
|
427
|
-
readonly VU: "VU";
|
|
428
|
-
readonly WF: "WF";
|
|
429
|
-
readonly WS: "WS";
|
|
430
|
-
readonly XK: "XK";
|
|
431
|
-
readonly YE: "YE";
|
|
432
|
-
readonly YT: "YT";
|
|
433
|
-
readonly ZA: "ZA";
|
|
434
|
-
readonly ZM: "ZM";
|
|
435
|
-
readonly ZW: "ZW";
|
|
436
|
-
};
|
|
437
|
-
export type CountryCode = (typeof CountryCode)[keyof typeof CountryCode];
|
|
438
142
|
export interface GeoMatchStatement {
|
|
439
143
|
CountryCodes?: CountryCode[] | undefined;
|
|
440
144
|
ForwardedIPConfig?: ForwardedIPConfig | undefined;
|
|
441
145
|
}
|
|
442
|
-
export declare const ForwardedIPPosition: {
|
|
443
|
-
readonly ANY: "ANY";
|
|
444
|
-
readonly FIRST: "FIRST";
|
|
445
|
-
readonly LAST: "LAST";
|
|
446
|
-
};
|
|
447
|
-
export type ForwardedIPPosition =
|
|
448
|
-
(typeof ForwardedIPPosition)[keyof typeof ForwardedIPPosition];
|
|
449
146
|
export interface IPSetForwardedIPConfig {
|
|
450
147
|
HeaderName: string | undefined;
|
|
451
148
|
FallbackBehavior: FallbackBehavior | undefined;
|
|
@@ -455,12 +152,6 @@ export interface IPSetReferenceStatement {
|
|
|
455
152
|
ARN: string | undefined;
|
|
456
153
|
IPSetForwardedIPConfig?: IPSetForwardedIPConfig | undefined;
|
|
457
154
|
}
|
|
458
|
-
export declare const LabelMatchScope: {
|
|
459
|
-
readonly LABEL: "LABEL";
|
|
460
|
-
readonly NAMESPACE: "NAMESPACE";
|
|
461
|
-
};
|
|
462
|
-
export type LabelMatchScope =
|
|
463
|
-
(typeof LabelMatchScope)[keyof typeof LabelMatchScope];
|
|
464
155
|
export interface LabelMatchStatement {
|
|
465
156
|
Scope: LabelMatchScope | undefined;
|
|
466
157
|
Key: string | undefined;
|
|
@@ -474,11 +165,6 @@ export interface EmailField {
|
|
|
474
165
|
export interface PasswordField {
|
|
475
166
|
Identifier: string | undefined;
|
|
476
167
|
}
|
|
477
|
-
export declare const PayloadType: {
|
|
478
|
-
readonly FORM_ENCODED: "FORM_ENCODED";
|
|
479
|
-
readonly JSON: "JSON";
|
|
480
|
-
};
|
|
481
|
-
export type PayloadType = (typeof PayloadType)[keyof typeof PayloadType];
|
|
482
168
|
export interface PhoneNumberField {
|
|
483
169
|
Identifier: string | undefined;
|
|
484
170
|
}
|
|
@@ -527,18 +213,6 @@ export interface AWSManagedRulesACFPRuleSet {
|
|
|
527
213
|
export interface Regex {
|
|
528
214
|
RegexString?: string | undefined;
|
|
529
215
|
}
|
|
530
|
-
export declare const SensitivityToAct: {
|
|
531
|
-
readonly HIGH: "HIGH";
|
|
532
|
-
readonly LOW: "LOW";
|
|
533
|
-
readonly MEDIUM: "MEDIUM";
|
|
534
|
-
};
|
|
535
|
-
export type SensitivityToAct =
|
|
536
|
-
(typeof SensitivityToAct)[keyof typeof SensitivityToAct];
|
|
537
|
-
export declare const UsageOfAction: {
|
|
538
|
-
readonly DISABLED: "DISABLED";
|
|
539
|
-
readonly ENABLED: "ENABLED";
|
|
540
|
-
};
|
|
541
|
-
export type UsageOfAction = (typeof UsageOfAction)[keyof typeof UsageOfAction];
|
|
542
216
|
export interface ClientSideAction {
|
|
543
217
|
UsageOfAction: UsageOfAction | undefined;
|
|
544
218
|
Sensitivity?: SensitivityToAct | undefined;
|
|
@@ -562,12 +236,6 @@ export interface AWSManagedRulesATPRuleSet {
|
|
|
562
236
|
ResponseInspection?: ResponseInspection | undefined;
|
|
563
237
|
EnableRegexInPath?: boolean | undefined;
|
|
564
238
|
}
|
|
565
|
-
export declare const InspectionLevel: {
|
|
566
|
-
readonly COMMON: "COMMON";
|
|
567
|
-
readonly TARGETED: "TARGETED";
|
|
568
|
-
};
|
|
569
|
-
export type InspectionLevel =
|
|
570
|
-
(typeof InspectionLevel)[keyof typeof InspectionLevel];
|
|
571
239
|
export interface AWSManagedRulesBotControlRuleSet {
|
|
572
240
|
InspectionLevel: InspectionLevel | undefined;
|
|
573
241
|
EnableMachineLearning?: boolean | undefined;
|
|
@@ -612,14 +280,6 @@ export interface RuleActionOverride {
|
|
|
612
280
|
Name: string | undefined;
|
|
613
281
|
ActionToUse: RuleAction | undefined;
|
|
614
282
|
}
|
|
615
|
-
export declare const RateBasedStatementAggregateKeyType: {
|
|
616
|
-
readonly CONSTANT: "CONSTANT";
|
|
617
|
-
readonly CUSTOM_KEYS: "CUSTOM_KEYS";
|
|
618
|
-
readonly FORWARDED_IP: "FORWARDED_IP";
|
|
619
|
-
readonly IP: "IP";
|
|
620
|
-
};
|
|
621
|
-
export type RateBasedStatementAggregateKeyType =
|
|
622
|
-
(typeof RateBasedStatementAggregateKeyType)[keyof typeof RateBasedStatementAggregateKeyType];
|
|
623
283
|
export interface RateLimitAsn {}
|
|
624
284
|
export interface RateLimitCookie {
|
|
625
285
|
Name: string | undefined;
|
|
@@ -680,28 +340,12 @@ export interface RuleGroupReferenceStatement {
|
|
|
680
340
|
ExcludedRules?: ExcludedRule[] | undefined;
|
|
681
341
|
RuleActionOverrides?: RuleActionOverride[] | undefined;
|
|
682
342
|
}
|
|
683
|
-
export declare const ComparisonOperator: {
|
|
684
|
-
readonly EQ: "EQ";
|
|
685
|
-
readonly GE: "GE";
|
|
686
|
-
readonly GT: "GT";
|
|
687
|
-
readonly LE: "LE";
|
|
688
|
-
readonly LT: "LT";
|
|
689
|
-
readonly NE: "NE";
|
|
690
|
-
};
|
|
691
|
-
export type ComparisonOperator =
|
|
692
|
-
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
693
343
|
export interface SizeConstraintStatement {
|
|
694
344
|
FieldToMatch: FieldToMatch | undefined;
|
|
695
345
|
ComparisonOperator: ComparisonOperator | undefined;
|
|
696
346
|
Size: number | undefined;
|
|
697
347
|
TextTransformations: TextTransformation[] | undefined;
|
|
698
348
|
}
|
|
699
|
-
export declare const SensitivityLevel: {
|
|
700
|
-
readonly HIGH: "HIGH";
|
|
701
|
-
readonly LOW: "LOW";
|
|
702
|
-
};
|
|
703
|
-
export type SensitivityLevel =
|
|
704
|
-
(typeof SensitivityLevel)[keyof typeof SensitivityLevel];
|
|
705
349
|
export interface SqliMatchStatement {
|
|
706
350
|
FieldToMatch: FieldToMatch | undefined;
|
|
707
351
|
TextTransformations: TextTransformation[] | undefined;
|
|
@@ -724,15 +368,6 @@ export interface ApplicationAttribute {
|
|
|
724
368
|
export interface ApplicationConfig {
|
|
725
369
|
Attributes?: ApplicationAttribute[] | undefined;
|
|
726
370
|
}
|
|
727
|
-
export declare const AssociatedResourceType: {
|
|
728
|
-
readonly API_GATEWAY: "API_GATEWAY";
|
|
729
|
-
readonly APP_RUNNER_SERVICE: "APP_RUNNER_SERVICE";
|
|
730
|
-
readonly CLOUDFRONT: "CLOUDFRONT";
|
|
731
|
-
readonly COGNITO_USER_POOL: "COGNITO_USER_POOL";
|
|
732
|
-
readonly VERIFIED_ACCESS_INSTANCE: "VERIFIED_ACCESS_INSTANCE";
|
|
733
|
-
};
|
|
734
|
-
export type AssociatedResourceType =
|
|
735
|
-
(typeof AssociatedResourceType)[keyof typeof AssociatedResourceType];
|
|
736
371
|
export interface AssociateWebACLRequest {
|
|
737
372
|
WebACLArn: string | undefined;
|
|
738
373
|
ResourceArn: string | undefined;
|
|
@@ -742,153 +377,6 @@ export interface DisallowedFeature {
|
|
|
742
377
|
Feature?: string | undefined;
|
|
743
378
|
RequiredPricingPlan?: string | undefined;
|
|
744
379
|
}
|
|
745
|
-
export declare class WAFFeatureNotIncludedInPricingPlanException extends __BaseException {
|
|
746
|
-
readonly name: "WAFFeatureNotIncludedInPricingPlanException";
|
|
747
|
-
readonly $fault: "client";
|
|
748
|
-
Message?: string | undefined;
|
|
749
|
-
DisallowedFeatures?: DisallowedFeature[] | undefined;
|
|
750
|
-
constructor(
|
|
751
|
-
opts: __ExceptionOptionType<
|
|
752
|
-
WAFFeatureNotIncludedInPricingPlanException,
|
|
753
|
-
__BaseException
|
|
754
|
-
>
|
|
755
|
-
);
|
|
756
|
-
}
|
|
757
|
-
export declare class WAFInternalErrorException extends __BaseException {
|
|
758
|
-
readonly name: "WAFInternalErrorException";
|
|
759
|
-
readonly $fault: "server";
|
|
760
|
-
Message?: string | undefined;
|
|
761
|
-
constructor(
|
|
762
|
-
opts: __ExceptionOptionType<WAFInternalErrorException, __BaseException>
|
|
763
|
-
);
|
|
764
|
-
}
|
|
765
|
-
export declare class WAFInvalidOperationException extends __BaseException {
|
|
766
|
-
readonly name: "WAFInvalidOperationException";
|
|
767
|
-
readonly $fault: "client";
|
|
768
|
-
Message?: string | undefined;
|
|
769
|
-
constructor(
|
|
770
|
-
opts: __ExceptionOptionType<WAFInvalidOperationException, __BaseException>
|
|
771
|
-
);
|
|
772
|
-
}
|
|
773
|
-
export declare const ParameterExceptionField: {
|
|
774
|
-
readonly ACP_RULE_SET_RESPONSE_INSPECTION: "ACP_RULE_SET_RESPONSE_INSPECTION";
|
|
775
|
-
readonly AND_STATEMENT: "AND_STATEMENT";
|
|
776
|
-
readonly ASSOCIABLE_RESOURCE: "ASSOCIABLE_RESOURCE";
|
|
777
|
-
readonly ASSOCIATED_RESOURCE_TYPE: "ASSOCIATED_RESOURCE_TYPE";
|
|
778
|
-
readonly ATP_RULE_SET_RESPONSE_INSPECTION: "ATP_RULE_SET_RESPONSE_INSPECTION";
|
|
779
|
-
readonly BODY_PARSING_FALLBACK_BEHAVIOR: "BODY_PARSING_FALLBACK_BEHAVIOR";
|
|
780
|
-
readonly BYTE_MATCH_STATEMENT: "BYTE_MATCH_STATEMENT";
|
|
781
|
-
readonly CHALLENGE_CONFIG: "CHALLENGE_CONFIG";
|
|
782
|
-
readonly CHANGE_PROPAGATION_STATUS: "CHANGE_PROPAGATION_STATUS";
|
|
783
|
-
readonly COOKIE_MATCH_PATTERN: "COOKIE_MATCH_PATTERN";
|
|
784
|
-
readonly CUSTOM_KEYS: "CUSTOM_KEYS";
|
|
785
|
-
readonly CUSTOM_REQUEST_HANDLING: "CUSTOM_REQUEST_HANDLING";
|
|
786
|
-
readonly CUSTOM_RESPONSE: "CUSTOM_RESPONSE";
|
|
787
|
-
readonly CUSTOM_RESPONSE_BODY: "CUSTOM_RESPONSE_BODY";
|
|
788
|
-
readonly DATA_PROTECTION_CONFIG: "DATA_PROTECTION_CONFIG";
|
|
789
|
-
readonly DEFAULT_ACTION: "DEFAULT_ACTION";
|
|
790
|
-
readonly ENTITY_LIMIT: "ENTITY_LIMIT";
|
|
791
|
-
readonly EXCLUDED_RULE: "EXCLUDED_RULE";
|
|
792
|
-
readonly EXPIRE_TIMESTAMP: "EXPIRE_TIMESTAMP";
|
|
793
|
-
readonly FALLBACK_BEHAVIOR: "FALLBACK_BEHAVIOR";
|
|
794
|
-
readonly FIELD_TO_MATCH: "FIELD_TO_MATCH";
|
|
795
|
-
readonly FILTER_CONDITION: "FILTER_CONDITION";
|
|
796
|
-
readonly FIREWALL_MANAGER_STATEMENT: "FIREWALL_MANAGER_STATEMENT";
|
|
797
|
-
readonly FORWARDED_IP_CONFIG: "FORWARDED_IP_CONFIG";
|
|
798
|
-
readonly GEO_MATCH_STATEMENT: "GEO_MATCH_STATEMENT";
|
|
799
|
-
readonly HEADER_MATCH_PATTERN: "HEADER_MATCH_PATTERN";
|
|
800
|
-
readonly HEADER_NAME: "HEADER_NAME";
|
|
801
|
-
readonly IP_ADDRESS: "IP_ADDRESS";
|
|
802
|
-
readonly IP_ADDRESS_VERSION: "IP_ADDRESS_VERSION";
|
|
803
|
-
readonly IP_SET: "IP_SET";
|
|
804
|
-
readonly IP_SET_FORWARDED_IP_CONFIG: "IP_SET_FORWARDED_IP_CONFIG";
|
|
805
|
-
readonly IP_SET_REFERENCE_STATEMENT: "IP_SET_REFERENCE_STATEMENT";
|
|
806
|
-
readonly JSON_MATCH_PATTERN: "JSON_MATCH_PATTERN";
|
|
807
|
-
readonly JSON_MATCH_SCOPE: "JSON_MATCH_SCOPE";
|
|
808
|
-
readonly LABEL_MATCH_STATEMENT: "LABEL_MATCH_STATEMENT";
|
|
809
|
-
readonly LOGGING_FILTER: "LOGGING_FILTER";
|
|
810
|
-
readonly LOG_DESTINATION: "LOG_DESTINATION";
|
|
811
|
-
readonly LOW_REPUTATION_MODE: "LOW_REPUTATION_MODE";
|
|
812
|
-
readonly MANAGED_RULE_GROUP_CONFIG: "MANAGED_RULE_GROUP_CONFIG";
|
|
813
|
-
readonly MANAGED_RULE_SET: "MANAGED_RULE_SET";
|
|
814
|
-
readonly MANAGED_RULE_SET_STATEMENT: "MANAGED_RULE_SET_STATEMENT";
|
|
815
|
-
readonly MAP_MATCH_SCOPE: "MAP_MATCH_SCOPE";
|
|
816
|
-
readonly METRIC_NAME: "METRIC_NAME";
|
|
817
|
-
readonly NOT_STATEMENT: "NOT_STATEMENT";
|
|
818
|
-
readonly OR_STATEMENT: "OR_STATEMENT";
|
|
819
|
-
readonly OVERRIDE_ACTION: "OVERRIDE_ACTION";
|
|
820
|
-
readonly OVERSIZE_HANDLING: "OVERSIZE_HANDLING";
|
|
821
|
-
readonly PAYLOAD_TYPE: "PAYLOAD_TYPE";
|
|
822
|
-
readonly POSITION: "POSITION";
|
|
823
|
-
readonly RATE_BASED_STATEMENT: "RATE_BASED_STATEMENT";
|
|
824
|
-
readonly REGEX_PATTERN_REFERENCE_STATEMENT: "REGEX_PATTERN_REFERENCE_STATEMENT";
|
|
825
|
-
readonly REGEX_PATTERN_SET: "REGEX_PATTERN_SET";
|
|
826
|
-
readonly RESOURCE_ARN: "RESOURCE_ARN";
|
|
827
|
-
readonly RESOURCE_TYPE: "RESOURCE_TYPE";
|
|
828
|
-
readonly RESPONSE_CONTENT_TYPE: "RESPONSE_CONTENT_TYPE";
|
|
829
|
-
readonly RULE: "RULE";
|
|
830
|
-
readonly RULE_ACTION: "RULE_ACTION";
|
|
831
|
-
readonly RULE_GROUP: "RULE_GROUP";
|
|
832
|
-
readonly RULE_GROUP_REFERENCE_STATEMENT: "RULE_GROUP_REFERENCE_STATEMENT";
|
|
833
|
-
readonly SCOPE_DOWN: "SCOPE_DOWN";
|
|
834
|
-
readonly SCOPE_VALUE: "SCOPE_VALUE";
|
|
835
|
-
readonly SINGLE_HEADER: "SINGLE_HEADER";
|
|
836
|
-
readonly SINGLE_QUERY_ARGUMENT: "SINGLE_QUERY_ARGUMENT";
|
|
837
|
-
readonly SIZE_CONSTRAINT_STATEMENT: "SIZE_CONSTRAINT_STATEMENT";
|
|
838
|
-
readonly SQLI_MATCH_STATEMENT: "SQLI_MATCH_STATEMENT";
|
|
839
|
-
readonly STATEMENT: "STATEMENT";
|
|
840
|
-
readonly TAGS: "TAGS";
|
|
841
|
-
readonly TAG_KEYS: "TAG_KEYS";
|
|
842
|
-
readonly TEXT_TRANSFORMATION: "TEXT_TRANSFORMATION";
|
|
843
|
-
readonly TOKEN_DOMAIN: "TOKEN_DOMAIN";
|
|
844
|
-
readonly WEB_ACL: "WEB_ACL";
|
|
845
|
-
readonly XSS_MATCH_STATEMENT: "XSS_MATCH_STATEMENT";
|
|
846
|
-
};
|
|
847
|
-
export type ParameterExceptionField =
|
|
848
|
-
(typeof ParameterExceptionField)[keyof typeof ParameterExceptionField];
|
|
849
|
-
export declare class WAFInvalidParameterException extends __BaseException {
|
|
850
|
-
readonly name: "WAFInvalidParameterException";
|
|
851
|
-
readonly $fault: "client";
|
|
852
|
-
Field?: ParameterExceptionField | undefined;
|
|
853
|
-
Parameter?: string | undefined;
|
|
854
|
-
Reason?: string | undefined;
|
|
855
|
-
constructor(
|
|
856
|
-
opts: __ExceptionOptionType<WAFInvalidParameterException, __BaseException>
|
|
857
|
-
);
|
|
858
|
-
}
|
|
859
|
-
export declare class WAFLimitsExceededException extends __BaseException {
|
|
860
|
-
readonly name: "WAFLimitsExceededException";
|
|
861
|
-
readonly $fault: "client";
|
|
862
|
-
Message?: string | undefined;
|
|
863
|
-
SourceType?: string | undefined;
|
|
864
|
-
constructor(
|
|
865
|
-
opts: __ExceptionOptionType<WAFLimitsExceededException, __BaseException>
|
|
866
|
-
);
|
|
867
|
-
}
|
|
868
|
-
export declare class WAFNonexistentItemException extends __BaseException {
|
|
869
|
-
readonly name: "WAFNonexistentItemException";
|
|
870
|
-
readonly $fault: "client";
|
|
871
|
-
Message?: string | undefined;
|
|
872
|
-
constructor(
|
|
873
|
-
opts: __ExceptionOptionType<WAFNonexistentItemException, __BaseException>
|
|
874
|
-
);
|
|
875
|
-
}
|
|
876
|
-
export declare class WAFUnavailableEntityException extends __BaseException {
|
|
877
|
-
readonly name: "WAFUnavailableEntityException";
|
|
878
|
-
readonly $fault: "client";
|
|
879
|
-
Message?: string | undefined;
|
|
880
|
-
constructor(
|
|
881
|
-
opts: __ExceptionOptionType<WAFUnavailableEntityException, __BaseException>
|
|
882
|
-
);
|
|
883
|
-
}
|
|
884
|
-
export declare const SizeInspectionLimit: {
|
|
885
|
-
readonly KB_16: "KB_16";
|
|
886
|
-
readonly KB_32: "KB_32";
|
|
887
|
-
readonly KB_48: "KB_48";
|
|
888
|
-
readonly KB_64: "KB_64";
|
|
889
|
-
};
|
|
890
|
-
export type SizeInspectionLimit =
|
|
891
|
-
(typeof SizeInspectionLimit)[keyof typeof SizeInspectionLimit];
|
|
892
380
|
export interface RequestBodyAssociatedResourceTypeConfig {
|
|
893
381
|
DefaultSizeInspectionLimit: SizeInspectionLimit | undefined;
|
|
894
382
|
}
|
|
@@ -921,44 +409,9 @@ export interface VisibilityConfig {
|
|
|
921
409
|
CloudWatchMetricsEnabled: boolean | undefined;
|
|
922
410
|
MetricName: string | undefined;
|
|
923
411
|
}
|
|
924
|
-
export declare const Scope: {
|
|
925
|
-
readonly CLOUDFRONT: "CLOUDFRONT";
|
|
926
|
-
readonly REGIONAL: "REGIONAL";
|
|
927
|
-
};
|
|
928
|
-
export type Scope = (typeof Scope)[keyof typeof Scope];
|
|
929
412
|
export interface CheckCapacityResponse {
|
|
930
413
|
Capacity?: number | undefined;
|
|
931
414
|
}
|
|
932
|
-
export declare class WAFExpiredManagedRuleGroupVersionException extends __BaseException {
|
|
933
|
-
readonly name: "WAFExpiredManagedRuleGroupVersionException";
|
|
934
|
-
readonly $fault: "client";
|
|
935
|
-
Message?: string | undefined;
|
|
936
|
-
constructor(
|
|
937
|
-
opts: __ExceptionOptionType<
|
|
938
|
-
WAFExpiredManagedRuleGroupVersionException,
|
|
939
|
-
__BaseException
|
|
940
|
-
>
|
|
941
|
-
);
|
|
942
|
-
}
|
|
943
|
-
export declare class WAFInvalidResourceException extends __BaseException {
|
|
944
|
-
readonly name: "WAFInvalidResourceException";
|
|
945
|
-
readonly $fault: "client";
|
|
946
|
-
Message?: string | undefined;
|
|
947
|
-
constructor(
|
|
948
|
-
opts: __ExceptionOptionType<WAFInvalidResourceException, __BaseException>
|
|
949
|
-
);
|
|
950
|
-
}
|
|
951
|
-
export declare class WAFSubscriptionNotFoundException extends __BaseException {
|
|
952
|
-
readonly name: "WAFSubscriptionNotFoundException";
|
|
953
|
-
readonly $fault: "client";
|
|
954
|
-
Message?: string | undefined;
|
|
955
|
-
constructor(
|
|
956
|
-
opts: __ExceptionOptionType<
|
|
957
|
-
WAFSubscriptionNotFoundException,
|
|
958
|
-
__BaseException
|
|
959
|
-
>
|
|
960
|
-
);
|
|
961
|
-
}
|
|
962
415
|
export interface CreateAPIKeyRequest {
|
|
963
416
|
Scope: Scope | undefined;
|
|
964
417
|
TokenDomains: string[] | undefined;
|
|
@@ -966,12 +419,6 @@ export interface CreateAPIKeyRequest {
|
|
|
966
419
|
export interface CreateAPIKeyResponse {
|
|
967
420
|
APIKey?: string | undefined;
|
|
968
421
|
}
|
|
969
|
-
export declare const IPAddressVersion: {
|
|
970
|
-
readonly IPV4: "IPV4";
|
|
971
|
-
readonly IPV6: "IPV6";
|
|
972
|
-
};
|
|
973
|
-
export type IPAddressVersion =
|
|
974
|
-
(typeof IPAddressVersion)[keyof typeof IPAddressVersion];
|
|
975
422
|
export interface Tag {
|
|
976
423
|
Key: string | undefined;
|
|
977
424
|
Value: string | undefined;
|
|
@@ -994,41 +441,6 @@ export interface IPSetSummary {
|
|
|
994
441
|
export interface CreateIPSetResponse {
|
|
995
442
|
Summary?: IPSetSummary | undefined;
|
|
996
443
|
}
|
|
997
|
-
export declare class WAFDuplicateItemException extends __BaseException {
|
|
998
|
-
readonly name: "WAFDuplicateItemException";
|
|
999
|
-
readonly $fault: "client";
|
|
1000
|
-
Message?: string | undefined;
|
|
1001
|
-
constructor(
|
|
1002
|
-
opts: __ExceptionOptionType<WAFDuplicateItemException, __BaseException>
|
|
1003
|
-
);
|
|
1004
|
-
}
|
|
1005
|
-
export declare class WAFOptimisticLockException extends __BaseException {
|
|
1006
|
-
readonly name: "WAFOptimisticLockException";
|
|
1007
|
-
readonly $fault: "client";
|
|
1008
|
-
Message?: string | undefined;
|
|
1009
|
-
constructor(
|
|
1010
|
-
opts: __ExceptionOptionType<WAFOptimisticLockException, __BaseException>
|
|
1011
|
-
);
|
|
1012
|
-
}
|
|
1013
|
-
export declare class WAFTagOperationException extends __BaseException {
|
|
1014
|
-
readonly name: "WAFTagOperationException";
|
|
1015
|
-
readonly $fault: "client";
|
|
1016
|
-
Message?: string | undefined;
|
|
1017
|
-
constructor(
|
|
1018
|
-
opts: __ExceptionOptionType<WAFTagOperationException, __BaseException>
|
|
1019
|
-
);
|
|
1020
|
-
}
|
|
1021
|
-
export declare class WAFTagOperationInternalErrorException extends __BaseException {
|
|
1022
|
-
readonly name: "WAFTagOperationInternalErrorException";
|
|
1023
|
-
readonly $fault: "server";
|
|
1024
|
-
Message?: string | undefined;
|
|
1025
|
-
constructor(
|
|
1026
|
-
opts: __ExceptionOptionType<
|
|
1027
|
-
WAFTagOperationInternalErrorException,
|
|
1028
|
-
__BaseException
|
|
1029
|
-
>
|
|
1030
|
-
);
|
|
1031
|
-
}
|
|
1032
444
|
export interface CreateRegexPatternSetRequest {
|
|
1033
445
|
Name: string | undefined;
|
|
1034
446
|
Scope: Scope | undefined;
|
|
@@ -1046,13 +458,6 @@ export interface RegexPatternSetSummary {
|
|
|
1046
458
|
export interface CreateRegexPatternSetResponse {
|
|
1047
459
|
Summary?: RegexPatternSetSummary | undefined;
|
|
1048
460
|
}
|
|
1049
|
-
export declare const ResponseContentType: {
|
|
1050
|
-
readonly APPLICATION_JSON: "APPLICATION_JSON";
|
|
1051
|
-
readonly TEXT_HTML: "TEXT_HTML";
|
|
1052
|
-
readonly TEXT_PLAIN: "TEXT_PLAIN";
|
|
1053
|
-
};
|
|
1054
|
-
export type ResponseContentType =
|
|
1055
|
-
(typeof ResponseContentType)[keyof typeof ResponseContentType];
|
|
1056
461
|
export interface CustomResponseBody {
|
|
1057
462
|
ContentType: ResponseContentType | undefined;
|
|
1058
463
|
Content: string | undefined;
|
|
@@ -1067,21 +472,6 @@ export interface RuleGroupSummary {
|
|
|
1067
472
|
export interface CreateRuleGroupResponse {
|
|
1068
473
|
Summary?: RuleGroupSummary | undefined;
|
|
1069
474
|
}
|
|
1070
|
-
export declare const DataProtectionAction: {
|
|
1071
|
-
readonly HASH: "HASH";
|
|
1072
|
-
readonly SUBSTITUTION: "SUBSTITUTION";
|
|
1073
|
-
};
|
|
1074
|
-
export type DataProtectionAction =
|
|
1075
|
-
(typeof DataProtectionAction)[keyof typeof DataProtectionAction];
|
|
1076
|
-
export declare const FieldToProtectType: {
|
|
1077
|
-
readonly BODY: "BODY";
|
|
1078
|
-
readonly QUERY_STRING: "QUERY_STRING";
|
|
1079
|
-
readonly SINGLE_COOKIE: "SINGLE_COOKIE";
|
|
1080
|
-
readonly SINGLE_HEADER: "SINGLE_HEADER";
|
|
1081
|
-
readonly SINGLE_QUERY_ARGUMENT: "SINGLE_QUERY_ARGUMENT";
|
|
1082
|
-
};
|
|
1083
|
-
export type FieldToProtectType =
|
|
1084
|
-
(typeof FieldToProtectType)[keyof typeof FieldToProtectType];
|
|
1085
475
|
export interface FieldToProtect {
|
|
1086
476
|
FieldType: FieldToProtectType | undefined;
|
|
1087
477
|
FieldKeys?: string[] | undefined;
|
|
@@ -1099,12 +489,6 @@ export interface DefaultAction {
|
|
|
1099
489
|
Block?: BlockAction | undefined;
|
|
1100
490
|
Allow?: AllowAction | undefined;
|
|
1101
491
|
}
|
|
1102
|
-
export declare const LowReputationMode: {
|
|
1103
|
-
readonly ACTIVE_UNDER_DDOS: "ACTIVE_UNDER_DDOS";
|
|
1104
|
-
readonly ALWAYS_ON: "ALWAYS_ON";
|
|
1105
|
-
};
|
|
1106
|
-
export type LowReputationMode =
|
|
1107
|
-
(typeof LowReputationMode)[keyof typeof LowReputationMode];
|
|
1108
492
|
export interface OnSourceDDoSProtectionConfig {
|
|
1109
493
|
ALBLowReputationMode: LowReputationMode | undefined;
|
|
1110
494
|
}
|
|
@@ -1118,17 +502,6 @@ export interface WebACLSummary {
|
|
|
1118
502
|
export interface CreateWebACLResponse {
|
|
1119
503
|
Summary?: WebACLSummary | undefined;
|
|
1120
504
|
}
|
|
1121
|
-
export declare class WAFConfigurationWarningException extends __BaseException {
|
|
1122
|
-
readonly name: "WAFConfigurationWarningException";
|
|
1123
|
-
readonly $fault: "client";
|
|
1124
|
-
Message?: string | undefined;
|
|
1125
|
-
constructor(
|
|
1126
|
-
opts: __ExceptionOptionType<
|
|
1127
|
-
WAFConfigurationWarningException,
|
|
1128
|
-
__BaseException
|
|
1129
|
-
>
|
|
1130
|
-
);
|
|
1131
|
-
}
|
|
1132
505
|
export interface DeleteAPIKeyRequest {
|
|
1133
506
|
Scope: Scope | undefined;
|
|
1134
507
|
APIKey: string | undefined;
|
|
@@ -1148,24 +521,6 @@ export interface DeleteIPSetRequest {
|
|
|
1148
521
|
LockToken: string | undefined;
|
|
1149
522
|
}
|
|
1150
523
|
export interface DeleteIPSetResponse {}
|
|
1151
|
-
export declare class WAFAssociatedItemException extends __BaseException {
|
|
1152
|
-
readonly name: "WAFAssociatedItemException";
|
|
1153
|
-
readonly $fault: "client";
|
|
1154
|
-
Message?: string | undefined;
|
|
1155
|
-
constructor(
|
|
1156
|
-
opts: __ExceptionOptionType<WAFAssociatedItemException, __BaseException>
|
|
1157
|
-
);
|
|
1158
|
-
}
|
|
1159
|
-
export declare const LogScope: {
|
|
1160
|
-
readonly CLOUDWATCH_TELEMETRY_RULE_MANAGED: "CLOUDWATCH_TELEMETRY_RULE_MANAGED";
|
|
1161
|
-
readonly CUSTOMER: "CUSTOMER";
|
|
1162
|
-
readonly SECURITY_LAKE: "SECURITY_LAKE";
|
|
1163
|
-
};
|
|
1164
|
-
export type LogScope = (typeof LogScope)[keyof typeof LogScope];
|
|
1165
|
-
export declare const LogType: {
|
|
1166
|
-
readonly WAF_LOGS: "WAF_LOGS";
|
|
1167
|
-
};
|
|
1168
|
-
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
1169
524
|
export interface DeleteLoggingConfigurationRequest {
|
|
1170
525
|
ResourceArn: string | undefined;
|
|
1171
526
|
LogType?: LogType | undefined;
|
|
@@ -1247,11 +602,6 @@ export interface DisassociateWebACLRequest {
|
|
|
1247
602
|
ResourceArn: string | undefined;
|
|
1248
603
|
}
|
|
1249
604
|
export interface DisassociateWebACLResponse {}
|
|
1250
|
-
export declare const Platform: {
|
|
1251
|
-
readonly ANDROID: "ANDROID";
|
|
1252
|
-
readonly IOS: "IOS";
|
|
1253
|
-
};
|
|
1254
|
-
export type Platform = (typeof Platform)[keyof typeof Platform];
|
|
1255
605
|
export interface GenerateMobileSdkReleaseUrlRequest {
|
|
1256
606
|
Platform: Platform | undefined;
|
|
1257
607
|
ReleaseVersion: string | undefined;
|
|
@@ -1289,12 +639,6 @@ export interface GetLoggingConfigurationRequest {
|
|
|
1289
639
|
LogType?: LogType | undefined;
|
|
1290
640
|
LogScope?: LogScope | undefined;
|
|
1291
641
|
}
|
|
1292
|
-
export declare const FilterBehavior: {
|
|
1293
|
-
readonly DROP: "DROP";
|
|
1294
|
-
readonly KEEP: "KEEP";
|
|
1295
|
-
};
|
|
1296
|
-
export type FilterBehavior =
|
|
1297
|
-
(typeof FilterBehavior)[keyof typeof FilterBehavior];
|
|
1298
642
|
export interface LabelNameCondition {
|
|
1299
643
|
LabelName: string | undefined;
|
|
1300
644
|
}
|
|
@@ -1302,12 +646,6 @@ export interface Condition {
|
|
|
1302
646
|
ActionCondition?: ActionCondition | undefined;
|
|
1303
647
|
LabelNameCondition?: LabelNameCondition | undefined;
|
|
1304
648
|
}
|
|
1305
|
-
export declare const FilterRequirement: {
|
|
1306
|
-
readonly MEETS_ALL: "MEETS_ALL";
|
|
1307
|
-
readonly MEETS_ANY: "MEETS_ANY";
|
|
1308
|
-
};
|
|
1309
|
-
export type FilterRequirement =
|
|
1310
|
-
(typeof FilterRequirement)[keyof typeof FilterRequirement];
|
|
1311
649
|
export interface Filter {
|
|
1312
650
|
Behavior: FilterBehavior | undefined;
|
|
1313
651
|
Requirement: FilterRequirement | undefined;
|
|
@@ -1389,17 +727,6 @@ export interface GetRateBasedStatementManagedKeysResponse {
|
|
|
1389
727
|
ManagedKeysIPV4?: RateBasedStatementManagedKeysIPSet | undefined;
|
|
1390
728
|
ManagedKeysIPV6?: RateBasedStatementManagedKeysIPSet | undefined;
|
|
1391
729
|
}
|
|
1392
|
-
export declare class WAFUnsupportedAggregateKeyTypeException extends __BaseException {
|
|
1393
|
-
readonly name: "WAFUnsupportedAggregateKeyTypeException";
|
|
1394
|
-
readonly $fault: "client";
|
|
1395
|
-
Message?: string | undefined;
|
|
1396
|
-
constructor(
|
|
1397
|
-
opts: __ExceptionOptionType<
|
|
1398
|
-
WAFUnsupportedAggregateKeyTypeException,
|
|
1399
|
-
__BaseException
|
|
1400
|
-
>
|
|
1401
|
-
);
|
|
1402
|
-
}
|
|
1403
730
|
export interface GetRegexPatternSetRequest {
|
|
1404
731
|
Name: string | undefined;
|
|
1405
732
|
Scope: Scope | undefined;
|
|
@@ -1433,13 +760,6 @@ export interface GetSampledRequestsRequest {
|
|
|
1433
760
|
TimeWindow: TimeWindow | undefined;
|
|
1434
761
|
MaxItems: number | undefined;
|
|
1435
762
|
}
|
|
1436
|
-
export declare const FailureReason: {
|
|
1437
|
-
readonly TOKEN_DOMAIN_MISMATCH: "TOKEN_DOMAIN_MISMATCH";
|
|
1438
|
-
readonly TOKEN_EXPIRED: "TOKEN_EXPIRED";
|
|
1439
|
-
readonly TOKEN_INVALID: "TOKEN_INVALID";
|
|
1440
|
-
readonly TOKEN_MISSING: "TOKEN_MISSING";
|
|
1441
|
-
};
|
|
1442
|
-
export type FailureReason = (typeof FailureReason)[keyof typeof FailureReason];
|
|
1443
763
|
export interface CaptchaResponse {
|
|
1444
764
|
ResponseCode?: number | undefined;
|
|
1445
765
|
SolveTimestamp?: number | undefined;
|
|
@@ -1588,16 +908,6 @@ export interface ListRegexPatternSetsResponse {
|
|
|
1588
908
|
NextMarker?: string | undefined;
|
|
1589
909
|
RegexPatternSets?: RegexPatternSetSummary[] | undefined;
|
|
1590
910
|
}
|
|
1591
|
-
export declare const ResourceType: {
|
|
1592
|
-
readonly AMPLIFY: "AMPLIFY";
|
|
1593
|
-
readonly API_GATEWAY: "API_GATEWAY";
|
|
1594
|
-
readonly APPLICATION_LOAD_BALANCER: "APPLICATION_LOAD_BALANCER";
|
|
1595
|
-
readonly APPSYNC: "APPSYNC";
|
|
1596
|
-
readonly APP_RUNNER_SERVICE: "APP_RUNNER_SERVICE";
|
|
1597
|
-
readonly COGNITIO_USER_POOL: "COGNITO_USER_POOL";
|
|
1598
|
-
readonly VERIFIED_ACCESS_INSTANCE: "VERIFIED_ACCESS_INSTANCE";
|
|
1599
|
-
};
|
|
1600
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
1601
911
|
export interface ListResourcesForWebACLRequest {
|
|
1602
912
|
WebACLArn: string | undefined;
|
|
1603
913
|
ResourceType?: ResourceType | undefined;
|
|
@@ -1642,27 +952,6 @@ export interface PutLoggingConfigurationRequest {
|
|
|
1642
952
|
export interface PutLoggingConfigurationResponse {
|
|
1643
953
|
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
1644
954
|
}
|
|
1645
|
-
export declare class WAFLogDestinationPermissionIssueException extends __BaseException {
|
|
1646
|
-
readonly name: "WAFLogDestinationPermissionIssueException";
|
|
1647
|
-
readonly $fault: "client";
|
|
1648
|
-
Message?: string | undefined;
|
|
1649
|
-
constructor(
|
|
1650
|
-
opts: __ExceptionOptionType<
|
|
1651
|
-
WAFLogDestinationPermissionIssueException,
|
|
1652
|
-
__BaseException
|
|
1653
|
-
>
|
|
1654
|
-
);
|
|
1655
|
-
}
|
|
1656
|
-
export declare class WAFServiceLinkedRoleErrorException extends __BaseException {
|
|
1657
|
-
readonly name: "WAFServiceLinkedRoleErrorException";
|
|
1658
|
-
readonly $fault: "client";
|
|
1659
|
-
constructor(
|
|
1660
|
-
opts: __ExceptionOptionType<
|
|
1661
|
-
WAFServiceLinkedRoleErrorException,
|
|
1662
|
-
__BaseException
|
|
1663
|
-
>
|
|
1664
|
-
);
|
|
1665
|
-
}
|
|
1666
955
|
export interface VersionToPublish {
|
|
1667
956
|
AssociatedRuleGroupArn?: string | undefined;
|
|
1668
957
|
ForecastedLifetime?: number | undefined;
|
|
@@ -1683,17 +972,6 @@ export interface PutPermissionPolicyRequest {
|
|
|
1683
972
|
Policy: string | undefined;
|
|
1684
973
|
}
|
|
1685
974
|
export interface PutPermissionPolicyResponse {}
|
|
1686
|
-
export declare class WAFInvalidPermissionPolicyException extends __BaseException {
|
|
1687
|
-
readonly name: "WAFInvalidPermissionPolicyException";
|
|
1688
|
-
readonly $fault: "client";
|
|
1689
|
-
Message?: string | undefined;
|
|
1690
|
-
constructor(
|
|
1691
|
-
opts: __ExceptionOptionType<
|
|
1692
|
-
WAFInvalidPermissionPolicyException,
|
|
1693
|
-
__BaseException
|
|
1694
|
-
>
|
|
1695
|
-
);
|
|
1696
|
-
}
|
|
1697
975
|
export interface TagResourceRequest {
|
|
1698
976
|
ResourceARN: string | undefined;
|
|
1699
977
|
Tags: Tag[] | undefined;
|
|
@@ -1915,3 +1193,8 @@ export interface WebACL {
|
|
|
1915
1193
|
export interface GetWebACLForResourceResponse {
|
|
1916
1194
|
WebACL?: WebACL | undefined;
|
|
1917
1195
|
}
|
|
1196
|
+
export interface GetWebACLResponse {
|
|
1197
|
+
WebACL?: WebACL | undefined;
|
|
1198
|
+
LockToken?: string | undefined;
|
|
1199
|
+
ApplicationIntegrationURL?: string | undefined;
|
|
1200
|
+
}
|