@aws-sdk/client-wafv2 3.186.0 → 3.188.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/WAFV2.js +194 -201
  3. package/dist-es/WAFV2Client.js +22 -28
  4. package/dist-es/commands/AssociateWebACLCommand.js +21 -28
  5. package/dist-es/commands/CheckCapacityCommand.js +21 -28
  6. package/dist-es/commands/CreateIPSetCommand.js +21 -28
  7. package/dist-es/commands/CreateRegexPatternSetCommand.js +21 -28
  8. package/dist-es/commands/CreateRuleGroupCommand.js +21 -28
  9. package/dist-es/commands/CreateWebACLCommand.js +21 -28
  10. package/dist-es/commands/DeleteFirewallManagerRuleGroupsCommand.js +21 -28
  11. package/dist-es/commands/DeleteIPSetCommand.js +21 -28
  12. package/dist-es/commands/DeleteLoggingConfigurationCommand.js +21 -28
  13. package/dist-es/commands/DeletePermissionPolicyCommand.js +21 -28
  14. package/dist-es/commands/DeleteRegexPatternSetCommand.js +21 -28
  15. package/dist-es/commands/DeleteRuleGroupCommand.js +21 -28
  16. package/dist-es/commands/DeleteWebACLCommand.js +21 -28
  17. package/dist-es/commands/DescribeManagedRuleGroupCommand.js +21 -28
  18. package/dist-es/commands/DisassociateWebACLCommand.js +21 -28
  19. package/dist-es/commands/GenerateMobileSdkReleaseUrlCommand.js +21 -28
  20. package/dist-es/commands/GetIPSetCommand.js +21 -28
  21. package/dist-es/commands/GetLoggingConfigurationCommand.js +21 -28
  22. package/dist-es/commands/GetManagedRuleSetCommand.js +21 -28
  23. package/dist-es/commands/GetMobileSdkReleaseCommand.js +21 -28
  24. package/dist-es/commands/GetPermissionPolicyCommand.js +21 -28
  25. package/dist-es/commands/GetRateBasedStatementManagedKeysCommand.js +21 -28
  26. package/dist-es/commands/GetRegexPatternSetCommand.js +21 -28
  27. package/dist-es/commands/GetRuleGroupCommand.js +21 -28
  28. package/dist-es/commands/GetSampledRequestsCommand.js +21 -28
  29. package/dist-es/commands/GetWebACLCommand.js +21 -28
  30. package/dist-es/commands/GetWebACLForResourceCommand.js +21 -28
  31. package/dist-es/commands/ListAvailableManagedRuleGroupVersionsCommand.js +21 -28
  32. package/dist-es/commands/ListAvailableManagedRuleGroupsCommand.js +21 -28
  33. package/dist-es/commands/ListIPSetsCommand.js +21 -28
  34. package/dist-es/commands/ListLoggingConfigurationsCommand.js +21 -28
  35. package/dist-es/commands/ListManagedRuleSetsCommand.js +21 -28
  36. package/dist-es/commands/ListMobileSdkReleasesCommand.js +21 -28
  37. package/dist-es/commands/ListRegexPatternSetsCommand.js +21 -28
  38. package/dist-es/commands/ListResourcesForWebACLCommand.js +21 -28
  39. package/dist-es/commands/ListRuleGroupsCommand.js +21 -28
  40. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  41. package/dist-es/commands/ListWebACLsCommand.js +21 -28
  42. package/dist-es/commands/PutLoggingConfigurationCommand.js +21 -28
  43. package/dist-es/commands/PutManagedRuleSetVersionsCommand.js +21 -28
  44. package/dist-es/commands/PutPermissionPolicyCommand.js +21 -28
  45. package/dist-es/commands/TagResourceCommand.js +21 -28
  46. package/dist-es/commands/UntagResourceCommand.js +21 -28
  47. package/dist-es/commands/UpdateIPSetCommand.js +21 -28
  48. package/dist-es/commands/UpdateManagedRuleSetVersionExpiryDateCommand.js +21 -28
  49. package/dist-es/commands/UpdateRegexPatternSetCommand.js +21 -28
  50. package/dist-es/commands/UpdateRuleGroupCommand.js +21 -28
  51. package/dist-es/commands/UpdateWebACLCommand.js +21 -28
  52. package/dist-es/endpoints.js +8 -8
  53. package/dist-es/models/WAFV2ServiceException.js +5 -10
  54. package/dist-es/models/models_0.js +775 -404
  55. package/dist-es/protocols/Aws_json1_1.js +4048 -4810
  56. package/dist-es/runtimeConfig.browser.js +26 -12
  57. package/dist-es/runtimeConfig.js +30 -12
  58. package/dist-es/runtimeConfig.native.js +8 -5
  59. package/dist-es/runtimeConfig.shared.js +8 -11
  60. package/package.json +33 -33
@@ -1,4 +1,3 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { WAFV2ServiceException as __BaseException } from "./WAFV2ServiceException";
3
2
  export var ActionValue;
4
3
  (function (ActionValue) {
@@ -357,32 +356,32 @@ export var SensitivityLevel;
357
356
  SensitivityLevel["HIGH"] = "HIGH";
358
357
  SensitivityLevel["LOW"] = "LOW";
359
358
  })(SensitivityLevel || (SensitivityLevel = {}));
360
- var WAFInternalErrorException = (function (_super) {
361
- __extends(WAFInternalErrorException, _super);
362
- function WAFInternalErrorException(opts) {
363
- var _this = _super.call(this, __assign({ name: "WAFInternalErrorException", $fault: "server" }, opts)) || this;
364
- _this.name = "WAFInternalErrorException";
365
- _this.$fault = "server";
366
- Object.setPrototypeOf(_this, WAFInternalErrorException.prototype);
367
- _this.Message = opts.Message;
368
- return _this;
359
+ export class WAFInternalErrorException extends __BaseException {
360
+ constructor(opts) {
361
+ super({
362
+ name: "WAFInternalErrorException",
363
+ $fault: "server",
364
+ ...opts,
365
+ });
366
+ this.name = "WAFInternalErrorException";
367
+ this.$fault = "server";
368
+ Object.setPrototypeOf(this, WAFInternalErrorException.prototype);
369
+ this.Message = opts.Message;
369
370
  }
370
- return WAFInternalErrorException;
371
- }(__BaseException));
372
- export { WAFInternalErrorException };
373
- var WAFInvalidOperationException = (function (_super) {
374
- __extends(WAFInvalidOperationException, _super);
375
- function WAFInvalidOperationException(opts) {
376
- var _this = _super.call(this, __assign({ name: "WAFInvalidOperationException", $fault: "client" }, opts)) || this;
377
- _this.name = "WAFInvalidOperationException";
378
- _this.$fault = "client";
379
- Object.setPrototypeOf(_this, WAFInvalidOperationException.prototype);
380
- _this.Message = opts.Message;
381
- return _this;
371
+ }
372
+ export class WAFInvalidOperationException extends __BaseException {
373
+ constructor(opts) {
374
+ super({
375
+ name: "WAFInvalidOperationException",
376
+ $fault: "client",
377
+ ...opts,
378
+ });
379
+ this.name = "WAFInvalidOperationException";
380
+ this.$fault = "client";
381
+ Object.setPrototypeOf(this, WAFInvalidOperationException.prototype);
382
+ this.Message = opts.Message;
382
383
  }
383
- return WAFInvalidOperationException;
384
- }(__BaseException));
385
- export { WAFInvalidOperationException };
384
+ }
386
385
  export var ParameterExceptionField;
387
386
  (function (ParameterExceptionField) {
388
387
  ParameterExceptionField["AND_STATEMENT"] = "AND_STATEMENT";
@@ -449,193 +448,193 @@ export var ParameterExceptionField;
449
448
  ParameterExceptionField["WEB_ACL"] = "WEB_ACL";
450
449
  ParameterExceptionField["XSS_MATCH_STATEMENT"] = "XSS_MATCH_STATEMENT";
451
450
  })(ParameterExceptionField || (ParameterExceptionField = {}));
452
- var WAFInvalidParameterException = (function (_super) {
453
- __extends(WAFInvalidParameterException, _super);
454
- function WAFInvalidParameterException(opts) {
455
- var _this = _super.call(this, __assign({ name: "WAFInvalidParameterException", $fault: "client" }, opts)) || this;
456
- _this.name = "WAFInvalidParameterException";
457
- _this.$fault = "client";
458
- Object.setPrototypeOf(_this, WAFInvalidParameterException.prototype);
459
- _this.Field = opts.Field;
460
- _this.Parameter = opts.Parameter;
461
- _this.Reason = opts.Reason;
462
- return _this;
451
+ export class WAFInvalidParameterException extends __BaseException {
452
+ constructor(opts) {
453
+ super({
454
+ name: "WAFInvalidParameterException",
455
+ $fault: "client",
456
+ ...opts,
457
+ });
458
+ this.name = "WAFInvalidParameterException";
459
+ this.$fault = "client";
460
+ Object.setPrototypeOf(this, WAFInvalidParameterException.prototype);
461
+ this.Field = opts.Field;
462
+ this.Parameter = opts.Parameter;
463
+ this.Reason = opts.Reason;
463
464
  }
464
- return WAFInvalidParameterException;
465
- }(__BaseException));
466
- export { WAFInvalidParameterException };
467
- var WAFNonexistentItemException = (function (_super) {
468
- __extends(WAFNonexistentItemException, _super);
469
- function WAFNonexistentItemException(opts) {
470
- var _this = _super.call(this, __assign({ name: "WAFNonexistentItemException", $fault: "client" }, opts)) || this;
471
- _this.name = "WAFNonexistentItemException";
472
- _this.$fault = "client";
473
- Object.setPrototypeOf(_this, WAFNonexistentItemException.prototype);
474
- _this.Message = opts.Message;
475
- return _this;
465
+ }
466
+ export class WAFNonexistentItemException extends __BaseException {
467
+ constructor(opts) {
468
+ super({
469
+ name: "WAFNonexistentItemException",
470
+ $fault: "client",
471
+ ...opts,
472
+ });
473
+ this.name = "WAFNonexistentItemException";
474
+ this.$fault = "client";
475
+ Object.setPrototypeOf(this, WAFNonexistentItemException.prototype);
476
+ this.Message = opts.Message;
476
477
  }
477
- return WAFNonexistentItemException;
478
- }(__BaseException));
479
- export { WAFNonexistentItemException };
480
- var WAFUnavailableEntityException = (function (_super) {
481
- __extends(WAFUnavailableEntityException, _super);
482
- function WAFUnavailableEntityException(opts) {
483
- var _this = _super.call(this, __assign({ name: "WAFUnavailableEntityException", $fault: "client" }, opts)) || this;
484
- _this.name = "WAFUnavailableEntityException";
485
- _this.$fault = "client";
486
- Object.setPrototypeOf(_this, WAFUnavailableEntityException.prototype);
487
- _this.Message = opts.Message;
488
- return _this;
478
+ }
479
+ export class WAFUnavailableEntityException extends __BaseException {
480
+ constructor(opts) {
481
+ super({
482
+ name: "WAFUnavailableEntityException",
483
+ $fault: "client",
484
+ ...opts,
485
+ });
486
+ this.name = "WAFUnavailableEntityException";
487
+ this.$fault = "client";
488
+ Object.setPrototypeOf(this, WAFUnavailableEntityException.prototype);
489
+ this.Message = opts.Message;
489
490
  }
490
- return WAFUnavailableEntityException;
491
- }(__BaseException));
492
- export { WAFUnavailableEntityException };
491
+ }
493
492
  export var Scope;
494
493
  (function (Scope) {
495
494
  Scope["CLOUDFRONT"] = "CLOUDFRONT";
496
495
  Scope["REGIONAL"] = "REGIONAL";
497
496
  })(Scope || (Scope = {}));
498
- var WAFExpiredManagedRuleGroupVersionException = (function (_super) {
499
- __extends(WAFExpiredManagedRuleGroupVersionException, _super);
500
- function WAFExpiredManagedRuleGroupVersionException(opts) {
501
- var _this = _super.call(this, __assign({ name: "WAFExpiredManagedRuleGroupVersionException", $fault: "client" }, opts)) || this;
502
- _this.name = "WAFExpiredManagedRuleGroupVersionException";
503
- _this.$fault = "client";
504
- Object.setPrototypeOf(_this, WAFExpiredManagedRuleGroupVersionException.prototype);
505
- _this.Message = opts.Message;
506
- return _this;
497
+ export class WAFExpiredManagedRuleGroupVersionException extends __BaseException {
498
+ constructor(opts) {
499
+ super({
500
+ name: "WAFExpiredManagedRuleGroupVersionException",
501
+ $fault: "client",
502
+ ...opts,
503
+ });
504
+ this.name = "WAFExpiredManagedRuleGroupVersionException";
505
+ this.$fault = "client";
506
+ Object.setPrototypeOf(this, WAFExpiredManagedRuleGroupVersionException.prototype);
507
+ this.Message = opts.Message;
507
508
  }
508
- return WAFExpiredManagedRuleGroupVersionException;
509
- }(__BaseException));
510
- export { WAFExpiredManagedRuleGroupVersionException };
511
- var WAFInvalidResourceException = (function (_super) {
512
- __extends(WAFInvalidResourceException, _super);
513
- function WAFInvalidResourceException(opts) {
514
- var _this = _super.call(this, __assign({ name: "WAFInvalidResourceException", $fault: "client" }, opts)) || this;
515
- _this.name = "WAFInvalidResourceException";
516
- _this.$fault = "client";
517
- Object.setPrototypeOf(_this, WAFInvalidResourceException.prototype);
518
- _this.Message = opts.Message;
519
- return _this;
509
+ }
510
+ export class WAFInvalidResourceException extends __BaseException {
511
+ constructor(opts) {
512
+ super({
513
+ name: "WAFInvalidResourceException",
514
+ $fault: "client",
515
+ ...opts,
516
+ });
517
+ this.name = "WAFInvalidResourceException";
518
+ this.$fault = "client";
519
+ Object.setPrototypeOf(this, WAFInvalidResourceException.prototype);
520
+ this.Message = opts.Message;
520
521
  }
521
- return WAFInvalidResourceException;
522
- }(__BaseException));
523
- export { WAFInvalidResourceException };
524
- var WAFLimitsExceededException = (function (_super) {
525
- __extends(WAFLimitsExceededException, _super);
526
- function WAFLimitsExceededException(opts) {
527
- var _this = _super.call(this, __assign({ name: "WAFLimitsExceededException", $fault: "client" }, opts)) || this;
528
- _this.name = "WAFLimitsExceededException";
529
- _this.$fault = "client";
530
- Object.setPrototypeOf(_this, WAFLimitsExceededException.prototype);
531
- _this.Message = opts.Message;
532
- return _this;
522
+ }
523
+ export class WAFLimitsExceededException extends __BaseException {
524
+ constructor(opts) {
525
+ super({
526
+ name: "WAFLimitsExceededException",
527
+ $fault: "client",
528
+ ...opts,
529
+ });
530
+ this.name = "WAFLimitsExceededException";
531
+ this.$fault = "client";
532
+ Object.setPrototypeOf(this, WAFLimitsExceededException.prototype);
533
+ this.Message = opts.Message;
533
534
  }
534
- return WAFLimitsExceededException;
535
- }(__BaseException));
536
- export { WAFLimitsExceededException };
537
- var WAFSubscriptionNotFoundException = (function (_super) {
538
- __extends(WAFSubscriptionNotFoundException, _super);
539
- function WAFSubscriptionNotFoundException(opts) {
540
- var _this = _super.call(this, __assign({ name: "WAFSubscriptionNotFoundException", $fault: "client" }, opts)) || this;
541
- _this.name = "WAFSubscriptionNotFoundException";
542
- _this.$fault = "client";
543
- Object.setPrototypeOf(_this, WAFSubscriptionNotFoundException.prototype);
544
- _this.Message = opts.Message;
545
- return _this;
535
+ }
536
+ export class WAFSubscriptionNotFoundException extends __BaseException {
537
+ constructor(opts) {
538
+ super({
539
+ name: "WAFSubscriptionNotFoundException",
540
+ $fault: "client",
541
+ ...opts,
542
+ });
543
+ this.name = "WAFSubscriptionNotFoundException";
544
+ this.$fault = "client";
545
+ Object.setPrototypeOf(this, WAFSubscriptionNotFoundException.prototype);
546
+ this.Message = opts.Message;
546
547
  }
547
- return WAFSubscriptionNotFoundException;
548
- }(__BaseException));
549
- export { WAFSubscriptionNotFoundException };
548
+ }
550
549
  export var IPAddressVersion;
551
550
  (function (IPAddressVersion) {
552
551
  IPAddressVersion["IPV4"] = "IPV4";
553
552
  IPAddressVersion["IPV6"] = "IPV6";
554
553
  })(IPAddressVersion || (IPAddressVersion = {}));
555
- var WAFDuplicateItemException = (function (_super) {
556
- __extends(WAFDuplicateItemException, _super);
557
- function WAFDuplicateItemException(opts) {
558
- var _this = _super.call(this, __assign({ name: "WAFDuplicateItemException", $fault: "client" }, opts)) || this;
559
- _this.name = "WAFDuplicateItemException";
560
- _this.$fault = "client";
561
- Object.setPrototypeOf(_this, WAFDuplicateItemException.prototype);
562
- _this.Message = opts.Message;
563
- return _this;
554
+ export class WAFDuplicateItemException extends __BaseException {
555
+ constructor(opts) {
556
+ super({
557
+ name: "WAFDuplicateItemException",
558
+ $fault: "client",
559
+ ...opts,
560
+ });
561
+ this.name = "WAFDuplicateItemException";
562
+ this.$fault = "client";
563
+ Object.setPrototypeOf(this, WAFDuplicateItemException.prototype);
564
+ this.Message = opts.Message;
564
565
  }
565
- return WAFDuplicateItemException;
566
- }(__BaseException));
567
- export { WAFDuplicateItemException };
568
- var WAFOptimisticLockException = (function (_super) {
569
- __extends(WAFOptimisticLockException, _super);
570
- function WAFOptimisticLockException(opts) {
571
- var _this = _super.call(this, __assign({ name: "WAFOptimisticLockException", $fault: "client" }, opts)) || this;
572
- _this.name = "WAFOptimisticLockException";
573
- _this.$fault = "client";
574
- Object.setPrototypeOf(_this, WAFOptimisticLockException.prototype);
575
- _this.Message = opts.Message;
576
- return _this;
566
+ }
567
+ export class WAFOptimisticLockException extends __BaseException {
568
+ constructor(opts) {
569
+ super({
570
+ name: "WAFOptimisticLockException",
571
+ $fault: "client",
572
+ ...opts,
573
+ });
574
+ this.name = "WAFOptimisticLockException";
575
+ this.$fault = "client";
576
+ Object.setPrototypeOf(this, WAFOptimisticLockException.prototype);
577
+ this.Message = opts.Message;
577
578
  }
578
- return WAFOptimisticLockException;
579
- }(__BaseException));
580
- export { WAFOptimisticLockException };
581
- var WAFTagOperationException = (function (_super) {
582
- __extends(WAFTagOperationException, _super);
583
- function WAFTagOperationException(opts) {
584
- var _this = _super.call(this, __assign({ name: "WAFTagOperationException", $fault: "client" }, opts)) || this;
585
- _this.name = "WAFTagOperationException";
586
- _this.$fault = "client";
587
- Object.setPrototypeOf(_this, WAFTagOperationException.prototype);
588
- _this.Message = opts.Message;
589
- return _this;
579
+ }
580
+ export class WAFTagOperationException extends __BaseException {
581
+ constructor(opts) {
582
+ super({
583
+ name: "WAFTagOperationException",
584
+ $fault: "client",
585
+ ...opts,
586
+ });
587
+ this.name = "WAFTagOperationException";
588
+ this.$fault = "client";
589
+ Object.setPrototypeOf(this, WAFTagOperationException.prototype);
590
+ this.Message = opts.Message;
590
591
  }
591
- return WAFTagOperationException;
592
- }(__BaseException));
593
- export { WAFTagOperationException };
594
- var WAFTagOperationInternalErrorException = (function (_super) {
595
- __extends(WAFTagOperationInternalErrorException, _super);
596
- function WAFTagOperationInternalErrorException(opts) {
597
- var _this = _super.call(this, __assign({ name: "WAFTagOperationInternalErrorException", $fault: "server" }, opts)) || this;
598
- _this.name = "WAFTagOperationInternalErrorException";
599
- _this.$fault = "server";
600
- Object.setPrototypeOf(_this, WAFTagOperationInternalErrorException.prototype);
601
- _this.Message = opts.Message;
602
- return _this;
592
+ }
593
+ export class WAFTagOperationInternalErrorException extends __BaseException {
594
+ constructor(opts) {
595
+ super({
596
+ name: "WAFTagOperationInternalErrorException",
597
+ $fault: "server",
598
+ ...opts,
599
+ });
600
+ this.name = "WAFTagOperationInternalErrorException";
601
+ this.$fault = "server";
602
+ Object.setPrototypeOf(this, WAFTagOperationInternalErrorException.prototype);
603
+ this.Message = opts.Message;
603
604
  }
604
- return WAFTagOperationInternalErrorException;
605
- }(__BaseException));
606
- export { WAFTagOperationInternalErrorException };
605
+ }
607
606
  export var ResponseContentType;
608
607
  (function (ResponseContentType) {
609
608
  ResponseContentType["APPLICATION_JSON"] = "APPLICATION_JSON";
610
609
  ResponseContentType["TEXT_HTML"] = "TEXT_HTML";
611
610
  ResponseContentType["TEXT_PLAIN"] = "TEXT_PLAIN";
612
611
  })(ResponseContentType || (ResponseContentType = {}));
613
- var WAFConfigurationWarningException = (function (_super) {
614
- __extends(WAFConfigurationWarningException, _super);
615
- function WAFConfigurationWarningException(opts) {
616
- var _this = _super.call(this, __assign({ name: "WAFConfigurationWarningException", $fault: "client" }, opts)) || this;
617
- _this.name = "WAFConfigurationWarningException";
618
- _this.$fault = "client";
619
- Object.setPrototypeOf(_this, WAFConfigurationWarningException.prototype);
620
- _this.Message = opts.Message;
621
- return _this;
612
+ export class WAFConfigurationWarningException extends __BaseException {
613
+ constructor(opts) {
614
+ super({
615
+ name: "WAFConfigurationWarningException",
616
+ $fault: "client",
617
+ ...opts,
618
+ });
619
+ this.name = "WAFConfigurationWarningException";
620
+ this.$fault = "client";
621
+ Object.setPrototypeOf(this, WAFConfigurationWarningException.prototype);
622
+ this.Message = opts.Message;
622
623
  }
623
- return WAFConfigurationWarningException;
624
- }(__BaseException));
625
- export { WAFConfigurationWarningException };
626
- var WAFAssociatedItemException = (function (_super) {
627
- __extends(WAFAssociatedItemException, _super);
628
- function WAFAssociatedItemException(opts) {
629
- var _this = _super.call(this, __assign({ name: "WAFAssociatedItemException", $fault: "client" }, opts)) || this;
630
- _this.name = "WAFAssociatedItemException";
631
- _this.$fault = "client";
632
- Object.setPrototypeOf(_this, WAFAssociatedItemException.prototype);
633
- _this.Message = opts.Message;
634
- return _this;
624
+ }
625
+ export class WAFAssociatedItemException extends __BaseException {
626
+ constructor(opts) {
627
+ super({
628
+ name: "WAFAssociatedItemException",
629
+ $fault: "client",
630
+ ...opts,
631
+ });
632
+ this.name = "WAFAssociatedItemException";
633
+ this.$fault = "client";
634
+ Object.setPrototypeOf(this, WAFAssociatedItemException.prototype);
635
+ this.Message = opts.Message;
635
636
  }
636
- return WAFAssociatedItemException;
637
- }(__BaseException));
638
- export { WAFAssociatedItemException };
637
+ }
639
638
  export var Platform;
640
639
  (function (Platform) {
641
640
  Platform["ANDROID"] = "ANDROID";
@@ -663,227 +662,599 @@ export var ResourceType;
663
662
  ResourceType["APPSYNC"] = "APPSYNC";
664
663
  ResourceType["COGNITIO_USER_POOL"] = "COGNITO_USER_POOL";
665
664
  })(ResourceType || (ResourceType = {}));
666
- var WAFLogDestinationPermissionIssueException = (function (_super) {
667
- __extends(WAFLogDestinationPermissionIssueException, _super);
668
- function WAFLogDestinationPermissionIssueException(opts) {
669
- var _this = _super.call(this, __assign({ name: "WAFLogDestinationPermissionIssueException", $fault: "client" }, opts)) || this;
670
- _this.name = "WAFLogDestinationPermissionIssueException";
671
- _this.$fault = "client";
672
- Object.setPrototypeOf(_this, WAFLogDestinationPermissionIssueException.prototype);
673
- _this.Message = opts.Message;
674
- return _this;
665
+ export class WAFLogDestinationPermissionIssueException extends __BaseException {
666
+ constructor(opts) {
667
+ super({
668
+ name: "WAFLogDestinationPermissionIssueException",
669
+ $fault: "client",
670
+ ...opts,
671
+ });
672
+ this.name = "WAFLogDestinationPermissionIssueException";
673
+ this.$fault = "client";
674
+ Object.setPrototypeOf(this, WAFLogDestinationPermissionIssueException.prototype);
675
+ this.Message = opts.Message;
675
676
  }
676
- return WAFLogDestinationPermissionIssueException;
677
- }(__BaseException));
678
- export { WAFLogDestinationPermissionIssueException };
679
- var WAFServiceLinkedRoleErrorException = (function (_super) {
680
- __extends(WAFServiceLinkedRoleErrorException, _super);
681
- function WAFServiceLinkedRoleErrorException(opts) {
682
- var _this = _super.call(this, __assign({ name: "WAFServiceLinkedRoleErrorException", $fault: "client" }, opts)) || this;
683
- _this.name = "WAFServiceLinkedRoleErrorException";
684
- _this.$fault = "client";
685
- Object.setPrototypeOf(_this, WAFServiceLinkedRoleErrorException.prototype);
686
- return _this;
677
+ }
678
+ export class WAFServiceLinkedRoleErrorException extends __BaseException {
679
+ constructor(opts) {
680
+ super({
681
+ name: "WAFServiceLinkedRoleErrorException",
682
+ $fault: "client",
683
+ ...opts,
684
+ });
685
+ this.name = "WAFServiceLinkedRoleErrorException";
686
+ this.$fault = "client";
687
+ Object.setPrototypeOf(this, WAFServiceLinkedRoleErrorException.prototype);
687
688
  }
688
- return WAFServiceLinkedRoleErrorException;
689
- }(__BaseException));
690
- export { WAFServiceLinkedRoleErrorException };
691
- var WAFInvalidPermissionPolicyException = (function (_super) {
692
- __extends(WAFInvalidPermissionPolicyException, _super);
693
- function WAFInvalidPermissionPolicyException(opts) {
694
- var _this = _super.call(this, __assign({ name: "WAFInvalidPermissionPolicyException", $fault: "client" }, opts)) || this;
695
- _this.name = "WAFInvalidPermissionPolicyException";
696
- _this.$fault = "client";
697
- Object.setPrototypeOf(_this, WAFInvalidPermissionPolicyException.prototype);
698
- _this.Message = opts.Message;
699
- return _this;
689
+ }
690
+ export class WAFInvalidPermissionPolicyException extends __BaseException {
691
+ constructor(opts) {
692
+ super({
693
+ name: "WAFInvalidPermissionPolicyException",
694
+ $fault: "client",
695
+ ...opts,
696
+ });
697
+ this.name = "WAFInvalidPermissionPolicyException";
698
+ this.$fault = "client";
699
+ Object.setPrototypeOf(this, WAFInvalidPermissionPolicyException.prototype);
700
+ this.Message = opts.Message;
700
701
  }
701
- return WAFInvalidPermissionPolicyException;
702
- }(__BaseException));
703
- export { WAFInvalidPermissionPolicyException };
704
- export var ActionConditionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
705
- export var AllFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
706
- export var CustomHTTPHeaderFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
707
- export var CustomRequestHandlingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
708
- export var AllowActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
709
- export var AllQueryArgumentsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
710
- export var BodyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
711
- export var CookieMatchPatternFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
712
- export var CookiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
713
- export var HeaderMatchPatternFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
714
- export var HeadersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
715
- export var JsonMatchPatternFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
716
- export var JsonBodyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
717
- export var MethodFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
718
- export var QueryStringFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
719
- export var SingleHeaderFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
720
- export var SingleQueryArgumentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
721
- export var UriPathFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
722
- export var FieldToMatchFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
723
- export var TextTransformationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
724
- export var ByteMatchStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
725
- export var ForwardedIPConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
726
- export var GeoMatchStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
727
- export var IPSetForwardedIPConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
728
- export var IPSetReferenceStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
729
- export var LabelMatchStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
730
- export var ExcludedRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
731
- export var PasswordFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
732
- export var UsernameFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
733
- export var ManagedRuleGroupConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
734
- export var RegexMatchStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
735
- export var RegexPatternSetReferenceStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
736
- export var RuleGroupReferenceStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
737
- export var SizeConstraintStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
738
- export var SqliMatchStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
739
- export var XssMatchStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
740
- export var AssociateWebACLRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
741
- export var AssociateWebACLResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
742
- export var CustomResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
743
- export var BlockActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
744
- export var CaptchaActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
745
- export var CountActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
746
- export var RuleActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
747
- export var ImmunityTimePropertyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
748
- export var CaptchaConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
749
- export var NoneActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
750
- export var OverrideActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
751
- export var LabelFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
752
- export var VisibilityConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
753
- export var CheckCapacityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
754
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
755
- export var CreateIPSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
756
- export var IPSetSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
757
- export var CreateIPSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
758
- export var RegexFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
759
- export var CreateRegexPatternSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
760
- export var RegexPatternSetSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
761
- export var CreateRegexPatternSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
762
- export var CustomResponseBodyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
763
- export var RuleGroupSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
764
- export var CreateRuleGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
765
- export var DefaultActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
766
- export var WebACLSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
767
- export var CreateWebACLResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
768
- export var DeleteFirewallManagerRuleGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
769
- export var DeleteFirewallManagerRuleGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
770
- export var DeleteIPSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
771
- export var DeleteIPSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
772
- export var DeleteLoggingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
773
- export var DeleteLoggingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
774
- export var DeletePermissionPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
775
- export var DeletePermissionPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
776
- export var DeleteRegexPatternSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
777
- export var DeleteRegexPatternSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
778
- export var DeleteRuleGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
779
- export var DeleteRuleGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
780
- export var DeleteWebACLRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
781
- export var DeleteWebACLResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
782
- export var DescribeManagedRuleGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
783
- export var LabelSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
784
- export var RuleSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
785
- export var DescribeManagedRuleGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
786
- export var DisassociateWebACLRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
787
- export var DisassociateWebACLResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
788
- export var GenerateMobileSdkReleaseUrlRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
789
- export var GenerateMobileSdkReleaseUrlResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
790
- export var GetIPSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
791
- export var IPSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
792
- export var GetIPSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
793
- export var GetLoggingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
794
- export var LabelNameConditionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
795
- export var ConditionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
796
- export var FilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
797
- export var LoggingFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
798
- export var LoggingConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
799
- export var GetLoggingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
800
- export var GetManagedRuleSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
801
- export var ManagedRuleSetVersionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
802
- export var ManagedRuleSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
803
- export var GetManagedRuleSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
804
- export var GetMobileSdkReleaseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
805
- export var MobileSdkReleaseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
806
- export var GetMobileSdkReleaseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
807
- export var GetPermissionPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
808
- export var GetPermissionPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
809
- export var GetRateBasedStatementManagedKeysRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
810
- export var RateBasedStatementManagedKeysIPSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
811
- export var GetRateBasedStatementManagedKeysResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
812
- export var GetRegexPatternSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
813
- export var RegexPatternSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
814
- export var GetRegexPatternSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
815
- export var GetRuleGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
816
- export var TimeWindowFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
817
- export var GetSampledRequestsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
818
- export var CaptchaResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
819
- export var HTTPHeaderFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
820
- export var HTTPRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
821
- export var SampledHTTPRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
822
- export var GetSampledRequestsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
823
- export var GetWebACLRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
824
- export var GetWebACLForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
825
- export var ListAvailableManagedRuleGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
826
- export var ManagedRuleGroupSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
827
- export var ListAvailableManagedRuleGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
828
- export var ListAvailableManagedRuleGroupVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
829
- export var ManagedRuleGroupVersionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
830
- export var ListAvailableManagedRuleGroupVersionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
831
- export var ListIPSetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
832
- export var ListIPSetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
833
- export var ListLoggingConfigurationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
834
- export var ListLoggingConfigurationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
835
- export var ListManagedRuleSetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
836
- export var ManagedRuleSetSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
837
- export var ListManagedRuleSetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
838
- export var ListMobileSdkReleasesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
839
- export var ReleaseSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
840
- export var ListMobileSdkReleasesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
841
- export var ListRegexPatternSetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
842
- export var ListRegexPatternSetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
843
- export var ListResourcesForWebACLRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
844
- export var ListResourcesForWebACLResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
845
- export var ListRuleGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
846
- export var ListRuleGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
847
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
848
- export var TagInfoForResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
849
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
850
- export var ListWebACLsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
851
- export var ListWebACLsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
852
- export var PutLoggingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
853
- export var PutLoggingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
854
- export var VersionToPublishFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
855
- export var PutManagedRuleSetVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
856
- export var PutManagedRuleSetVersionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
857
- export var PutPermissionPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
858
- export var PutPermissionPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
859
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
860
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
861
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
862
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
863
- export var UpdateIPSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
864
- export var UpdateIPSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
865
- export var UpdateManagedRuleSetVersionExpiryDateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
866
- export var UpdateManagedRuleSetVersionExpiryDateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
867
- export var UpdateRegexPatternSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
868
- export var UpdateRegexPatternSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
869
- export var UpdateRuleGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
870
- export var UpdateWebACLResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
871
- export var StatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
872
- export var ManagedRuleGroupStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
873
- export var NotStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
874
- export var RateBasedStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
875
- export var RuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
876
- export var AndStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
877
- export var OrStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
878
- export var FirewallManagerStatementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
879
- export var FirewallManagerRuleGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
880
- export var CheckCapacityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
881
- export var CreateRuleGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
882
- export var CreateWebACLRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
883
- export var RuleGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
884
- export var UpdateRuleGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
885
- export var UpdateWebACLRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
886
- export var GetRuleGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
887
- export var WebACLFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
888
- export var GetWebACLForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
889
- export var GetWebACLResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
702
+ }
703
+ export const ActionConditionFilterSensitiveLog = (obj) => ({
704
+ ...obj,
705
+ });
706
+ export const AllFilterSensitiveLog = (obj) => ({
707
+ ...obj,
708
+ });
709
+ export const CustomHTTPHeaderFilterSensitiveLog = (obj) => ({
710
+ ...obj,
711
+ });
712
+ export const CustomRequestHandlingFilterSensitiveLog = (obj) => ({
713
+ ...obj,
714
+ });
715
+ export const AllowActionFilterSensitiveLog = (obj) => ({
716
+ ...obj,
717
+ });
718
+ export const AllQueryArgumentsFilterSensitiveLog = (obj) => ({
719
+ ...obj,
720
+ });
721
+ export const BodyFilterSensitiveLog = (obj) => ({
722
+ ...obj,
723
+ });
724
+ export const CookieMatchPatternFilterSensitiveLog = (obj) => ({
725
+ ...obj,
726
+ });
727
+ export const CookiesFilterSensitiveLog = (obj) => ({
728
+ ...obj,
729
+ });
730
+ export const HeaderMatchPatternFilterSensitiveLog = (obj) => ({
731
+ ...obj,
732
+ });
733
+ export const HeadersFilterSensitiveLog = (obj) => ({
734
+ ...obj,
735
+ });
736
+ export const JsonMatchPatternFilterSensitiveLog = (obj) => ({
737
+ ...obj,
738
+ });
739
+ export const JsonBodyFilterSensitiveLog = (obj) => ({
740
+ ...obj,
741
+ });
742
+ export const MethodFilterSensitiveLog = (obj) => ({
743
+ ...obj,
744
+ });
745
+ export const QueryStringFilterSensitiveLog = (obj) => ({
746
+ ...obj,
747
+ });
748
+ export const SingleHeaderFilterSensitiveLog = (obj) => ({
749
+ ...obj,
750
+ });
751
+ export const SingleQueryArgumentFilterSensitiveLog = (obj) => ({
752
+ ...obj,
753
+ });
754
+ export const UriPathFilterSensitiveLog = (obj) => ({
755
+ ...obj,
756
+ });
757
+ export const FieldToMatchFilterSensitiveLog = (obj) => ({
758
+ ...obj,
759
+ });
760
+ export const TextTransformationFilterSensitiveLog = (obj) => ({
761
+ ...obj,
762
+ });
763
+ export const ByteMatchStatementFilterSensitiveLog = (obj) => ({
764
+ ...obj,
765
+ });
766
+ export const ForwardedIPConfigFilterSensitiveLog = (obj) => ({
767
+ ...obj,
768
+ });
769
+ export const GeoMatchStatementFilterSensitiveLog = (obj) => ({
770
+ ...obj,
771
+ });
772
+ export const IPSetForwardedIPConfigFilterSensitiveLog = (obj) => ({
773
+ ...obj,
774
+ });
775
+ export const IPSetReferenceStatementFilterSensitiveLog = (obj) => ({
776
+ ...obj,
777
+ });
778
+ export const LabelMatchStatementFilterSensitiveLog = (obj) => ({
779
+ ...obj,
780
+ });
781
+ export const ExcludedRuleFilterSensitiveLog = (obj) => ({
782
+ ...obj,
783
+ });
784
+ export const PasswordFieldFilterSensitiveLog = (obj) => ({
785
+ ...obj,
786
+ });
787
+ export const UsernameFieldFilterSensitiveLog = (obj) => ({
788
+ ...obj,
789
+ });
790
+ export const ManagedRuleGroupConfigFilterSensitiveLog = (obj) => ({
791
+ ...obj,
792
+ });
793
+ export const RegexMatchStatementFilterSensitiveLog = (obj) => ({
794
+ ...obj,
795
+ });
796
+ export const RegexPatternSetReferenceStatementFilterSensitiveLog = (obj) => ({
797
+ ...obj,
798
+ });
799
+ export const RuleGroupReferenceStatementFilterSensitiveLog = (obj) => ({
800
+ ...obj,
801
+ });
802
+ export const SizeConstraintStatementFilterSensitiveLog = (obj) => ({
803
+ ...obj,
804
+ });
805
+ export const SqliMatchStatementFilterSensitiveLog = (obj) => ({
806
+ ...obj,
807
+ });
808
+ export const XssMatchStatementFilterSensitiveLog = (obj) => ({
809
+ ...obj,
810
+ });
811
+ export const AssociateWebACLRequestFilterSensitiveLog = (obj) => ({
812
+ ...obj,
813
+ });
814
+ export const AssociateWebACLResponseFilterSensitiveLog = (obj) => ({
815
+ ...obj,
816
+ });
817
+ export const CustomResponseFilterSensitiveLog = (obj) => ({
818
+ ...obj,
819
+ });
820
+ export const BlockActionFilterSensitiveLog = (obj) => ({
821
+ ...obj,
822
+ });
823
+ export const CaptchaActionFilterSensitiveLog = (obj) => ({
824
+ ...obj,
825
+ });
826
+ export const CountActionFilterSensitiveLog = (obj) => ({
827
+ ...obj,
828
+ });
829
+ export const RuleActionFilterSensitiveLog = (obj) => ({
830
+ ...obj,
831
+ });
832
+ export const ImmunityTimePropertyFilterSensitiveLog = (obj) => ({
833
+ ...obj,
834
+ });
835
+ export const CaptchaConfigFilterSensitiveLog = (obj) => ({
836
+ ...obj,
837
+ });
838
+ export const NoneActionFilterSensitiveLog = (obj) => ({
839
+ ...obj,
840
+ });
841
+ export const OverrideActionFilterSensitiveLog = (obj) => ({
842
+ ...obj,
843
+ });
844
+ export const LabelFilterSensitiveLog = (obj) => ({
845
+ ...obj,
846
+ });
847
+ export const VisibilityConfigFilterSensitiveLog = (obj) => ({
848
+ ...obj,
849
+ });
850
+ export const CheckCapacityResponseFilterSensitiveLog = (obj) => ({
851
+ ...obj,
852
+ });
853
+ export const TagFilterSensitiveLog = (obj) => ({
854
+ ...obj,
855
+ });
856
+ export const CreateIPSetRequestFilterSensitiveLog = (obj) => ({
857
+ ...obj,
858
+ });
859
+ export const IPSetSummaryFilterSensitiveLog = (obj) => ({
860
+ ...obj,
861
+ });
862
+ export const CreateIPSetResponseFilterSensitiveLog = (obj) => ({
863
+ ...obj,
864
+ });
865
+ export const RegexFilterSensitiveLog = (obj) => ({
866
+ ...obj,
867
+ });
868
+ export const CreateRegexPatternSetRequestFilterSensitiveLog = (obj) => ({
869
+ ...obj,
870
+ });
871
+ export const RegexPatternSetSummaryFilterSensitiveLog = (obj) => ({
872
+ ...obj,
873
+ });
874
+ export const CreateRegexPatternSetResponseFilterSensitiveLog = (obj) => ({
875
+ ...obj,
876
+ });
877
+ export const CustomResponseBodyFilterSensitiveLog = (obj) => ({
878
+ ...obj,
879
+ });
880
+ export const RuleGroupSummaryFilterSensitiveLog = (obj) => ({
881
+ ...obj,
882
+ });
883
+ export const CreateRuleGroupResponseFilterSensitiveLog = (obj) => ({
884
+ ...obj,
885
+ });
886
+ export const DefaultActionFilterSensitiveLog = (obj) => ({
887
+ ...obj,
888
+ });
889
+ export const WebACLSummaryFilterSensitiveLog = (obj) => ({
890
+ ...obj,
891
+ });
892
+ export const CreateWebACLResponseFilterSensitiveLog = (obj) => ({
893
+ ...obj,
894
+ });
895
+ export const DeleteFirewallManagerRuleGroupsRequestFilterSensitiveLog = (obj) => ({
896
+ ...obj,
897
+ });
898
+ export const DeleteFirewallManagerRuleGroupsResponseFilterSensitiveLog = (obj) => ({
899
+ ...obj,
900
+ });
901
+ export const DeleteIPSetRequestFilterSensitiveLog = (obj) => ({
902
+ ...obj,
903
+ });
904
+ export const DeleteIPSetResponseFilterSensitiveLog = (obj) => ({
905
+ ...obj,
906
+ });
907
+ export const DeleteLoggingConfigurationRequestFilterSensitiveLog = (obj) => ({
908
+ ...obj,
909
+ });
910
+ export const DeleteLoggingConfigurationResponseFilterSensitiveLog = (obj) => ({
911
+ ...obj,
912
+ });
913
+ export const DeletePermissionPolicyRequestFilterSensitiveLog = (obj) => ({
914
+ ...obj,
915
+ });
916
+ export const DeletePermissionPolicyResponseFilterSensitiveLog = (obj) => ({
917
+ ...obj,
918
+ });
919
+ export const DeleteRegexPatternSetRequestFilterSensitiveLog = (obj) => ({
920
+ ...obj,
921
+ });
922
+ export const DeleteRegexPatternSetResponseFilterSensitiveLog = (obj) => ({
923
+ ...obj,
924
+ });
925
+ export const DeleteRuleGroupRequestFilterSensitiveLog = (obj) => ({
926
+ ...obj,
927
+ });
928
+ export const DeleteRuleGroupResponseFilterSensitiveLog = (obj) => ({
929
+ ...obj,
930
+ });
931
+ export const DeleteWebACLRequestFilterSensitiveLog = (obj) => ({
932
+ ...obj,
933
+ });
934
+ export const DeleteWebACLResponseFilterSensitiveLog = (obj) => ({
935
+ ...obj,
936
+ });
937
+ export const DescribeManagedRuleGroupRequestFilterSensitiveLog = (obj) => ({
938
+ ...obj,
939
+ });
940
+ export const LabelSummaryFilterSensitiveLog = (obj) => ({
941
+ ...obj,
942
+ });
943
+ export const RuleSummaryFilterSensitiveLog = (obj) => ({
944
+ ...obj,
945
+ });
946
+ export const DescribeManagedRuleGroupResponseFilterSensitiveLog = (obj) => ({
947
+ ...obj,
948
+ });
949
+ export const DisassociateWebACLRequestFilterSensitiveLog = (obj) => ({
950
+ ...obj,
951
+ });
952
+ export const DisassociateWebACLResponseFilterSensitiveLog = (obj) => ({
953
+ ...obj,
954
+ });
955
+ export const GenerateMobileSdkReleaseUrlRequestFilterSensitiveLog = (obj) => ({
956
+ ...obj,
957
+ });
958
+ export const GenerateMobileSdkReleaseUrlResponseFilterSensitiveLog = (obj) => ({
959
+ ...obj,
960
+ });
961
+ export const GetIPSetRequestFilterSensitiveLog = (obj) => ({
962
+ ...obj,
963
+ });
964
+ export const IPSetFilterSensitiveLog = (obj) => ({
965
+ ...obj,
966
+ });
967
+ export const GetIPSetResponseFilterSensitiveLog = (obj) => ({
968
+ ...obj,
969
+ });
970
+ export const GetLoggingConfigurationRequestFilterSensitiveLog = (obj) => ({
971
+ ...obj,
972
+ });
973
+ export const LabelNameConditionFilterSensitiveLog = (obj) => ({
974
+ ...obj,
975
+ });
976
+ export const ConditionFilterSensitiveLog = (obj) => ({
977
+ ...obj,
978
+ });
979
+ export const FilterFilterSensitiveLog = (obj) => ({
980
+ ...obj,
981
+ });
982
+ export const LoggingFilterFilterSensitiveLog = (obj) => ({
983
+ ...obj,
984
+ });
985
+ export const LoggingConfigurationFilterSensitiveLog = (obj) => ({
986
+ ...obj,
987
+ });
988
+ export const GetLoggingConfigurationResponseFilterSensitiveLog = (obj) => ({
989
+ ...obj,
990
+ });
991
+ export const GetManagedRuleSetRequestFilterSensitiveLog = (obj) => ({
992
+ ...obj,
993
+ });
994
+ export const ManagedRuleSetVersionFilterSensitiveLog = (obj) => ({
995
+ ...obj,
996
+ });
997
+ export const ManagedRuleSetFilterSensitiveLog = (obj) => ({
998
+ ...obj,
999
+ });
1000
+ export const GetManagedRuleSetResponseFilterSensitiveLog = (obj) => ({
1001
+ ...obj,
1002
+ });
1003
+ export const GetMobileSdkReleaseRequestFilterSensitiveLog = (obj) => ({
1004
+ ...obj,
1005
+ });
1006
+ export const MobileSdkReleaseFilterSensitiveLog = (obj) => ({
1007
+ ...obj,
1008
+ });
1009
+ export const GetMobileSdkReleaseResponseFilterSensitiveLog = (obj) => ({
1010
+ ...obj,
1011
+ });
1012
+ export const GetPermissionPolicyRequestFilterSensitiveLog = (obj) => ({
1013
+ ...obj,
1014
+ });
1015
+ export const GetPermissionPolicyResponseFilterSensitiveLog = (obj) => ({
1016
+ ...obj,
1017
+ });
1018
+ export const GetRateBasedStatementManagedKeysRequestFilterSensitiveLog = (obj) => ({
1019
+ ...obj,
1020
+ });
1021
+ export const RateBasedStatementManagedKeysIPSetFilterSensitiveLog = (obj) => ({
1022
+ ...obj,
1023
+ });
1024
+ export const GetRateBasedStatementManagedKeysResponseFilterSensitiveLog = (obj) => ({
1025
+ ...obj,
1026
+ });
1027
+ export const GetRegexPatternSetRequestFilterSensitiveLog = (obj) => ({
1028
+ ...obj,
1029
+ });
1030
+ export const RegexPatternSetFilterSensitiveLog = (obj) => ({
1031
+ ...obj,
1032
+ });
1033
+ export const GetRegexPatternSetResponseFilterSensitiveLog = (obj) => ({
1034
+ ...obj,
1035
+ });
1036
+ export const GetRuleGroupRequestFilterSensitiveLog = (obj) => ({
1037
+ ...obj,
1038
+ });
1039
+ export const TimeWindowFilterSensitiveLog = (obj) => ({
1040
+ ...obj,
1041
+ });
1042
+ export const GetSampledRequestsRequestFilterSensitiveLog = (obj) => ({
1043
+ ...obj,
1044
+ });
1045
+ export const CaptchaResponseFilterSensitiveLog = (obj) => ({
1046
+ ...obj,
1047
+ });
1048
+ export const HTTPHeaderFilterSensitiveLog = (obj) => ({
1049
+ ...obj,
1050
+ });
1051
+ export const HTTPRequestFilterSensitiveLog = (obj) => ({
1052
+ ...obj,
1053
+ });
1054
+ export const SampledHTTPRequestFilterSensitiveLog = (obj) => ({
1055
+ ...obj,
1056
+ });
1057
+ export const GetSampledRequestsResponseFilterSensitiveLog = (obj) => ({
1058
+ ...obj,
1059
+ });
1060
+ export const GetWebACLRequestFilterSensitiveLog = (obj) => ({
1061
+ ...obj,
1062
+ });
1063
+ export const GetWebACLForResourceRequestFilterSensitiveLog = (obj) => ({
1064
+ ...obj,
1065
+ });
1066
+ export const ListAvailableManagedRuleGroupsRequestFilterSensitiveLog = (obj) => ({
1067
+ ...obj,
1068
+ });
1069
+ export const ManagedRuleGroupSummaryFilterSensitiveLog = (obj) => ({
1070
+ ...obj,
1071
+ });
1072
+ export const ListAvailableManagedRuleGroupsResponseFilterSensitiveLog = (obj) => ({
1073
+ ...obj,
1074
+ });
1075
+ export const ListAvailableManagedRuleGroupVersionsRequestFilterSensitiveLog = (obj) => ({
1076
+ ...obj,
1077
+ });
1078
+ export const ManagedRuleGroupVersionFilterSensitiveLog = (obj) => ({
1079
+ ...obj,
1080
+ });
1081
+ export const ListAvailableManagedRuleGroupVersionsResponseFilterSensitiveLog = (obj) => ({
1082
+ ...obj,
1083
+ });
1084
+ export const ListIPSetsRequestFilterSensitiveLog = (obj) => ({
1085
+ ...obj,
1086
+ });
1087
+ export const ListIPSetsResponseFilterSensitiveLog = (obj) => ({
1088
+ ...obj,
1089
+ });
1090
+ export const ListLoggingConfigurationsRequestFilterSensitiveLog = (obj) => ({
1091
+ ...obj,
1092
+ });
1093
+ export const ListLoggingConfigurationsResponseFilterSensitiveLog = (obj) => ({
1094
+ ...obj,
1095
+ });
1096
+ export const ListManagedRuleSetsRequestFilterSensitiveLog = (obj) => ({
1097
+ ...obj,
1098
+ });
1099
+ export const ManagedRuleSetSummaryFilterSensitiveLog = (obj) => ({
1100
+ ...obj,
1101
+ });
1102
+ export const ListManagedRuleSetsResponseFilterSensitiveLog = (obj) => ({
1103
+ ...obj,
1104
+ });
1105
+ export const ListMobileSdkReleasesRequestFilterSensitiveLog = (obj) => ({
1106
+ ...obj,
1107
+ });
1108
+ export const ReleaseSummaryFilterSensitiveLog = (obj) => ({
1109
+ ...obj,
1110
+ });
1111
+ export const ListMobileSdkReleasesResponseFilterSensitiveLog = (obj) => ({
1112
+ ...obj,
1113
+ });
1114
+ export const ListRegexPatternSetsRequestFilterSensitiveLog = (obj) => ({
1115
+ ...obj,
1116
+ });
1117
+ export const ListRegexPatternSetsResponseFilterSensitiveLog = (obj) => ({
1118
+ ...obj,
1119
+ });
1120
+ export const ListResourcesForWebACLRequestFilterSensitiveLog = (obj) => ({
1121
+ ...obj,
1122
+ });
1123
+ export const ListResourcesForWebACLResponseFilterSensitiveLog = (obj) => ({
1124
+ ...obj,
1125
+ });
1126
+ export const ListRuleGroupsRequestFilterSensitiveLog = (obj) => ({
1127
+ ...obj,
1128
+ });
1129
+ export const ListRuleGroupsResponseFilterSensitiveLog = (obj) => ({
1130
+ ...obj,
1131
+ });
1132
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
1133
+ ...obj,
1134
+ });
1135
+ export const TagInfoForResourceFilterSensitiveLog = (obj) => ({
1136
+ ...obj,
1137
+ });
1138
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
1139
+ ...obj,
1140
+ });
1141
+ export const ListWebACLsRequestFilterSensitiveLog = (obj) => ({
1142
+ ...obj,
1143
+ });
1144
+ export const ListWebACLsResponseFilterSensitiveLog = (obj) => ({
1145
+ ...obj,
1146
+ });
1147
+ export const PutLoggingConfigurationRequestFilterSensitiveLog = (obj) => ({
1148
+ ...obj,
1149
+ });
1150
+ export const PutLoggingConfigurationResponseFilterSensitiveLog = (obj) => ({
1151
+ ...obj,
1152
+ });
1153
+ export const VersionToPublishFilterSensitiveLog = (obj) => ({
1154
+ ...obj,
1155
+ });
1156
+ export const PutManagedRuleSetVersionsRequestFilterSensitiveLog = (obj) => ({
1157
+ ...obj,
1158
+ });
1159
+ export const PutManagedRuleSetVersionsResponseFilterSensitiveLog = (obj) => ({
1160
+ ...obj,
1161
+ });
1162
+ export const PutPermissionPolicyRequestFilterSensitiveLog = (obj) => ({
1163
+ ...obj,
1164
+ });
1165
+ export const PutPermissionPolicyResponseFilterSensitiveLog = (obj) => ({
1166
+ ...obj,
1167
+ });
1168
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
1169
+ ...obj,
1170
+ });
1171
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
1172
+ ...obj,
1173
+ });
1174
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
1175
+ ...obj,
1176
+ });
1177
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
1178
+ ...obj,
1179
+ });
1180
+ export const UpdateIPSetRequestFilterSensitiveLog = (obj) => ({
1181
+ ...obj,
1182
+ });
1183
+ export const UpdateIPSetResponseFilterSensitiveLog = (obj) => ({
1184
+ ...obj,
1185
+ });
1186
+ export const UpdateManagedRuleSetVersionExpiryDateRequestFilterSensitiveLog = (obj) => ({
1187
+ ...obj,
1188
+ });
1189
+ export const UpdateManagedRuleSetVersionExpiryDateResponseFilterSensitiveLog = (obj) => ({
1190
+ ...obj,
1191
+ });
1192
+ export const UpdateRegexPatternSetRequestFilterSensitiveLog = (obj) => ({
1193
+ ...obj,
1194
+ });
1195
+ export const UpdateRegexPatternSetResponseFilterSensitiveLog = (obj) => ({
1196
+ ...obj,
1197
+ });
1198
+ export const UpdateRuleGroupResponseFilterSensitiveLog = (obj) => ({
1199
+ ...obj,
1200
+ });
1201
+ export const UpdateWebACLResponseFilterSensitiveLog = (obj) => ({
1202
+ ...obj,
1203
+ });
1204
+ export const StatementFilterSensitiveLog = (obj) => ({
1205
+ ...obj,
1206
+ });
1207
+ export const ManagedRuleGroupStatementFilterSensitiveLog = (obj) => ({
1208
+ ...obj,
1209
+ });
1210
+ export const NotStatementFilterSensitiveLog = (obj) => ({
1211
+ ...obj,
1212
+ });
1213
+ export const RateBasedStatementFilterSensitiveLog = (obj) => ({
1214
+ ...obj,
1215
+ });
1216
+ export const RuleFilterSensitiveLog = (obj) => ({
1217
+ ...obj,
1218
+ });
1219
+ export const AndStatementFilterSensitiveLog = (obj) => ({
1220
+ ...obj,
1221
+ });
1222
+ export const OrStatementFilterSensitiveLog = (obj) => ({
1223
+ ...obj,
1224
+ });
1225
+ export const FirewallManagerStatementFilterSensitiveLog = (obj) => ({
1226
+ ...obj,
1227
+ });
1228
+ export const FirewallManagerRuleGroupFilterSensitiveLog = (obj) => ({
1229
+ ...obj,
1230
+ });
1231
+ export const CheckCapacityRequestFilterSensitiveLog = (obj) => ({
1232
+ ...obj,
1233
+ });
1234
+ export const CreateRuleGroupRequestFilterSensitiveLog = (obj) => ({
1235
+ ...obj,
1236
+ });
1237
+ export const CreateWebACLRequestFilterSensitiveLog = (obj) => ({
1238
+ ...obj,
1239
+ });
1240
+ export const RuleGroupFilterSensitiveLog = (obj) => ({
1241
+ ...obj,
1242
+ });
1243
+ export const UpdateRuleGroupRequestFilterSensitiveLog = (obj) => ({
1244
+ ...obj,
1245
+ });
1246
+ export const UpdateWebACLRequestFilterSensitiveLog = (obj) => ({
1247
+ ...obj,
1248
+ });
1249
+ export const GetRuleGroupResponseFilterSensitiveLog = (obj) => ({
1250
+ ...obj,
1251
+ });
1252
+ export const WebACLFilterSensitiveLog = (obj) => ({
1253
+ ...obj,
1254
+ });
1255
+ export const GetWebACLForResourceResponseFilterSensitiveLog = (obj) => ({
1256
+ ...obj,
1257
+ });
1258
+ export const GetWebACLResponseFilterSensitiveLog = (obj) => ({
1259
+ ...obj,
1260
+ });