@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.
- package/CHANGELOG.md +8 -0
- package/dist-es/WAFV2.js +194 -201
- package/dist-es/WAFV2Client.js +22 -28
- package/dist-es/commands/AssociateWebACLCommand.js +21 -28
- package/dist-es/commands/CheckCapacityCommand.js +21 -28
- package/dist-es/commands/CreateIPSetCommand.js +21 -28
- package/dist-es/commands/CreateRegexPatternSetCommand.js +21 -28
- package/dist-es/commands/CreateRuleGroupCommand.js +21 -28
- package/dist-es/commands/CreateWebACLCommand.js +21 -28
- package/dist-es/commands/DeleteFirewallManagerRuleGroupsCommand.js +21 -28
- package/dist-es/commands/DeleteIPSetCommand.js +21 -28
- package/dist-es/commands/DeleteLoggingConfigurationCommand.js +21 -28
- package/dist-es/commands/DeletePermissionPolicyCommand.js +21 -28
- package/dist-es/commands/DeleteRegexPatternSetCommand.js +21 -28
- package/dist-es/commands/DeleteRuleGroupCommand.js +21 -28
- package/dist-es/commands/DeleteWebACLCommand.js +21 -28
- package/dist-es/commands/DescribeManagedRuleGroupCommand.js +21 -28
- package/dist-es/commands/DisassociateWebACLCommand.js +21 -28
- package/dist-es/commands/GenerateMobileSdkReleaseUrlCommand.js +21 -28
- package/dist-es/commands/GetIPSetCommand.js +21 -28
- package/dist-es/commands/GetLoggingConfigurationCommand.js +21 -28
- package/dist-es/commands/GetManagedRuleSetCommand.js +21 -28
- package/dist-es/commands/GetMobileSdkReleaseCommand.js +21 -28
- package/dist-es/commands/GetPermissionPolicyCommand.js +21 -28
- package/dist-es/commands/GetRateBasedStatementManagedKeysCommand.js +21 -28
- package/dist-es/commands/GetRegexPatternSetCommand.js +21 -28
- package/dist-es/commands/GetRuleGroupCommand.js +21 -28
- package/dist-es/commands/GetSampledRequestsCommand.js +21 -28
- package/dist-es/commands/GetWebACLCommand.js +21 -28
- package/dist-es/commands/GetWebACLForResourceCommand.js +21 -28
- package/dist-es/commands/ListAvailableManagedRuleGroupVersionsCommand.js +21 -28
- package/dist-es/commands/ListAvailableManagedRuleGroupsCommand.js +21 -28
- package/dist-es/commands/ListIPSetsCommand.js +21 -28
- package/dist-es/commands/ListLoggingConfigurationsCommand.js +21 -28
- package/dist-es/commands/ListManagedRuleSetsCommand.js +21 -28
- package/dist-es/commands/ListMobileSdkReleasesCommand.js +21 -28
- package/dist-es/commands/ListRegexPatternSetsCommand.js +21 -28
- package/dist-es/commands/ListResourcesForWebACLCommand.js +21 -28
- package/dist-es/commands/ListRuleGroupsCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListWebACLsCommand.js +21 -28
- package/dist-es/commands/PutLoggingConfigurationCommand.js +21 -28
- package/dist-es/commands/PutManagedRuleSetVersionsCommand.js +21 -28
- package/dist-es/commands/PutPermissionPolicyCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateIPSetCommand.js +21 -28
- package/dist-es/commands/UpdateManagedRuleSetVersionExpiryDateCommand.js +21 -28
- package/dist-es/commands/UpdateRegexPatternSetCommand.js +21 -28
- package/dist-es/commands/UpdateRuleGroupCommand.js +21 -28
- package/dist-es/commands/UpdateWebACLCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/WAFV2ServiceException.js +5 -10
- package/dist-es/models/models_0.js +775 -404
- package/dist-es/protocols/Aws_json1_1.js +4048 -4810
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- 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
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
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
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
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
|
-
|
|
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
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
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
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
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
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
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
|
-
|
|
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
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
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
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
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
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
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
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
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
|
-
|
|
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
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
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
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
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
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
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
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
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
|
-
|
|
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
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
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
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
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
|
-
|
|
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
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
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
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
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
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
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
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
export
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
export
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
export
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
export
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
export
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
export
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
export
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
export
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
export
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
export
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
export
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
export
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
export
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
export
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
export
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
export
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
export
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
export
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
export
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
export
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
export
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
export
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
export
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
export
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
export
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
export
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
export
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
export
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
export
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
export
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
export
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
export
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
export
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
export
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
export
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
export
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
export
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
export
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
export
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
export
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
export
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
export
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
export
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
export
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
export
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
export
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
export
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
export
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
export
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
export
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
export
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
export
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
export
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
export
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
export
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
export
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
export
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
export
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
export
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
export
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
export
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
export
|
|
889
|
-
|
|
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
|
+
});
|