@aws-sdk/client-wafv2 3.933.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 +710 -674
- 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 -779
- package/dist-es/schemas/schemas_0.js +19 -1
- package/dist-types/commands/AssociateWebACLCommand.d.ts +3 -0
- package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/UpdateWebACLCommand.d.ts +3 -0
- 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 +7 -1118
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- 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 +39 -745
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -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,155 +368,15 @@ 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;
|
|
739
374
|
}
|
|
740
375
|
export interface AssociateWebACLResponse {}
|
|
741
|
-
export
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
constructor(
|
|
746
|
-
opts: __ExceptionOptionType<WAFInternalErrorException, __BaseException>
|
|
747
|
-
);
|
|
748
|
-
}
|
|
749
|
-
export declare class WAFInvalidOperationException extends __BaseException {
|
|
750
|
-
readonly name: "WAFInvalidOperationException";
|
|
751
|
-
readonly $fault: "client";
|
|
752
|
-
Message?: string | undefined;
|
|
753
|
-
constructor(
|
|
754
|
-
opts: __ExceptionOptionType<WAFInvalidOperationException, __BaseException>
|
|
755
|
-
);
|
|
756
|
-
}
|
|
757
|
-
export declare const ParameterExceptionField: {
|
|
758
|
-
readonly ACP_RULE_SET_RESPONSE_INSPECTION: "ACP_RULE_SET_RESPONSE_INSPECTION";
|
|
759
|
-
readonly AND_STATEMENT: "AND_STATEMENT";
|
|
760
|
-
readonly ASSOCIABLE_RESOURCE: "ASSOCIABLE_RESOURCE";
|
|
761
|
-
readonly ASSOCIATED_RESOURCE_TYPE: "ASSOCIATED_RESOURCE_TYPE";
|
|
762
|
-
readonly ATP_RULE_SET_RESPONSE_INSPECTION: "ATP_RULE_SET_RESPONSE_INSPECTION";
|
|
763
|
-
readonly BODY_PARSING_FALLBACK_BEHAVIOR: "BODY_PARSING_FALLBACK_BEHAVIOR";
|
|
764
|
-
readonly BYTE_MATCH_STATEMENT: "BYTE_MATCH_STATEMENT";
|
|
765
|
-
readonly CHALLENGE_CONFIG: "CHALLENGE_CONFIG";
|
|
766
|
-
readonly CHANGE_PROPAGATION_STATUS: "CHANGE_PROPAGATION_STATUS";
|
|
767
|
-
readonly COOKIE_MATCH_PATTERN: "COOKIE_MATCH_PATTERN";
|
|
768
|
-
readonly CUSTOM_KEYS: "CUSTOM_KEYS";
|
|
769
|
-
readonly CUSTOM_REQUEST_HANDLING: "CUSTOM_REQUEST_HANDLING";
|
|
770
|
-
readonly CUSTOM_RESPONSE: "CUSTOM_RESPONSE";
|
|
771
|
-
readonly CUSTOM_RESPONSE_BODY: "CUSTOM_RESPONSE_BODY";
|
|
772
|
-
readonly DATA_PROTECTION_CONFIG: "DATA_PROTECTION_CONFIG";
|
|
773
|
-
readonly DEFAULT_ACTION: "DEFAULT_ACTION";
|
|
774
|
-
readonly ENTITY_LIMIT: "ENTITY_LIMIT";
|
|
775
|
-
readonly EXCLUDED_RULE: "EXCLUDED_RULE";
|
|
776
|
-
readonly EXPIRE_TIMESTAMP: "EXPIRE_TIMESTAMP";
|
|
777
|
-
readonly FALLBACK_BEHAVIOR: "FALLBACK_BEHAVIOR";
|
|
778
|
-
readonly FIELD_TO_MATCH: "FIELD_TO_MATCH";
|
|
779
|
-
readonly FILTER_CONDITION: "FILTER_CONDITION";
|
|
780
|
-
readonly FIREWALL_MANAGER_STATEMENT: "FIREWALL_MANAGER_STATEMENT";
|
|
781
|
-
readonly FORWARDED_IP_CONFIG: "FORWARDED_IP_CONFIG";
|
|
782
|
-
readonly GEO_MATCH_STATEMENT: "GEO_MATCH_STATEMENT";
|
|
783
|
-
readonly HEADER_MATCH_PATTERN: "HEADER_MATCH_PATTERN";
|
|
784
|
-
readonly HEADER_NAME: "HEADER_NAME";
|
|
785
|
-
readonly IP_ADDRESS: "IP_ADDRESS";
|
|
786
|
-
readonly IP_ADDRESS_VERSION: "IP_ADDRESS_VERSION";
|
|
787
|
-
readonly IP_SET: "IP_SET";
|
|
788
|
-
readonly IP_SET_FORWARDED_IP_CONFIG: "IP_SET_FORWARDED_IP_CONFIG";
|
|
789
|
-
readonly IP_SET_REFERENCE_STATEMENT: "IP_SET_REFERENCE_STATEMENT";
|
|
790
|
-
readonly JSON_MATCH_PATTERN: "JSON_MATCH_PATTERN";
|
|
791
|
-
readonly JSON_MATCH_SCOPE: "JSON_MATCH_SCOPE";
|
|
792
|
-
readonly LABEL_MATCH_STATEMENT: "LABEL_MATCH_STATEMENT";
|
|
793
|
-
readonly LOGGING_FILTER: "LOGGING_FILTER";
|
|
794
|
-
readonly LOG_DESTINATION: "LOG_DESTINATION";
|
|
795
|
-
readonly LOW_REPUTATION_MODE: "LOW_REPUTATION_MODE";
|
|
796
|
-
readonly MANAGED_RULE_GROUP_CONFIG: "MANAGED_RULE_GROUP_CONFIG";
|
|
797
|
-
readonly MANAGED_RULE_SET: "MANAGED_RULE_SET";
|
|
798
|
-
readonly MANAGED_RULE_SET_STATEMENT: "MANAGED_RULE_SET_STATEMENT";
|
|
799
|
-
readonly MAP_MATCH_SCOPE: "MAP_MATCH_SCOPE";
|
|
800
|
-
readonly METRIC_NAME: "METRIC_NAME";
|
|
801
|
-
readonly NOT_STATEMENT: "NOT_STATEMENT";
|
|
802
|
-
readonly OR_STATEMENT: "OR_STATEMENT";
|
|
803
|
-
readonly OVERRIDE_ACTION: "OVERRIDE_ACTION";
|
|
804
|
-
readonly OVERSIZE_HANDLING: "OVERSIZE_HANDLING";
|
|
805
|
-
readonly PAYLOAD_TYPE: "PAYLOAD_TYPE";
|
|
806
|
-
readonly POSITION: "POSITION";
|
|
807
|
-
readonly RATE_BASED_STATEMENT: "RATE_BASED_STATEMENT";
|
|
808
|
-
readonly REGEX_PATTERN_REFERENCE_STATEMENT: "REGEX_PATTERN_REFERENCE_STATEMENT";
|
|
809
|
-
readonly REGEX_PATTERN_SET: "REGEX_PATTERN_SET";
|
|
810
|
-
readonly RESOURCE_ARN: "RESOURCE_ARN";
|
|
811
|
-
readonly RESOURCE_TYPE: "RESOURCE_TYPE";
|
|
812
|
-
readonly RESPONSE_CONTENT_TYPE: "RESPONSE_CONTENT_TYPE";
|
|
813
|
-
readonly RULE: "RULE";
|
|
814
|
-
readonly RULE_ACTION: "RULE_ACTION";
|
|
815
|
-
readonly RULE_GROUP: "RULE_GROUP";
|
|
816
|
-
readonly RULE_GROUP_REFERENCE_STATEMENT: "RULE_GROUP_REFERENCE_STATEMENT";
|
|
817
|
-
readonly SCOPE_DOWN: "SCOPE_DOWN";
|
|
818
|
-
readonly SCOPE_VALUE: "SCOPE_VALUE";
|
|
819
|
-
readonly SINGLE_HEADER: "SINGLE_HEADER";
|
|
820
|
-
readonly SINGLE_QUERY_ARGUMENT: "SINGLE_QUERY_ARGUMENT";
|
|
821
|
-
readonly SIZE_CONSTRAINT_STATEMENT: "SIZE_CONSTRAINT_STATEMENT";
|
|
822
|
-
readonly SQLI_MATCH_STATEMENT: "SQLI_MATCH_STATEMENT";
|
|
823
|
-
readonly STATEMENT: "STATEMENT";
|
|
824
|
-
readonly TAGS: "TAGS";
|
|
825
|
-
readonly TAG_KEYS: "TAG_KEYS";
|
|
826
|
-
readonly TEXT_TRANSFORMATION: "TEXT_TRANSFORMATION";
|
|
827
|
-
readonly TOKEN_DOMAIN: "TOKEN_DOMAIN";
|
|
828
|
-
readonly WEB_ACL: "WEB_ACL";
|
|
829
|
-
readonly XSS_MATCH_STATEMENT: "XSS_MATCH_STATEMENT";
|
|
830
|
-
};
|
|
831
|
-
export type ParameterExceptionField =
|
|
832
|
-
(typeof ParameterExceptionField)[keyof typeof ParameterExceptionField];
|
|
833
|
-
export declare class WAFInvalidParameterException extends __BaseException {
|
|
834
|
-
readonly name: "WAFInvalidParameterException";
|
|
835
|
-
readonly $fault: "client";
|
|
836
|
-
Field?: ParameterExceptionField | undefined;
|
|
837
|
-
Parameter?: string | undefined;
|
|
838
|
-
Reason?: string | undefined;
|
|
839
|
-
constructor(
|
|
840
|
-
opts: __ExceptionOptionType<WAFInvalidParameterException, __BaseException>
|
|
841
|
-
);
|
|
842
|
-
}
|
|
843
|
-
export declare class WAFLimitsExceededException extends __BaseException {
|
|
844
|
-
readonly name: "WAFLimitsExceededException";
|
|
845
|
-
readonly $fault: "client";
|
|
846
|
-
Message?: string | undefined;
|
|
847
|
-
SourceType?: string | undefined;
|
|
848
|
-
constructor(
|
|
849
|
-
opts: __ExceptionOptionType<WAFLimitsExceededException, __BaseException>
|
|
850
|
-
);
|
|
851
|
-
}
|
|
852
|
-
export declare class WAFNonexistentItemException extends __BaseException {
|
|
853
|
-
readonly name: "WAFNonexistentItemException";
|
|
854
|
-
readonly $fault: "client";
|
|
855
|
-
Message?: string | undefined;
|
|
856
|
-
constructor(
|
|
857
|
-
opts: __ExceptionOptionType<WAFNonexistentItemException, __BaseException>
|
|
858
|
-
);
|
|
859
|
-
}
|
|
860
|
-
export declare class WAFUnavailableEntityException extends __BaseException {
|
|
861
|
-
readonly name: "WAFUnavailableEntityException";
|
|
862
|
-
readonly $fault: "client";
|
|
863
|
-
Message?: string | undefined;
|
|
864
|
-
constructor(
|
|
865
|
-
opts: __ExceptionOptionType<WAFUnavailableEntityException, __BaseException>
|
|
866
|
-
);
|
|
867
|
-
}
|
|
868
|
-
export declare const SizeInspectionLimit: {
|
|
869
|
-
readonly KB_16: "KB_16";
|
|
870
|
-
readonly KB_32: "KB_32";
|
|
871
|
-
readonly KB_48: "KB_48";
|
|
872
|
-
readonly KB_64: "KB_64";
|
|
873
|
-
};
|
|
874
|
-
export type SizeInspectionLimit =
|
|
875
|
-
(typeof SizeInspectionLimit)[keyof typeof SizeInspectionLimit];
|
|
376
|
+
export interface DisallowedFeature {
|
|
377
|
+
Feature?: string | undefined;
|
|
378
|
+
RequiredPricingPlan?: string | undefined;
|
|
379
|
+
}
|
|
876
380
|
export interface RequestBodyAssociatedResourceTypeConfig {
|
|
877
381
|
DefaultSizeInspectionLimit: SizeInspectionLimit | undefined;
|
|
878
382
|
}
|
|
@@ -905,44 +409,9 @@ export interface VisibilityConfig {
|
|
|
905
409
|
CloudWatchMetricsEnabled: boolean | undefined;
|
|
906
410
|
MetricName: string | undefined;
|
|
907
411
|
}
|
|
908
|
-
export declare const Scope: {
|
|
909
|
-
readonly CLOUDFRONT: "CLOUDFRONT";
|
|
910
|
-
readonly REGIONAL: "REGIONAL";
|
|
911
|
-
};
|
|
912
|
-
export type Scope = (typeof Scope)[keyof typeof Scope];
|
|
913
412
|
export interface CheckCapacityResponse {
|
|
914
413
|
Capacity?: number | undefined;
|
|
915
414
|
}
|
|
916
|
-
export declare class WAFExpiredManagedRuleGroupVersionException extends __BaseException {
|
|
917
|
-
readonly name: "WAFExpiredManagedRuleGroupVersionException";
|
|
918
|
-
readonly $fault: "client";
|
|
919
|
-
Message?: string | undefined;
|
|
920
|
-
constructor(
|
|
921
|
-
opts: __ExceptionOptionType<
|
|
922
|
-
WAFExpiredManagedRuleGroupVersionException,
|
|
923
|
-
__BaseException
|
|
924
|
-
>
|
|
925
|
-
);
|
|
926
|
-
}
|
|
927
|
-
export declare class WAFInvalidResourceException extends __BaseException {
|
|
928
|
-
readonly name: "WAFInvalidResourceException";
|
|
929
|
-
readonly $fault: "client";
|
|
930
|
-
Message?: string | undefined;
|
|
931
|
-
constructor(
|
|
932
|
-
opts: __ExceptionOptionType<WAFInvalidResourceException, __BaseException>
|
|
933
|
-
);
|
|
934
|
-
}
|
|
935
|
-
export declare class WAFSubscriptionNotFoundException extends __BaseException {
|
|
936
|
-
readonly name: "WAFSubscriptionNotFoundException";
|
|
937
|
-
readonly $fault: "client";
|
|
938
|
-
Message?: string | undefined;
|
|
939
|
-
constructor(
|
|
940
|
-
opts: __ExceptionOptionType<
|
|
941
|
-
WAFSubscriptionNotFoundException,
|
|
942
|
-
__BaseException
|
|
943
|
-
>
|
|
944
|
-
);
|
|
945
|
-
}
|
|
946
415
|
export interface CreateAPIKeyRequest {
|
|
947
416
|
Scope: Scope | undefined;
|
|
948
417
|
TokenDomains: string[] | undefined;
|
|
@@ -950,12 +419,6 @@ export interface CreateAPIKeyRequest {
|
|
|
950
419
|
export interface CreateAPIKeyResponse {
|
|
951
420
|
APIKey?: string | undefined;
|
|
952
421
|
}
|
|
953
|
-
export declare const IPAddressVersion: {
|
|
954
|
-
readonly IPV4: "IPV4";
|
|
955
|
-
readonly IPV6: "IPV6";
|
|
956
|
-
};
|
|
957
|
-
export type IPAddressVersion =
|
|
958
|
-
(typeof IPAddressVersion)[keyof typeof IPAddressVersion];
|
|
959
422
|
export interface Tag {
|
|
960
423
|
Key: string | undefined;
|
|
961
424
|
Value: string | undefined;
|
|
@@ -978,41 +441,6 @@ export interface IPSetSummary {
|
|
|
978
441
|
export interface CreateIPSetResponse {
|
|
979
442
|
Summary?: IPSetSummary | undefined;
|
|
980
443
|
}
|
|
981
|
-
export declare class WAFDuplicateItemException extends __BaseException {
|
|
982
|
-
readonly name: "WAFDuplicateItemException";
|
|
983
|
-
readonly $fault: "client";
|
|
984
|
-
Message?: string | undefined;
|
|
985
|
-
constructor(
|
|
986
|
-
opts: __ExceptionOptionType<WAFDuplicateItemException, __BaseException>
|
|
987
|
-
);
|
|
988
|
-
}
|
|
989
|
-
export declare class WAFOptimisticLockException extends __BaseException {
|
|
990
|
-
readonly name: "WAFOptimisticLockException";
|
|
991
|
-
readonly $fault: "client";
|
|
992
|
-
Message?: string | undefined;
|
|
993
|
-
constructor(
|
|
994
|
-
opts: __ExceptionOptionType<WAFOptimisticLockException, __BaseException>
|
|
995
|
-
);
|
|
996
|
-
}
|
|
997
|
-
export declare class WAFTagOperationException extends __BaseException {
|
|
998
|
-
readonly name: "WAFTagOperationException";
|
|
999
|
-
readonly $fault: "client";
|
|
1000
|
-
Message?: string | undefined;
|
|
1001
|
-
constructor(
|
|
1002
|
-
opts: __ExceptionOptionType<WAFTagOperationException, __BaseException>
|
|
1003
|
-
);
|
|
1004
|
-
}
|
|
1005
|
-
export declare class WAFTagOperationInternalErrorException extends __BaseException {
|
|
1006
|
-
readonly name: "WAFTagOperationInternalErrorException";
|
|
1007
|
-
readonly $fault: "server";
|
|
1008
|
-
Message?: string | undefined;
|
|
1009
|
-
constructor(
|
|
1010
|
-
opts: __ExceptionOptionType<
|
|
1011
|
-
WAFTagOperationInternalErrorException,
|
|
1012
|
-
__BaseException
|
|
1013
|
-
>
|
|
1014
|
-
);
|
|
1015
|
-
}
|
|
1016
444
|
export interface CreateRegexPatternSetRequest {
|
|
1017
445
|
Name: string | undefined;
|
|
1018
446
|
Scope: Scope | undefined;
|
|
@@ -1030,13 +458,6 @@ export interface RegexPatternSetSummary {
|
|
|
1030
458
|
export interface CreateRegexPatternSetResponse {
|
|
1031
459
|
Summary?: RegexPatternSetSummary | undefined;
|
|
1032
460
|
}
|
|
1033
|
-
export declare const ResponseContentType: {
|
|
1034
|
-
readonly APPLICATION_JSON: "APPLICATION_JSON";
|
|
1035
|
-
readonly TEXT_HTML: "TEXT_HTML";
|
|
1036
|
-
readonly TEXT_PLAIN: "TEXT_PLAIN";
|
|
1037
|
-
};
|
|
1038
|
-
export type ResponseContentType =
|
|
1039
|
-
(typeof ResponseContentType)[keyof typeof ResponseContentType];
|
|
1040
461
|
export interface CustomResponseBody {
|
|
1041
462
|
ContentType: ResponseContentType | undefined;
|
|
1042
463
|
Content: string | undefined;
|
|
@@ -1051,21 +472,6 @@ export interface RuleGroupSummary {
|
|
|
1051
472
|
export interface CreateRuleGroupResponse {
|
|
1052
473
|
Summary?: RuleGroupSummary | undefined;
|
|
1053
474
|
}
|
|
1054
|
-
export declare const DataProtectionAction: {
|
|
1055
|
-
readonly HASH: "HASH";
|
|
1056
|
-
readonly SUBSTITUTION: "SUBSTITUTION";
|
|
1057
|
-
};
|
|
1058
|
-
export type DataProtectionAction =
|
|
1059
|
-
(typeof DataProtectionAction)[keyof typeof DataProtectionAction];
|
|
1060
|
-
export declare const FieldToProtectType: {
|
|
1061
|
-
readonly BODY: "BODY";
|
|
1062
|
-
readonly QUERY_STRING: "QUERY_STRING";
|
|
1063
|
-
readonly SINGLE_COOKIE: "SINGLE_COOKIE";
|
|
1064
|
-
readonly SINGLE_HEADER: "SINGLE_HEADER";
|
|
1065
|
-
readonly SINGLE_QUERY_ARGUMENT: "SINGLE_QUERY_ARGUMENT";
|
|
1066
|
-
};
|
|
1067
|
-
export type FieldToProtectType =
|
|
1068
|
-
(typeof FieldToProtectType)[keyof typeof FieldToProtectType];
|
|
1069
475
|
export interface FieldToProtect {
|
|
1070
476
|
FieldType: FieldToProtectType | undefined;
|
|
1071
477
|
FieldKeys?: string[] | undefined;
|
|
@@ -1083,12 +489,6 @@ export interface DefaultAction {
|
|
|
1083
489
|
Block?: BlockAction | undefined;
|
|
1084
490
|
Allow?: AllowAction | undefined;
|
|
1085
491
|
}
|
|
1086
|
-
export declare const LowReputationMode: {
|
|
1087
|
-
readonly ACTIVE_UNDER_DDOS: "ACTIVE_UNDER_DDOS";
|
|
1088
|
-
readonly ALWAYS_ON: "ALWAYS_ON";
|
|
1089
|
-
};
|
|
1090
|
-
export type LowReputationMode =
|
|
1091
|
-
(typeof LowReputationMode)[keyof typeof LowReputationMode];
|
|
1092
492
|
export interface OnSourceDDoSProtectionConfig {
|
|
1093
493
|
ALBLowReputationMode: LowReputationMode | undefined;
|
|
1094
494
|
}
|
|
@@ -1102,17 +502,6 @@ export interface WebACLSummary {
|
|
|
1102
502
|
export interface CreateWebACLResponse {
|
|
1103
503
|
Summary?: WebACLSummary | undefined;
|
|
1104
504
|
}
|
|
1105
|
-
export declare class WAFConfigurationWarningException extends __BaseException {
|
|
1106
|
-
readonly name: "WAFConfigurationWarningException";
|
|
1107
|
-
readonly $fault: "client";
|
|
1108
|
-
Message?: string | undefined;
|
|
1109
|
-
constructor(
|
|
1110
|
-
opts: __ExceptionOptionType<
|
|
1111
|
-
WAFConfigurationWarningException,
|
|
1112
|
-
__BaseException
|
|
1113
|
-
>
|
|
1114
|
-
);
|
|
1115
|
-
}
|
|
1116
505
|
export interface DeleteAPIKeyRequest {
|
|
1117
506
|
Scope: Scope | undefined;
|
|
1118
507
|
APIKey: string | undefined;
|
|
@@ -1132,24 +521,6 @@ export interface DeleteIPSetRequest {
|
|
|
1132
521
|
LockToken: string | undefined;
|
|
1133
522
|
}
|
|
1134
523
|
export interface DeleteIPSetResponse {}
|
|
1135
|
-
export declare class WAFAssociatedItemException extends __BaseException {
|
|
1136
|
-
readonly name: "WAFAssociatedItemException";
|
|
1137
|
-
readonly $fault: "client";
|
|
1138
|
-
Message?: string | undefined;
|
|
1139
|
-
constructor(
|
|
1140
|
-
opts: __ExceptionOptionType<WAFAssociatedItemException, __BaseException>
|
|
1141
|
-
);
|
|
1142
|
-
}
|
|
1143
|
-
export declare const LogScope: {
|
|
1144
|
-
readonly CLOUDWATCH_TELEMETRY_RULE_MANAGED: "CLOUDWATCH_TELEMETRY_RULE_MANAGED";
|
|
1145
|
-
readonly CUSTOMER: "CUSTOMER";
|
|
1146
|
-
readonly SECURITY_LAKE: "SECURITY_LAKE";
|
|
1147
|
-
};
|
|
1148
|
-
export type LogScope = (typeof LogScope)[keyof typeof LogScope];
|
|
1149
|
-
export declare const LogType: {
|
|
1150
|
-
readonly WAF_LOGS: "WAF_LOGS";
|
|
1151
|
-
};
|
|
1152
|
-
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
1153
524
|
export interface DeleteLoggingConfigurationRequest {
|
|
1154
525
|
ResourceArn: string | undefined;
|
|
1155
526
|
LogType?: LogType | undefined;
|
|
@@ -1231,11 +602,6 @@ export interface DisassociateWebACLRequest {
|
|
|
1231
602
|
ResourceArn: string | undefined;
|
|
1232
603
|
}
|
|
1233
604
|
export interface DisassociateWebACLResponse {}
|
|
1234
|
-
export declare const Platform: {
|
|
1235
|
-
readonly ANDROID: "ANDROID";
|
|
1236
|
-
readonly IOS: "IOS";
|
|
1237
|
-
};
|
|
1238
|
-
export type Platform = (typeof Platform)[keyof typeof Platform];
|
|
1239
605
|
export interface GenerateMobileSdkReleaseUrlRequest {
|
|
1240
606
|
Platform: Platform | undefined;
|
|
1241
607
|
ReleaseVersion: string | undefined;
|
|
@@ -1273,12 +639,6 @@ export interface GetLoggingConfigurationRequest {
|
|
|
1273
639
|
LogType?: LogType | undefined;
|
|
1274
640
|
LogScope?: LogScope | undefined;
|
|
1275
641
|
}
|
|
1276
|
-
export declare const FilterBehavior: {
|
|
1277
|
-
readonly DROP: "DROP";
|
|
1278
|
-
readonly KEEP: "KEEP";
|
|
1279
|
-
};
|
|
1280
|
-
export type FilterBehavior =
|
|
1281
|
-
(typeof FilterBehavior)[keyof typeof FilterBehavior];
|
|
1282
642
|
export interface LabelNameCondition {
|
|
1283
643
|
LabelName: string | undefined;
|
|
1284
644
|
}
|
|
@@ -1286,12 +646,6 @@ export interface Condition {
|
|
|
1286
646
|
ActionCondition?: ActionCondition | undefined;
|
|
1287
647
|
LabelNameCondition?: LabelNameCondition | undefined;
|
|
1288
648
|
}
|
|
1289
|
-
export declare const FilterRequirement: {
|
|
1290
|
-
readonly MEETS_ALL: "MEETS_ALL";
|
|
1291
|
-
readonly MEETS_ANY: "MEETS_ANY";
|
|
1292
|
-
};
|
|
1293
|
-
export type FilterRequirement =
|
|
1294
|
-
(typeof FilterRequirement)[keyof typeof FilterRequirement];
|
|
1295
649
|
export interface Filter {
|
|
1296
650
|
Behavior: FilterBehavior | undefined;
|
|
1297
651
|
Requirement: FilterRequirement | undefined;
|
|
@@ -1373,17 +727,6 @@ export interface GetRateBasedStatementManagedKeysResponse {
|
|
|
1373
727
|
ManagedKeysIPV4?: RateBasedStatementManagedKeysIPSet | undefined;
|
|
1374
728
|
ManagedKeysIPV6?: RateBasedStatementManagedKeysIPSet | undefined;
|
|
1375
729
|
}
|
|
1376
|
-
export declare class WAFUnsupportedAggregateKeyTypeException extends __BaseException {
|
|
1377
|
-
readonly name: "WAFUnsupportedAggregateKeyTypeException";
|
|
1378
|
-
readonly $fault: "client";
|
|
1379
|
-
Message?: string | undefined;
|
|
1380
|
-
constructor(
|
|
1381
|
-
opts: __ExceptionOptionType<
|
|
1382
|
-
WAFUnsupportedAggregateKeyTypeException,
|
|
1383
|
-
__BaseException
|
|
1384
|
-
>
|
|
1385
|
-
);
|
|
1386
|
-
}
|
|
1387
730
|
export interface GetRegexPatternSetRequest {
|
|
1388
731
|
Name: string | undefined;
|
|
1389
732
|
Scope: Scope | undefined;
|
|
@@ -1417,13 +760,6 @@ export interface GetSampledRequestsRequest {
|
|
|
1417
760
|
TimeWindow: TimeWindow | undefined;
|
|
1418
761
|
MaxItems: number | undefined;
|
|
1419
762
|
}
|
|
1420
|
-
export declare const FailureReason: {
|
|
1421
|
-
readonly TOKEN_DOMAIN_MISMATCH: "TOKEN_DOMAIN_MISMATCH";
|
|
1422
|
-
readonly TOKEN_EXPIRED: "TOKEN_EXPIRED";
|
|
1423
|
-
readonly TOKEN_INVALID: "TOKEN_INVALID";
|
|
1424
|
-
readonly TOKEN_MISSING: "TOKEN_MISSING";
|
|
1425
|
-
};
|
|
1426
|
-
export type FailureReason = (typeof FailureReason)[keyof typeof FailureReason];
|
|
1427
763
|
export interface CaptchaResponse {
|
|
1428
764
|
ResponseCode?: number | undefined;
|
|
1429
765
|
SolveTimestamp?: number | undefined;
|
|
@@ -1572,16 +908,6 @@ export interface ListRegexPatternSetsResponse {
|
|
|
1572
908
|
NextMarker?: string | undefined;
|
|
1573
909
|
RegexPatternSets?: RegexPatternSetSummary[] | undefined;
|
|
1574
910
|
}
|
|
1575
|
-
export declare const ResourceType: {
|
|
1576
|
-
readonly AMPLIFY: "AMPLIFY";
|
|
1577
|
-
readonly API_GATEWAY: "API_GATEWAY";
|
|
1578
|
-
readonly APPLICATION_LOAD_BALANCER: "APPLICATION_LOAD_BALANCER";
|
|
1579
|
-
readonly APPSYNC: "APPSYNC";
|
|
1580
|
-
readonly APP_RUNNER_SERVICE: "APP_RUNNER_SERVICE";
|
|
1581
|
-
readonly COGNITIO_USER_POOL: "COGNITO_USER_POOL";
|
|
1582
|
-
readonly VERIFIED_ACCESS_INSTANCE: "VERIFIED_ACCESS_INSTANCE";
|
|
1583
|
-
};
|
|
1584
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
1585
911
|
export interface ListResourcesForWebACLRequest {
|
|
1586
912
|
WebACLArn: string | undefined;
|
|
1587
913
|
ResourceType?: ResourceType | undefined;
|
|
@@ -1626,27 +952,6 @@ export interface PutLoggingConfigurationRequest {
|
|
|
1626
952
|
export interface PutLoggingConfigurationResponse {
|
|
1627
953
|
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
1628
954
|
}
|
|
1629
|
-
export declare class WAFLogDestinationPermissionIssueException extends __BaseException {
|
|
1630
|
-
readonly name: "WAFLogDestinationPermissionIssueException";
|
|
1631
|
-
readonly $fault: "client";
|
|
1632
|
-
Message?: string | undefined;
|
|
1633
|
-
constructor(
|
|
1634
|
-
opts: __ExceptionOptionType<
|
|
1635
|
-
WAFLogDestinationPermissionIssueException,
|
|
1636
|
-
__BaseException
|
|
1637
|
-
>
|
|
1638
|
-
);
|
|
1639
|
-
}
|
|
1640
|
-
export declare class WAFServiceLinkedRoleErrorException extends __BaseException {
|
|
1641
|
-
readonly name: "WAFServiceLinkedRoleErrorException";
|
|
1642
|
-
readonly $fault: "client";
|
|
1643
|
-
constructor(
|
|
1644
|
-
opts: __ExceptionOptionType<
|
|
1645
|
-
WAFServiceLinkedRoleErrorException,
|
|
1646
|
-
__BaseException
|
|
1647
|
-
>
|
|
1648
|
-
);
|
|
1649
|
-
}
|
|
1650
955
|
export interface VersionToPublish {
|
|
1651
956
|
AssociatedRuleGroupArn?: string | undefined;
|
|
1652
957
|
ForecastedLifetime?: number | undefined;
|
|
@@ -1667,17 +972,6 @@ export interface PutPermissionPolicyRequest {
|
|
|
1667
972
|
Policy: string | undefined;
|
|
1668
973
|
}
|
|
1669
974
|
export interface PutPermissionPolicyResponse {}
|
|
1670
|
-
export declare class WAFInvalidPermissionPolicyException extends __BaseException {
|
|
1671
|
-
readonly name: "WAFInvalidPermissionPolicyException";
|
|
1672
|
-
readonly $fault: "client";
|
|
1673
|
-
Message?: string | undefined;
|
|
1674
|
-
constructor(
|
|
1675
|
-
opts: __ExceptionOptionType<
|
|
1676
|
-
WAFInvalidPermissionPolicyException,
|
|
1677
|
-
__BaseException
|
|
1678
|
-
>
|
|
1679
|
-
);
|
|
1680
|
-
}
|
|
1681
975
|
export interface TagResourceRequest {
|
|
1682
976
|
ResourceARN: string | undefined;
|
|
1683
977
|
Tags: Tag[] | undefined;
|