@aws-sdk/client-waf-regional 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.
@@ -1,32 +1,29 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { WAFRegionalServiceException as __BaseException } from "./WAFRegionalServiceException";
3
- export declare const WafActionType: {
4
- readonly ALLOW: "ALLOW";
5
- readonly BLOCK: "BLOCK";
6
- readonly COUNT: "COUNT";
7
- };
8
- export type WafActionType = (typeof WafActionType)[keyof typeof WafActionType];
1
+ import {
2
+ ChangeAction,
3
+ ChangeTokenStatus,
4
+ ComparisonOperator,
5
+ GeoMatchConstraintType,
6
+ GeoMatchConstraintValue,
7
+ IPSetDescriptorType,
8
+ MatchFieldType,
9
+ PositionalConstraint,
10
+ PredicateType,
11
+ RateKey,
12
+ ResourceType,
13
+ TextTransformation,
14
+ WafActionType,
15
+ WafOverrideActionType,
16
+ WafRuleType,
17
+ } from "./enums";
9
18
  export interface WafAction {
10
19
  Type: WafActionType | undefined;
11
20
  }
12
21
  export interface ExcludedRule {
13
22
  RuleId: string | undefined;
14
23
  }
15
- export declare const WafOverrideActionType: {
16
- readonly COUNT: "COUNT";
17
- readonly NONE: "NONE";
18
- };
19
- export type WafOverrideActionType =
20
- (typeof WafOverrideActionType)[keyof typeof WafOverrideActionType];
21
24
  export interface WafOverrideAction {
22
25
  Type: WafOverrideActionType | undefined;
23
26
  }
24
- export declare const WafRuleType: {
25
- readonly GROUP: "GROUP";
26
- readonly RATE_BASED: "RATE_BASED";
27
- readonly REGULAR: "REGULAR";
28
- };
29
- export type WafRuleType = (typeof WafRuleType)[keyof typeof WafRuleType];
30
27
  export interface ActivatedRule {
31
28
  Priority: number | undefined;
32
29
  RuleId: string | undefined;
@@ -40,112 +37,14 @@ export interface AssociateWebACLRequest {
40
37
  ResourceArn: string | undefined;
41
38
  }
42
39
  export interface AssociateWebACLResponse {}
43
- export declare class WAFInternalErrorException extends __BaseException {
44
- readonly name: "WAFInternalErrorException";
45
- readonly $fault: "server";
46
- constructor(
47
- opts: __ExceptionOptionType<WAFInternalErrorException, __BaseException>
48
- );
49
- }
50
- export declare class WAFInvalidAccountException extends __BaseException {
51
- readonly name: "WAFInvalidAccountException";
52
- readonly $fault: "client";
53
- constructor(
54
- opts: __ExceptionOptionType<WAFInvalidAccountException, __BaseException>
55
- );
56
- }
57
- export declare const ParameterExceptionField: {
58
- readonly BYTE_MATCH_FIELD_TYPE: "BYTE_MATCH_FIELD_TYPE";
59
- readonly BYTE_MATCH_POSITIONAL_CONSTRAINT: "BYTE_MATCH_POSITIONAL_CONSTRAINT";
60
- readonly BYTE_MATCH_TEXT_TRANSFORMATION: "BYTE_MATCH_TEXT_TRANSFORMATION";
61
- readonly CHANGE_ACTION: "CHANGE_ACTION";
62
- readonly GEO_MATCH_LOCATION_TYPE: "GEO_MATCH_LOCATION_TYPE";
63
- readonly GEO_MATCH_LOCATION_VALUE: "GEO_MATCH_LOCATION_VALUE";
64
- readonly IPSET_TYPE: "IPSET_TYPE";
65
- readonly NEXT_MARKER: "NEXT_MARKER";
66
- readonly PREDICATE_TYPE: "PREDICATE_TYPE";
67
- readonly RATE_KEY: "RATE_KEY";
68
- readonly RESOURCE_ARN: "RESOURCE_ARN";
69
- readonly RULE_TYPE: "RULE_TYPE";
70
- readonly SIZE_CONSTRAINT_COMPARISON_OPERATOR: "SIZE_CONSTRAINT_COMPARISON_OPERATOR";
71
- readonly SQL_INJECTION_MATCH_FIELD_TYPE: "SQL_INJECTION_MATCH_FIELD_TYPE";
72
- readonly TAGS: "TAGS";
73
- readonly TAG_KEYS: "TAG_KEYS";
74
- readonly WAF_ACTION: "WAF_ACTION";
75
- readonly WAF_OVERRIDE_ACTION: "WAF_OVERRIDE_ACTION";
76
- };
77
- export type ParameterExceptionField =
78
- (typeof ParameterExceptionField)[keyof typeof ParameterExceptionField];
79
- export declare const ParameterExceptionReason: {
80
- readonly ILLEGAL_ARGUMENT: "ILLEGAL_ARGUMENT";
81
- readonly ILLEGAL_COMBINATION: "ILLEGAL_COMBINATION";
82
- readonly INVALID_OPTION: "INVALID_OPTION";
83
- readonly INVALID_TAG_KEY: "INVALID_TAG_KEY";
84
- };
85
- export type ParameterExceptionReason =
86
- (typeof ParameterExceptionReason)[keyof typeof ParameterExceptionReason];
87
- export declare class WAFInvalidParameterException extends __BaseException {
88
- readonly name: "WAFInvalidParameterException";
89
- readonly $fault: "client";
90
- field?: ParameterExceptionField | undefined;
91
- parameter?: string | undefined;
92
- reason?: ParameterExceptionReason | undefined;
93
- constructor(
94
- opts: __ExceptionOptionType<WAFInvalidParameterException, __BaseException>
95
- );
96
- }
97
- export declare class WAFNonexistentItemException extends __BaseException {
98
- readonly name: "WAFNonexistentItemException";
99
- readonly $fault: "client";
100
- constructor(
101
- opts: __ExceptionOptionType<WAFNonexistentItemException, __BaseException>
102
- );
103
- }
104
- export declare class WAFUnavailableEntityException extends __BaseException {
105
- readonly name: "WAFUnavailableEntityException";
106
- readonly $fault: "client";
107
- constructor(
108
- opts: __ExceptionOptionType<WAFUnavailableEntityException, __BaseException>
109
- );
110
- }
111
40
  export interface CreateByteMatchSetRequest {
112
41
  Name: string | undefined;
113
42
  ChangeToken: string | undefined;
114
43
  }
115
- export declare const MatchFieldType: {
116
- readonly ALL_QUERY_ARGS: "ALL_QUERY_ARGS";
117
- readonly BODY: "BODY";
118
- readonly HEADER: "HEADER";
119
- readonly METHOD: "METHOD";
120
- readonly QUERY_STRING: "QUERY_STRING";
121
- readonly SINGLE_QUERY_ARG: "SINGLE_QUERY_ARG";
122
- readonly URI: "URI";
123
- };
124
- export type MatchFieldType =
125
- (typeof MatchFieldType)[keyof typeof MatchFieldType];
126
44
  export interface FieldToMatch {
127
45
  Type: MatchFieldType | undefined;
128
46
  Data?: string | undefined;
129
47
  }
130
- export declare const PositionalConstraint: {
131
- readonly CONTAINS: "CONTAINS";
132
- readonly CONTAINS_WORD: "CONTAINS_WORD";
133
- readonly ENDS_WITH: "ENDS_WITH";
134
- readonly EXACTLY: "EXACTLY";
135
- readonly STARTS_WITH: "STARTS_WITH";
136
- };
137
- export type PositionalConstraint =
138
- (typeof PositionalConstraint)[keyof typeof PositionalConstraint];
139
- export declare const TextTransformation: {
140
- readonly CMD_LINE: "CMD_LINE";
141
- readonly COMPRESS_WHITE_SPACE: "COMPRESS_WHITE_SPACE";
142
- readonly HTML_ENTITY_DECODE: "HTML_ENTITY_DECODE";
143
- readonly LOWERCASE: "LOWERCASE";
144
- readonly NONE: "NONE";
145
- readonly URL_DECODE: "URL_DECODE";
146
- };
147
- export type TextTransformation =
148
- (typeof TextTransformation)[keyof typeof TextTransformation];
149
48
  export interface ByteMatchTuple {
150
49
  FieldToMatch: FieldToMatch | undefined;
151
50
  TargetString: Uint8Array | undefined;
@@ -161,289 +60,10 @@ export interface CreateByteMatchSetResponse {
161
60
  ByteMatchSet?: ByteMatchSet | undefined;
162
61
  ChangeToken?: string | undefined;
163
62
  }
164
- export declare class WAFDisallowedNameException extends __BaseException {
165
- readonly name: "WAFDisallowedNameException";
166
- readonly $fault: "client";
167
- constructor(
168
- opts: __ExceptionOptionType<WAFDisallowedNameException, __BaseException>
169
- );
170
- }
171
- export declare class WAFLimitsExceededException extends __BaseException {
172
- readonly name: "WAFLimitsExceededException";
173
- readonly $fault: "client";
174
- constructor(
175
- opts: __ExceptionOptionType<WAFLimitsExceededException, __BaseException>
176
- );
177
- }
178
- export declare class WAFStaleDataException extends __BaseException {
179
- readonly name: "WAFStaleDataException";
180
- readonly $fault: "client";
181
- constructor(
182
- opts: __ExceptionOptionType<WAFStaleDataException, __BaseException>
183
- );
184
- }
185
63
  export interface CreateGeoMatchSetRequest {
186
64
  Name: string | undefined;
187
65
  ChangeToken: string | undefined;
188
66
  }
189
- export declare const GeoMatchConstraintType: {
190
- readonly Country: "Country";
191
- };
192
- export type GeoMatchConstraintType =
193
- (typeof GeoMatchConstraintType)[keyof typeof GeoMatchConstraintType];
194
- export declare const GeoMatchConstraintValue: {
195
- readonly AD: "AD";
196
- readonly AE: "AE";
197
- readonly AF: "AF";
198
- readonly AG: "AG";
199
- readonly AI: "AI";
200
- readonly AL: "AL";
201
- readonly AM: "AM";
202
- readonly AO: "AO";
203
- readonly AQ: "AQ";
204
- readonly AR: "AR";
205
- readonly AS: "AS";
206
- readonly AT: "AT";
207
- readonly AU: "AU";
208
- readonly AW: "AW";
209
- readonly AX: "AX";
210
- readonly AZ: "AZ";
211
- readonly BA: "BA";
212
- readonly BB: "BB";
213
- readonly BD: "BD";
214
- readonly BE: "BE";
215
- readonly BF: "BF";
216
- readonly BG: "BG";
217
- readonly BH: "BH";
218
- readonly BI: "BI";
219
- readonly BJ: "BJ";
220
- readonly BL: "BL";
221
- readonly BM: "BM";
222
- readonly BN: "BN";
223
- readonly BO: "BO";
224
- readonly BQ: "BQ";
225
- readonly BR: "BR";
226
- readonly BS: "BS";
227
- readonly BT: "BT";
228
- readonly BV: "BV";
229
- readonly BW: "BW";
230
- readonly BY: "BY";
231
- readonly BZ: "BZ";
232
- readonly CA: "CA";
233
- readonly CC: "CC";
234
- readonly CD: "CD";
235
- readonly CF: "CF";
236
- readonly CG: "CG";
237
- readonly CH: "CH";
238
- readonly CI: "CI";
239
- readonly CK: "CK";
240
- readonly CL: "CL";
241
- readonly CM: "CM";
242
- readonly CN: "CN";
243
- readonly CO: "CO";
244
- readonly CR: "CR";
245
- readonly CU: "CU";
246
- readonly CV: "CV";
247
- readonly CW: "CW";
248
- readonly CX: "CX";
249
- readonly CY: "CY";
250
- readonly CZ: "CZ";
251
- readonly DE: "DE";
252
- readonly DJ: "DJ";
253
- readonly DK: "DK";
254
- readonly DM: "DM";
255
- readonly DO: "DO";
256
- readonly DZ: "DZ";
257
- readonly EC: "EC";
258
- readonly EE: "EE";
259
- readonly EG: "EG";
260
- readonly EH: "EH";
261
- readonly ER: "ER";
262
- readonly ES: "ES";
263
- readonly ET: "ET";
264
- readonly FI: "FI";
265
- readonly FJ: "FJ";
266
- readonly FK: "FK";
267
- readonly FM: "FM";
268
- readonly FO: "FO";
269
- readonly FR: "FR";
270
- readonly GA: "GA";
271
- readonly GB: "GB";
272
- readonly GD: "GD";
273
- readonly GE: "GE";
274
- readonly GF: "GF";
275
- readonly GG: "GG";
276
- readonly GH: "GH";
277
- readonly GI: "GI";
278
- readonly GL: "GL";
279
- readonly GM: "GM";
280
- readonly GN: "GN";
281
- readonly GP: "GP";
282
- readonly GQ: "GQ";
283
- readonly GR: "GR";
284
- readonly GS: "GS";
285
- readonly GT: "GT";
286
- readonly GU: "GU";
287
- readonly GW: "GW";
288
- readonly GY: "GY";
289
- readonly HK: "HK";
290
- readonly HM: "HM";
291
- readonly HN: "HN";
292
- readonly HR: "HR";
293
- readonly HT: "HT";
294
- readonly HU: "HU";
295
- readonly ID: "ID";
296
- readonly IE: "IE";
297
- readonly IL: "IL";
298
- readonly IM: "IM";
299
- readonly IN: "IN";
300
- readonly IO: "IO";
301
- readonly IQ: "IQ";
302
- readonly IR: "IR";
303
- readonly IS: "IS";
304
- readonly IT: "IT";
305
- readonly JE: "JE";
306
- readonly JM: "JM";
307
- readonly JO: "JO";
308
- readonly JP: "JP";
309
- readonly KE: "KE";
310
- readonly KG: "KG";
311
- readonly KH: "KH";
312
- readonly KI: "KI";
313
- readonly KM: "KM";
314
- readonly KN: "KN";
315
- readonly KP: "KP";
316
- readonly KR: "KR";
317
- readonly KW: "KW";
318
- readonly KY: "KY";
319
- readonly KZ: "KZ";
320
- readonly LA: "LA";
321
- readonly LB: "LB";
322
- readonly LC: "LC";
323
- readonly LI: "LI";
324
- readonly LK: "LK";
325
- readonly LR: "LR";
326
- readonly LS: "LS";
327
- readonly LT: "LT";
328
- readonly LU: "LU";
329
- readonly LV: "LV";
330
- readonly LY: "LY";
331
- readonly MA: "MA";
332
- readonly MC: "MC";
333
- readonly MD: "MD";
334
- readonly ME: "ME";
335
- readonly MF: "MF";
336
- readonly MG: "MG";
337
- readonly MH: "MH";
338
- readonly MK: "MK";
339
- readonly ML: "ML";
340
- readonly MM: "MM";
341
- readonly MN: "MN";
342
- readonly MO: "MO";
343
- readonly MP: "MP";
344
- readonly MQ: "MQ";
345
- readonly MR: "MR";
346
- readonly MS: "MS";
347
- readonly MT: "MT";
348
- readonly MU: "MU";
349
- readonly MV: "MV";
350
- readonly MW: "MW";
351
- readonly MX: "MX";
352
- readonly MY: "MY";
353
- readonly MZ: "MZ";
354
- readonly NA: "NA";
355
- readonly NC: "NC";
356
- readonly NE: "NE";
357
- readonly NF: "NF";
358
- readonly NG: "NG";
359
- readonly NI: "NI";
360
- readonly NL: "NL";
361
- readonly NO: "NO";
362
- readonly NP: "NP";
363
- readonly NR: "NR";
364
- readonly NU: "NU";
365
- readonly NZ: "NZ";
366
- readonly OM: "OM";
367
- readonly PA: "PA";
368
- readonly PE: "PE";
369
- readonly PF: "PF";
370
- readonly PG: "PG";
371
- readonly PH: "PH";
372
- readonly PK: "PK";
373
- readonly PL: "PL";
374
- readonly PM: "PM";
375
- readonly PN: "PN";
376
- readonly PR: "PR";
377
- readonly PS: "PS";
378
- readonly PT: "PT";
379
- readonly PW: "PW";
380
- readonly PY: "PY";
381
- readonly QA: "QA";
382
- readonly RE: "RE";
383
- readonly RO: "RO";
384
- readonly RS: "RS";
385
- readonly RU: "RU";
386
- readonly RW: "RW";
387
- readonly SA: "SA";
388
- readonly SB: "SB";
389
- readonly SC: "SC";
390
- readonly SD: "SD";
391
- readonly SE: "SE";
392
- readonly SG: "SG";
393
- readonly SH: "SH";
394
- readonly SI: "SI";
395
- readonly SJ: "SJ";
396
- readonly SK: "SK";
397
- readonly SL: "SL";
398
- readonly SM: "SM";
399
- readonly SN: "SN";
400
- readonly SO: "SO";
401
- readonly SR: "SR";
402
- readonly SS: "SS";
403
- readonly ST: "ST";
404
- readonly SV: "SV";
405
- readonly SX: "SX";
406
- readonly SY: "SY";
407
- readonly SZ: "SZ";
408
- readonly TC: "TC";
409
- readonly TD: "TD";
410
- readonly TF: "TF";
411
- readonly TG: "TG";
412
- readonly TH: "TH";
413
- readonly TJ: "TJ";
414
- readonly TK: "TK";
415
- readonly TL: "TL";
416
- readonly TM: "TM";
417
- readonly TN: "TN";
418
- readonly TO: "TO";
419
- readonly TR: "TR";
420
- readonly TT: "TT";
421
- readonly TV: "TV";
422
- readonly TW: "TW";
423
- readonly TZ: "TZ";
424
- readonly UA: "UA";
425
- readonly UG: "UG";
426
- readonly UM: "UM";
427
- readonly US: "US";
428
- readonly UY: "UY";
429
- readonly UZ: "UZ";
430
- readonly VA: "VA";
431
- readonly VC: "VC";
432
- readonly VE: "VE";
433
- readonly VG: "VG";
434
- readonly VI: "VI";
435
- readonly VN: "VN";
436
- readonly VU: "VU";
437
- readonly WF: "WF";
438
- readonly WS: "WS";
439
- readonly YE: "YE";
440
- readonly YT: "YT";
441
- readonly ZA: "ZA";
442
- readonly ZM: "ZM";
443
- readonly ZW: "ZW";
444
- };
445
- export type GeoMatchConstraintValue =
446
- (typeof GeoMatchConstraintValue)[keyof typeof GeoMatchConstraintValue];
447
67
  export interface GeoMatchConstraint {
448
68
  Type: GeoMatchConstraintType | undefined;
449
69
  Value: GeoMatchConstraintValue | undefined;
@@ -461,12 +81,6 @@ export interface CreateIPSetRequest {
461
81
  Name: string | undefined;
462
82
  ChangeToken: string | undefined;
463
83
  }
464
- export declare const IPSetDescriptorType: {
465
- readonly IPV4: "IPV4";
466
- readonly IPV6: "IPV6";
467
- };
468
- export type IPSetDescriptorType =
469
- (typeof IPSetDescriptorType)[keyof typeof IPSetDescriptorType];
470
84
  export interface IPSetDescriptor {
471
85
  Type: IPSetDescriptorType | undefined;
472
86
  Value: string | undefined;
@@ -480,10 +94,6 @@ export interface CreateIPSetResponse {
480
94
  IPSet?: IPSet | undefined;
481
95
  ChangeToken?: string | undefined;
482
96
  }
483
- export declare const RateKey: {
484
- readonly IP: "IP";
485
- };
486
- export type RateKey = (typeof RateKey)[keyof typeof RateKey];
487
97
  export interface Tag {
488
98
  Key: string | undefined;
489
99
  Value: string | undefined;
@@ -496,16 +106,6 @@ export interface CreateRateBasedRuleRequest {
496
106
  ChangeToken: string | undefined;
497
107
  Tags?: Tag[] | undefined;
498
108
  }
499
- export declare const PredicateType: {
500
- readonly BYTE_MATCH: "ByteMatch";
501
- readonly GEO_MATCH: "GeoMatch";
502
- readonly IP_MATCH: "IPMatch";
503
- readonly REGEX_MATCH: "RegexMatch";
504
- readonly SIZE_CONSTRAINT: "SizeConstraint";
505
- readonly SQL_INJECTION_MATCH: "SqlInjectionMatch";
506
- readonly XSS_MATCH: "XssMatch";
507
- };
508
- export type PredicateType = (typeof PredicateType)[keyof typeof PredicateType];
509
109
  export interface Predicate {
510
110
  Negated: boolean | undefined;
511
111
  Type: PredicateType | undefined;
@@ -523,30 +123,6 @@ export interface CreateRateBasedRuleResponse {
523
123
  Rule?: RateBasedRule | undefined;
524
124
  ChangeToken?: string | undefined;
525
125
  }
526
- export declare class WAFBadRequestException extends __BaseException {
527
- readonly name: "WAFBadRequestException";
528
- readonly $fault: "client";
529
- constructor(
530
- opts: __ExceptionOptionType<WAFBadRequestException, __BaseException>
531
- );
532
- }
533
- export declare class WAFTagOperationException extends __BaseException {
534
- readonly name: "WAFTagOperationException";
535
- readonly $fault: "client";
536
- constructor(
537
- opts: __ExceptionOptionType<WAFTagOperationException, __BaseException>
538
- );
539
- }
540
- export declare class WAFTagOperationInternalErrorException extends __BaseException {
541
- readonly name: "WAFTagOperationInternalErrorException";
542
- readonly $fault: "server";
543
- constructor(
544
- opts: __ExceptionOptionType<
545
- WAFTagOperationInternalErrorException,
546
- __BaseException
547
- >
548
- );
549
- }
550
126
  export interface CreateRegexMatchSetRequest {
551
127
  Name: string | undefined;
552
128
  ChangeToken: string | undefined;
@@ -613,16 +189,6 @@ export interface CreateSizeConstraintSetRequest {
613
189
  Name: string | undefined;
614
190
  ChangeToken: string | undefined;
615
191
  }
616
- export declare const ComparisonOperator: {
617
- readonly EQ: "EQ";
618
- readonly GE: "GE";
619
- readonly GT: "GT";
620
- readonly LE: "LE";
621
- readonly LT: "LT";
622
- readonly NE: "NE";
623
- };
624
- export type ComparisonOperator =
625
- (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
626
192
  export interface SizeConstraint {
627
193
  FieldToMatch: FieldToMatch | undefined;
628
194
  TextTransformation: TextTransformation | undefined;
@@ -682,33 +248,6 @@ export interface CreateWebACLMigrationStackRequest {
682
248
  export interface CreateWebACLMigrationStackResponse {
683
249
  S3ObjectUrl: string | undefined;
684
250
  }
685
- export declare const MigrationErrorType: {
686
- readonly ENTITY_NOT_FOUND: "ENTITY_NOT_FOUND";
687
- readonly ENTITY_NOT_SUPPORTED: "ENTITY_NOT_SUPPORTED";
688
- readonly S3_BUCKET_INVALID_REGION: "S3_BUCKET_INVALID_REGION";
689
- readonly S3_BUCKET_NOT_ACCESSIBLE: "S3_BUCKET_NOT_ACCESSIBLE";
690
- readonly S3_BUCKET_NOT_FOUND: "S3_BUCKET_NOT_FOUND";
691
- readonly S3_BUCKET_NO_PERMISSION: "S3_BUCKET_NO_PERMISSION";
692
- readonly S3_INTERNAL_ERROR: "S3_INTERNAL_ERROR";
693
- };
694
- export type MigrationErrorType =
695
- (typeof MigrationErrorType)[keyof typeof MigrationErrorType];
696
- export declare class WAFEntityMigrationException extends __BaseException {
697
- readonly name: "WAFEntityMigrationException";
698
- readonly $fault: "client";
699
- MigrationErrorType?: MigrationErrorType | undefined;
700
- MigrationErrorReason?: string | undefined;
701
- constructor(
702
- opts: __ExceptionOptionType<WAFEntityMigrationException, __BaseException>
703
- );
704
- }
705
- export declare class WAFInvalidOperationException extends __BaseException {
706
- readonly name: "WAFInvalidOperationException";
707
- readonly $fault: "client";
708
- constructor(
709
- opts: __ExceptionOptionType<WAFInvalidOperationException, __BaseException>
710
- );
711
- }
712
251
  export interface CreateXssMatchSetRequest {
713
252
  Name: string | undefined;
714
253
  ChangeToken: string | undefined;
@@ -733,20 +272,6 @@ export interface DeleteByteMatchSetRequest {
733
272
  export interface DeleteByteMatchSetResponse {
734
273
  ChangeToken?: string | undefined;
735
274
  }
736
- export declare class WAFNonEmptyEntityException extends __BaseException {
737
- readonly name: "WAFNonEmptyEntityException";
738
- readonly $fault: "client";
739
- constructor(
740
- opts: __ExceptionOptionType<WAFNonEmptyEntityException, __BaseException>
741
- );
742
- }
743
- export declare class WAFReferencedItemException extends __BaseException {
744
- readonly name: "WAFReferencedItemException";
745
- readonly $fault: "client";
746
- constructor(
747
- opts: __ExceptionOptionType<WAFReferencedItemException, __BaseException>
748
- );
749
- }
750
275
  export interface DeleteGeoMatchSetRequest {
751
276
  GeoMatchSetId: string | undefined;
752
277
  ChangeToken: string | undefined;
@@ -849,13 +374,6 @@ export interface GetChangeTokenResponse {
849
374
  export interface GetChangeTokenStatusRequest {
850
375
  ChangeToken: string | undefined;
851
376
  }
852
- export declare const ChangeTokenStatus: {
853
- readonly INSYNC: "INSYNC";
854
- readonly PENDING: "PENDING";
855
- readonly PROVISIONED: "PROVISIONED";
856
- };
857
- export type ChangeTokenStatus =
858
- (typeof ChangeTokenStatus)[keyof typeof ChangeTokenStatus];
859
377
  export interface GetChangeTokenStatusResponse {
860
378
  ChangeTokenStatus?: ChangeTokenStatus | undefined;
861
379
  }
@@ -1083,11 +601,6 @@ export interface ListRegexPatternSetsResponse {
1083
601
  NextMarker?: string | undefined;
1084
602
  RegexPatternSets?: RegexPatternSetSummary[] | undefined;
1085
603
  }
1086
- export declare const ResourceType: {
1087
- readonly API_GATEWAY: "API_GATEWAY";
1088
- readonly APPLICATION_LOAD_BALANCER: "APPLICATION_LOAD_BALANCER";
1089
- };
1090
- export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
1091
604
  export interface ListResourcesForWebACLRequest {
1092
605
  WebACLId: string | undefined;
1093
606
  ResourceType?: ResourceType | undefined;
@@ -1191,31 +704,11 @@ export interface PutLoggingConfigurationRequest {
1191
704
  export interface PutLoggingConfigurationResponse {
1192
705
  LoggingConfiguration?: LoggingConfiguration | undefined;
1193
706
  }
1194
- export declare class WAFServiceLinkedRoleErrorException extends __BaseException {
1195
- readonly name: "WAFServiceLinkedRoleErrorException";
1196
- readonly $fault: "client";
1197
- constructor(
1198
- opts: __ExceptionOptionType<
1199
- WAFServiceLinkedRoleErrorException,
1200
- __BaseException
1201
- >
1202
- );
1203
- }
1204
707
  export interface PutPermissionPolicyRequest {
1205
708
  ResourceArn: string | undefined;
1206
709
  Policy: string | undefined;
1207
710
  }
1208
711
  export interface PutPermissionPolicyResponse {}
1209
- export declare class WAFInvalidPermissionPolicyException extends __BaseException {
1210
- readonly name: "WAFInvalidPermissionPolicyException";
1211
- readonly $fault: "client";
1212
- constructor(
1213
- opts: __ExceptionOptionType<
1214
- WAFInvalidPermissionPolicyException,
1215
- __BaseException
1216
- >
1217
- );
1218
- }
1219
712
  export interface TagResourceRequest {
1220
713
  ResourceARN: string | undefined;
1221
714
  Tags: Tag[] | undefined;
@@ -1226,11 +719,6 @@ export interface UntagResourceRequest {
1226
719
  TagKeys: string[] | undefined;
1227
720
  }
1228
721
  export interface UntagResourceResponse {}
1229
- export declare const ChangeAction: {
1230
- readonly DELETE: "DELETE";
1231
- readonly INSERT: "INSERT";
1232
- };
1233
- export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
1234
722
  export interface ByteMatchSetUpdate {
1235
723
  Action: ChangeAction | undefined;
1236
724
  ByteMatchTuple: ByteMatchTuple | undefined;
@@ -1243,16 +731,6 @@ export interface UpdateByteMatchSetRequest {
1243
731
  export interface UpdateByteMatchSetResponse {
1244
732
  ChangeToken?: string | undefined;
1245
733
  }
1246
- export declare class WAFNonexistentContainerException extends __BaseException {
1247
- readonly name: "WAFNonexistentContainerException";
1248
- readonly $fault: "client";
1249
- constructor(
1250
- opts: __ExceptionOptionType<
1251
- WAFNonexistentContainerException,
1252
- __BaseException
1253
- >
1254
- );
1255
- }
1256
734
  export interface GeoMatchSetUpdate {
1257
735
  Action: ChangeAction | undefined;
1258
736
  GeoMatchConstraint: GeoMatchConstraint | undefined;
@@ -1314,16 +792,6 @@ export interface UpdateRegexPatternSetRequest {
1314
792
  export interface UpdateRegexPatternSetResponse {
1315
793
  ChangeToken?: string | undefined;
1316
794
  }
1317
- export declare class WAFInvalidRegexPatternException extends __BaseException {
1318
- readonly name: "WAFInvalidRegexPatternException";
1319
- readonly $fault: "client";
1320
- constructor(
1321
- opts: __ExceptionOptionType<
1322
- WAFInvalidRegexPatternException,
1323
- __BaseException
1324
- >
1325
- );
1326
- }
1327
795
  export interface UpdateRuleRequest {
1328
796
  RuleId: string | undefined;
1329
797
  ChangeToken: string | undefined;
@@ -1381,16 +849,6 @@ export interface UpdateWebACLRequest {
1381
849
  export interface UpdateWebACLResponse {
1382
850
  ChangeToken?: string | undefined;
1383
851
  }
1384
- export declare class WAFSubscriptionNotFoundException extends __BaseException {
1385
- readonly name: "WAFSubscriptionNotFoundException";
1386
- readonly $fault: "client";
1387
- constructor(
1388
- opts: __ExceptionOptionType<
1389
- WAFSubscriptionNotFoundException,
1390
- __BaseException
1391
- >
1392
- );
1393
- }
1394
852
  export interface XssMatchSetUpdate {
1395
853
  Action: ChangeAction | undefined;
1396
854
  XssMatchTuple: XssMatchTuple | undefined;