@aws-sdk/client-waf 3.686.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +185 -185
- package/dist-types/ts3.4/models/models_0.d.ts +185 -185
- package/package.json +7 -7
|
@@ -30,10 +30,10 @@ export type WafRuleType = (typeof WafRuleType)[keyof typeof WafRuleType];
|
|
|
30
30
|
export interface ActivatedRule {
|
|
31
31
|
Priority: number | undefined;
|
|
32
32
|
RuleId: string | undefined;
|
|
33
|
-
Action?: WafAction;
|
|
34
|
-
OverrideAction?: WafOverrideAction;
|
|
35
|
-
Type?: WafRuleType;
|
|
36
|
-
ExcludedRules?: ExcludedRule[];
|
|
33
|
+
Action?: WafAction | undefined;
|
|
34
|
+
OverrideAction?: WafOverrideAction | undefined;
|
|
35
|
+
Type?: WafRuleType | undefined;
|
|
36
|
+
ExcludedRules?: ExcludedRule[] | undefined;
|
|
37
37
|
}
|
|
38
38
|
export interface CreateByteMatchSetRequest {
|
|
39
39
|
Name: string | undefined;
|
|
@@ -52,7 +52,7 @@ export type MatchFieldType =
|
|
|
52
52
|
(typeof MatchFieldType)[keyof typeof MatchFieldType];
|
|
53
53
|
export interface FieldToMatch {
|
|
54
54
|
Type: MatchFieldType | undefined;
|
|
55
|
-
Data?: string;
|
|
55
|
+
Data?: string | undefined;
|
|
56
56
|
}
|
|
57
57
|
export declare const PositionalConstraint: {
|
|
58
58
|
readonly CONTAINS: "CONTAINS";
|
|
@@ -81,12 +81,12 @@ export interface ByteMatchTuple {
|
|
|
81
81
|
}
|
|
82
82
|
export interface ByteMatchSet {
|
|
83
83
|
ByteMatchSetId: string | undefined;
|
|
84
|
-
Name?: string;
|
|
84
|
+
Name?: string | undefined;
|
|
85
85
|
ByteMatchTuples: ByteMatchTuple[] | undefined;
|
|
86
86
|
}
|
|
87
87
|
export interface CreateByteMatchSetResponse {
|
|
88
|
-
ByteMatchSet?: ByteMatchSet;
|
|
89
|
-
ChangeToken?: string;
|
|
88
|
+
ByteMatchSet?: ByteMatchSet | undefined;
|
|
89
|
+
ChangeToken?: string | undefined;
|
|
90
90
|
}
|
|
91
91
|
export declare class WAFDisallowedNameException extends __BaseException {
|
|
92
92
|
readonly name: "WAFDisallowedNameException";
|
|
@@ -142,9 +142,9 @@ export type ParameterExceptionReason =
|
|
|
142
142
|
export declare class WAFInvalidParameterException extends __BaseException {
|
|
143
143
|
readonly name: "WAFInvalidParameterException";
|
|
144
144
|
readonly $fault: "client";
|
|
145
|
-
field?: ParameterExceptionField;
|
|
146
|
-
parameter?: string;
|
|
147
|
-
reason?: ParameterExceptionReason;
|
|
145
|
+
field?: ParameterExceptionField | undefined;
|
|
146
|
+
parameter?: string | undefined;
|
|
147
|
+
reason?: ParameterExceptionReason | undefined;
|
|
148
148
|
constructor(
|
|
149
149
|
opts: __ExceptionOptionType<WAFInvalidParameterException, __BaseException>
|
|
150
150
|
);
|
|
@@ -431,12 +431,12 @@ export interface GeoMatchConstraint {
|
|
|
431
431
|
}
|
|
432
432
|
export interface GeoMatchSet {
|
|
433
433
|
GeoMatchSetId: string | undefined;
|
|
434
|
-
Name?: string;
|
|
434
|
+
Name?: string | undefined;
|
|
435
435
|
GeoMatchConstraints: GeoMatchConstraint[] | undefined;
|
|
436
436
|
}
|
|
437
437
|
export interface CreateGeoMatchSetResponse {
|
|
438
|
-
GeoMatchSet?: GeoMatchSet;
|
|
439
|
-
ChangeToken?: string;
|
|
438
|
+
GeoMatchSet?: GeoMatchSet | undefined;
|
|
439
|
+
ChangeToken?: string | undefined;
|
|
440
440
|
}
|
|
441
441
|
export interface CreateIPSetRequest {
|
|
442
442
|
Name: string | undefined;
|
|
@@ -454,12 +454,12 @@ export interface IPSetDescriptor {
|
|
|
454
454
|
}
|
|
455
455
|
export interface IPSet {
|
|
456
456
|
IPSetId: string | undefined;
|
|
457
|
-
Name?: string;
|
|
457
|
+
Name?: string | undefined;
|
|
458
458
|
IPSetDescriptors: IPSetDescriptor[] | undefined;
|
|
459
459
|
}
|
|
460
460
|
export interface CreateIPSetResponse {
|
|
461
|
-
IPSet?: IPSet;
|
|
462
|
-
ChangeToken?: string;
|
|
461
|
+
IPSet?: IPSet | undefined;
|
|
462
|
+
ChangeToken?: string | undefined;
|
|
463
463
|
}
|
|
464
464
|
export declare const RateKey: {
|
|
465
465
|
readonly IP: "IP";
|
|
@@ -475,7 +475,7 @@ export interface CreateRateBasedRuleRequest {
|
|
|
475
475
|
RateKey: RateKey | undefined;
|
|
476
476
|
RateLimit: number | undefined;
|
|
477
477
|
ChangeToken: string | undefined;
|
|
478
|
-
Tags?: Tag[];
|
|
478
|
+
Tags?: Tag[] | undefined;
|
|
479
479
|
}
|
|
480
480
|
export declare const PredicateType: {
|
|
481
481
|
readonly BYTE_MATCH: "ByteMatch";
|
|
@@ -494,15 +494,15 @@ export interface Predicate {
|
|
|
494
494
|
}
|
|
495
495
|
export interface RateBasedRule {
|
|
496
496
|
RuleId: string | undefined;
|
|
497
|
-
Name?: string;
|
|
498
|
-
MetricName?: string;
|
|
497
|
+
Name?: string | undefined;
|
|
498
|
+
MetricName?: string | undefined;
|
|
499
499
|
MatchPredicates: Predicate[] | undefined;
|
|
500
500
|
RateKey: RateKey | undefined;
|
|
501
501
|
RateLimit: number | undefined;
|
|
502
502
|
}
|
|
503
503
|
export interface CreateRateBasedRuleResponse {
|
|
504
|
-
Rule?: RateBasedRule;
|
|
505
|
-
ChangeToken?: string;
|
|
504
|
+
Rule?: RateBasedRule | undefined;
|
|
505
|
+
ChangeToken?: string | undefined;
|
|
506
506
|
}
|
|
507
507
|
export declare class WAFBadRequestException extends __BaseException {
|
|
508
508
|
readonly name: "WAFBadRequestException";
|
|
@@ -538,13 +538,13 @@ export interface RegexMatchTuple {
|
|
|
538
538
|
RegexPatternSetId: string | undefined;
|
|
539
539
|
}
|
|
540
540
|
export interface RegexMatchSet {
|
|
541
|
-
RegexMatchSetId?: string;
|
|
542
|
-
Name?: string;
|
|
543
|
-
RegexMatchTuples?: RegexMatchTuple[];
|
|
541
|
+
RegexMatchSetId?: string | undefined;
|
|
542
|
+
Name?: string | undefined;
|
|
543
|
+
RegexMatchTuples?: RegexMatchTuple[] | undefined;
|
|
544
544
|
}
|
|
545
545
|
export interface CreateRegexMatchSetResponse {
|
|
546
|
-
RegexMatchSet?: RegexMatchSet;
|
|
547
|
-
ChangeToken?: string;
|
|
546
|
+
RegexMatchSet?: RegexMatchSet | undefined;
|
|
547
|
+
ChangeToken?: string | undefined;
|
|
548
548
|
}
|
|
549
549
|
export interface CreateRegexPatternSetRequest {
|
|
550
550
|
Name: string | undefined;
|
|
@@ -552,43 +552,43 @@ export interface CreateRegexPatternSetRequest {
|
|
|
552
552
|
}
|
|
553
553
|
export interface RegexPatternSet {
|
|
554
554
|
RegexPatternSetId: string | undefined;
|
|
555
|
-
Name?: string;
|
|
555
|
+
Name?: string | undefined;
|
|
556
556
|
RegexPatternStrings: string[] | undefined;
|
|
557
557
|
}
|
|
558
558
|
export interface CreateRegexPatternSetResponse {
|
|
559
|
-
RegexPatternSet?: RegexPatternSet;
|
|
560
|
-
ChangeToken?: string;
|
|
559
|
+
RegexPatternSet?: RegexPatternSet | undefined;
|
|
560
|
+
ChangeToken?: string | undefined;
|
|
561
561
|
}
|
|
562
562
|
export interface CreateRuleRequest {
|
|
563
563
|
Name: string | undefined;
|
|
564
564
|
MetricName: string | undefined;
|
|
565
565
|
ChangeToken: string | undefined;
|
|
566
|
-
Tags?: Tag[];
|
|
566
|
+
Tags?: Tag[] | undefined;
|
|
567
567
|
}
|
|
568
568
|
export interface Rule {
|
|
569
569
|
RuleId: string | undefined;
|
|
570
|
-
Name?: string;
|
|
571
|
-
MetricName?: string;
|
|
570
|
+
Name?: string | undefined;
|
|
571
|
+
MetricName?: string | undefined;
|
|
572
572
|
Predicates: Predicate[] | undefined;
|
|
573
573
|
}
|
|
574
574
|
export interface CreateRuleResponse {
|
|
575
|
-
Rule?: Rule;
|
|
576
|
-
ChangeToken?: string;
|
|
575
|
+
Rule?: Rule | undefined;
|
|
576
|
+
ChangeToken?: string | undefined;
|
|
577
577
|
}
|
|
578
578
|
export interface CreateRuleGroupRequest {
|
|
579
579
|
Name: string | undefined;
|
|
580
580
|
MetricName: string | undefined;
|
|
581
581
|
ChangeToken: string | undefined;
|
|
582
|
-
Tags?: Tag[];
|
|
582
|
+
Tags?: Tag[] | undefined;
|
|
583
583
|
}
|
|
584
584
|
export interface RuleGroup {
|
|
585
585
|
RuleGroupId: string | undefined;
|
|
586
|
-
Name?: string;
|
|
587
|
-
MetricName?: string;
|
|
586
|
+
Name?: string | undefined;
|
|
587
|
+
MetricName?: string | undefined;
|
|
588
588
|
}
|
|
589
589
|
export interface CreateRuleGroupResponse {
|
|
590
|
-
RuleGroup?: RuleGroup;
|
|
591
|
-
ChangeToken?: string;
|
|
590
|
+
RuleGroup?: RuleGroup | undefined;
|
|
591
|
+
ChangeToken?: string | undefined;
|
|
592
592
|
}
|
|
593
593
|
export interface CreateSizeConstraintSetRequest {
|
|
594
594
|
Name: string | undefined;
|
|
@@ -612,12 +612,12 @@ export interface SizeConstraint {
|
|
|
612
612
|
}
|
|
613
613
|
export interface SizeConstraintSet {
|
|
614
614
|
SizeConstraintSetId: string | undefined;
|
|
615
|
-
Name?: string;
|
|
615
|
+
Name?: string | undefined;
|
|
616
616
|
SizeConstraints: SizeConstraint[] | undefined;
|
|
617
617
|
}
|
|
618
618
|
export interface CreateSizeConstraintSetResponse {
|
|
619
|
-
SizeConstraintSet?: SizeConstraintSet;
|
|
620
|
-
ChangeToken?: string;
|
|
619
|
+
SizeConstraintSet?: SizeConstraintSet | undefined;
|
|
620
|
+
ChangeToken?: string | undefined;
|
|
621
621
|
}
|
|
622
622
|
export interface CreateSqlInjectionMatchSetRequest {
|
|
623
623
|
Name: string | undefined;
|
|
@@ -629,31 +629,31 @@ export interface SqlInjectionMatchTuple {
|
|
|
629
629
|
}
|
|
630
630
|
export interface SqlInjectionMatchSet {
|
|
631
631
|
SqlInjectionMatchSetId: string | undefined;
|
|
632
|
-
Name?: string;
|
|
632
|
+
Name?: string | undefined;
|
|
633
633
|
SqlInjectionMatchTuples: SqlInjectionMatchTuple[] | undefined;
|
|
634
634
|
}
|
|
635
635
|
export interface CreateSqlInjectionMatchSetResponse {
|
|
636
|
-
SqlInjectionMatchSet?: SqlInjectionMatchSet;
|
|
637
|
-
ChangeToken?: string;
|
|
636
|
+
SqlInjectionMatchSet?: SqlInjectionMatchSet | undefined;
|
|
637
|
+
ChangeToken?: string | undefined;
|
|
638
638
|
}
|
|
639
639
|
export interface CreateWebACLRequest {
|
|
640
640
|
Name: string | undefined;
|
|
641
641
|
MetricName: string | undefined;
|
|
642
642
|
DefaultAction: WafAction | undefined;
|
|
643
643
|
ChangeToken: string | undefined;
|
|
644
|
-
Tags?: Tag[];
|
|
644
|
+
Tags?: Tag[] | undefined;
|
|
645
645
|
}
|
|
646
646
|
export interface WebACL {
|
|
647
647
|
WebACLId: string | undefined;
|
|
648
|
-
Name?: string;
|
|
649
|
-
MetricName?: string;
|
|
648
|
+
Name?: string | undefined;
|
|
649
|
+
MetricName?: string | undefined;
|
|
650
650
|
DefaultAction: WafAction | undefined;
|
|
651
651
|
Rules: ActivatedRule[] | undefined;
|
|
652
|
-
WebACLArn?: string;
|
|
652
|
+
WebACLArn?: string | undefined;
|
|
653
653
|
}
|
|
654
654
|
export interface CreateWebACLResponse {
|
|
655
|
-
WebACL?: WebACL;
|
|
656
|
-
ChangeToken?: string;
|
|
655
|
+
WebACL?: WebACL | undefined;
|
|
656
|
+
ChangeToken?: string | undefined;
|
|
657
657
|
}
|
|
658
658
|
export interface CreateWebACLMigrationStackRequest {
|
|
659
659
|
WebACLId: string | undefined;
|
|
@@ -677,8 +677,8 @@ export type MigrationErrorType =
|
|
|
677
677
|
export declare class WAFEntityMigrationException extends __BaseException {
|
|
678
678
|
readonly name: "WAFEntityMigrationException";
|
|
679
679
|
readonly $fault: "client";
|
|
680
|
-
MigrationErrorType?: MigrationErrorType;
|
|
681
|
-
MigrationErrorReason?: string;
|
|
680
|
+
MigrationErrorType?: MigrationErrorType | undefined;
|
|
681
|
+
MigrationErrorReason?: string | undefined;
|
|
682
682
|
constructor(
|
|
683
683
|
opts: __ExceptionOptionType<WAFEntityMigrationException, __BaseException>
|
|
684
684
|
);
|
|
@@ -707,19 +707,19 @@ export interface XssMatchTuple {
|
|
|
707
707
|
}
|
|
708
708
|
export interface XssMatchSet {
|
|
709
709
|
XssMatchSetId: string | undefined;
|
|
710
|
-
Name?: string;
|
|
710
|
+
Name?: string | undefined;
|
|
711
711
|
XssMatchTuples: XssMatchTuple[] | undefined;
|
|
712
712
|
}
|
|
713
713
|
export interface CreateXssMatchSetResponse {
|
|
714
|
-
XssMatchSet?: XssMatchSet;
|
|
715
|
-
ChangeToken?: string;
|
|
714
|
+
XssMatchSet?: XssMatchSet | undefined;
|
|
715
|
+
ChangeToken?: string | undefined;
|
|
716
716
|
}
|
|
717
717
|
export interface DeleteByteMatchSetRequest {
|
|
718
718
|
ByteMatchSetId: string | undefined;
|
|
719
719
|
ChangeToken: string | undefined;
|
|
720
720
|
}
|
|
721
721
|
export interface DeleteByteMatchSetResponse {
|
|
722
|
-
ChangeToken?: string;
|
|
722
|
+
ChangeToken?: string | undefined;
|
|
723
723
|
}
|
|
724
724
|
export declare class WAFNonEmptyEntityException extends __BaseException {
|
|
725
725
|
readonly name: "WAFNonEmptyEntityException";
|
|
@@ -740,14 +740,14 @@ export interface DeleteGeoMatchSetRequest {
|
|
|
740
740
|
ChangeToken: string | undefined;
|
|
741
741
|
}
|
|
742
742
|
export interface DeleteGeoMatchSetResponse {
|
|
743
|
-
ChangeToken?: string;
|
|
743
|
+
ChangeToken?: string | undefined;
|
|
744
744
|
}
|
|
745
745
|
export interface DeleteIPSetRequest {
|
|
746
746
|
IPSetId: string | undefined;
|
|
747
747
|
ChangeToken: string | undefined;
|
|
748
748
|
}
|
|
749
749
|
export interface DeleteIPSetResponse {
|
|
750
|
-
ChangeToken?: string;
|
|
750
|
+
ChangeToken?: string | undefined;
|
|
751
751
|
}
|
|
752
752
|
export interface DeleteLoggingConfigurationRequest {
|
|
753
753
|
ResourceArn: string | undefined;
|
|
@@ -762,73 +762,73 @@ export interface DeleteRateBasedRuleRequest {
|
|
|
762
762
|
ChangeToken: string | undefined;
|
|
763
763
|
}
|
|
764
764
|
export interface DeleteRateBasedRuleResponse {
|
|
765
|
-
ChangeToken?: string;
|
|
765
|
+
ChangeToken?: string | undefined;
|
|
766
766
|
}
|
|
767
767
|
export interface DeleteRegexMatchSetRequest {
|
|
768
768
|
RegexMatchSetId: string | undefined;
|
|
769
769
|
ChangeToken: string | undefined;
|
|
770
770
|
}
|
|
771
771
|
export interface DeleteRegexMatchSetResponse {
|
|
772
|
-
ChangeToken?: string;
|
|
772
|
+
ChangeToken?: string | undefined;
|
|
773
773
|
}
|
|
774
774
|
export interface DeleteRegexPatternSetRequest {
|
|
775
775
|
RegexPatternSetId: string | undefined;
|
|
776
776
|
ChangeToken: string | undefined;
|
|
777
777
|
}
|
|
778
778
|
export interface DeleteRegexPatternSetResponse {
|
|
779
|
-
ChangeToken?: string;
|
|
779
|
+
ChangeToken?: string | undefined;
|
|
780
780
|
}
|
|
781
781
|
export interface DeleteRuleRequest {
|
|
782
782
|
RuleId: string | undefined;
|
|
783
783
|
ChangeToken: string | undefined;
|
|
784
784
|
}
|
|
785
785
|
export interface DeleteRuleResponse {
|
|
786
|
-
ChangeToken?: string;
|
|
786
|
+
ChangeToken?: string | undefined;
|
|
787
787
|
}
|
|
788
788
|
export interface DeleteRuleGroupRequest {
|
|
789
789
|
RuleGroupId: string | undefined;
|
|
790
790
|
ChangeToken: string | undefined;
|
|
791
791
|
}
|
|
792
792
|
export interface DeleteRuleGroupResponse {
|
|
793
|
-
ChangeToken?: string;
|
|
793
|
+
ChangeToken?: string | undefined;
|
|
794
794
|
}
|
|
795
795
|
export interface DeleteSizeConstraintSetRequest {
|
|
796
796
|
SizeConstraintSetId: string | undefined;
|
|
797
797
|
ChangeToken: string | undefined;
|
|
798
798
|
}
|
|
799
799
|
export interface DeleteSizeConstraintSetResponse {
|
|
800
|
-
ChangeToken?: string;
|
|
800
|
+
ChangeToken?: string | undefined;
|
|
801
801
|
}
|
|
802
802
|
export interface DeleteSqlInjectionMatchSetRequest {
|
|
803
803
|
SqlInjectionMatchSetId: string | undefined;
|
|
804
804
|
ChangeToken: string | undefined;
|
|
805
805
|
}
|
|
806
806
|
export interface DeleteSqlInjectionMatchSetResponse {
|
|
807
|
-
ChangeToken?: string;
|
|
807
|
+
ChangeToken?: string | undefined;
|
|
808
808
|
}
|
|
809
809
|
export interface DeleteWebACLRequest {
|
|
810
810
|
WebACLId: string | undefined;
|
|
811
811
|
ChangeToken: string | undefined;
|
|
812
812
|
}
|
|
813
813
|
export interface DeleteWebACLResponse {
|
|
814
|
-
ChangeToken?: string;
|
|
814
|
+
ChangeToken?: string | undefined;
|
|
815
815
|
}
|
|
816
816
|
export interface DeleteXssMatchSetRequest {
|
|
817
817
|
XssMatchSetId: string | undefined;
|
|
818
818
|
ChangeToken: string | undefined;
|
|
819
819
|
}
|
|
820
820
|
export interface DeleteXssMatchSetResponse {
|
|
821
|
-
ChangeToken?: string;
|
|
821
|
+
ChangeToken?: string | undefined;
|
|
822
822
|
}
|
|
823
823
|
export interface GetByteMatchSetRequest {
|
|
824
824
|
ByteMatchSetId: string | undefined;
|
|
825
825
|
}
|
|
826
826
|
export interface GetByteMatchSetResponse {
|
|
827
|
-
ByteMatchSet?: ByteMatchSet;
|
|
827
|
+
ByteMatchSet?: ByteMatchSet | undefined;
|
|
828
828
|
}
|
|
829
829
|
export interface GetChangeTokenRequest {}
|
|
830
830
|
export interface GetChangeTokenResponse {
|
|
831
|
-
ChangeToken?: string;
|
|
831
|
+
ChangeToken?: string | undefined;
|
|
832
832
|
}
|
|
833
833
|
export interface GetChangeTokenStatusRequest {
|
|
834
834
|
ChangeToken: string | undefined;
|
|
@@ -841,19 +841,19 @@ export declare const ChangeTokenStatus: {
|
|
|
841
841
|
export type ChangeTokenStatus =
|
|
842
842
|
(typeof ChangeTokenStatus)[keyof typeof ChangeTokenStatus];
|
|
843
843
|
export interface GetChangeTokenStatusResponse {
|
|
844
|
-
ChangeTokenStatus?: ChangeTokenStatus;
|
|
844
|
+
ChangeTokenStatus?: ChangeTokenStatus | undefined;
|
|
845
845
|
}
|
|
846
846
|
export interface GetGeoMatchSetRequest {
|
|
847
847
|
GeoMatchSetId: string | undefined;
|
|
848
848
|
}
|
|
849
849
|
export interface GetGeoMatchSetResponse {
|
|
850
|
-
GeoMatchSet?: GeoMatchSet;
|
|
850
|
+
GeoMatchSet?: GeoMatchSet | undefined;
|
|
851
851
|
}
|
|
852
852
|
export interface GetIPSetRequest {
|
|
853
853
|
IPSetId: string | undefined;
|
|
854
854
|
}
|
|
855
855
|
export interface GetIPSetResponse {
|
|
856
|
-
IPSet?: IPSet;
|
|
856
|
+
IPSet?: IPSet | undefined;
|
|
857
857
|
}
|
|
858
858
|
export interface GetLoggingConfigurationRequest {
|
|
859
859
|
ResourceArn: string | undefined;
|
|
@@ -861,54 +861,54 @@ export interface GetLoggingConfigurationRequest {
|
|
|
861
861
|
export interface LoggingConfiguration {
|
|
862
862
|
ResourceArn: string | undefined;
|
|
863
863
|
LogDestinationConfigs: string[] | undefined;
|
|
864
|
-
RedactedFields?: FieldToMatch[];
|
|
864
|
+
RedactedFields?: FieldToMatch[] | undefined;
|
|
865
865
|
}
|
|
866
866
|
export interface GetLoggingConfigurationResponse {
|
|
867
|
-
LoggingConfiguration?: LoggingConfiguration;
|
|
867
|
+
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
868
868
|
}
|
|
869
869
|
export interface GetPermissionPolicyRequest {
|
|
870
870
|
ResourceArn: string | undefined;
|
|
871
871
|
}
|
|
872
872
|
export interface GetPermissionPolicyResponse {
|
|
873
|
-
Policy?: string;
|
|
873
|
+
Policy?: string | undefined;
|
|
874
874
|
}
|
|
875
875
|
export interface GetRateBasedRuleRequest {
|
|
876
876
|
RuleId: string | undefined;
|
|
877
877
|
}
|
|
878
878
|
export interface GetRateBasedRuleResponse {
|
|
879
|
-
Rule?: RateBasedRule;
|
|
879
|
+
Rule?: RateBasedRule | undefined;
|
|
880
880
|
}
|
|
881
881
|
export interface GetRateBasedRuleManagedKeysRequest {
|
|
882
882
|
RuleId: string | undefined;
|
|
883
|
-
NextMarker?: string;
|
|
883
|
+
NextMarker?: string | undefined;
|
|
884
884
|
}
|
|
885
885
|
export interface GetRateBasedRuleManagedKeysResponse {
|
|
886
|
-
ManagedKeys?: string[];
|
|
887
|
-
NextMarker?: string;
|
|
886
|
+
ManagedKeys?: string[] | undefined;
|
|
887
|
+
NextMarker?: string | undefined;
|
|
888
888
|
}
|
|
889
889
|
export interface GetRegexMatchSetRequest {
|
|
890
890
|
RegexMatchSetId: string | undefined;
|
|
891
891
|
}
|
|
892
892
|
export interface GetRegexMatchSetResponse {
|
|
893
|
-
RegexMatchSet?: RegexMatchSet;
|
|
893
|
+
RegexMatchSet?: RegexMatchSet | undefined;
|
|
894
894
|
}
|
|
895
895
|
export interface GetRegexPatternSetRequest {
|
|
896
896
|
RegexPatternSetId: string | undefined;
|
|
897
897
|
}
|
|
898
898
|
export interface GetRegexPatternSetResponse {
|
|
899
|
-
RegexPatternSet?: RegexPatternSet;
|
|
899
|
+
RegexPatternSet?: RegexPatternSet | undefined;
|
|
900
900
|
}
|
|
901
901
|
export interface GetRuleRequest {
|
|
902
902
|
RuleId: string | undefined;
|
|
903
903
|
}
|
|
904
904
|
export interface GetRuleResponse {
|
|
905
|
-
Rule?: Rule;
|
|
905
|
+
Rule?: Rule | undefined;
|
|
906
906
|
}
|
|
907
907
|
export interface GetRuleGroupRequest {
|
|
908
908
|
RuleGroupId: string | undefined;
|
|
909
909
|
}
|
|
910
910
|
export interface GetRuleGroupResponse {
|
|
911
|
-
RuleGroup?: RuleGroup;
|
|
911
|
+
RuleGroup?: RuleGroup | undefined;
|
|
912
912
|
}
|
|
913
913
|
export interface TimeWindow {
|
|
914
914
|
StartTime: Date | undefined;
|
|
@@ -921,189 +921,189 @@ export interface GetSampledRequestsRequest {
|
|
|
921
921
|
MaxItems: number | undefined;
|
|
922
922
|
}
|
|
923
923
|
export interface HTTPHeader {
|
|
924
|
-
Name?: string;
|
|
925
|
-
Value?: string;
|
|
924
|
+
Name?: string | undefined;
|
|
925
|
+
Value?: string | undefined;
|
|
926
926
|
}
|
|
927
927
|
export interface HTTPRequest {
|
|
928
|
-
ClientIP?: string;
|
|
929
|
-
Country?: string;
|
|
930
|
-
URI?: string;
|
|
931
|
-
Method?: string;
|
|
932
|
-
HTTPVersion?: string;
|
|
933
|
-
Headers?: HTTPHeader[];
|
|
928
|
+
ClientIP?: string | undefined;
|
|
929
|
+
Country?: string | undefined;
|
|
930
|
+
URI?: string | undefined;
|
|
931
|
+
Method?: string | undefined;
|
|
932
|
+
HTTPVersion?: string | undefined;
|
|
933
|
+
Headers?: HTTPHeader[] | undefined;
|
|
934
934
|
}
|
|
935
935
|
export interface SampledHTTPRequest {
|
|
936
936
|
Request: HTTPRequest | undefined;
|
|
937
937
|
Weight: number | undefined;
|
|
938
|
-
Timestamp?: Date;
|
|
939
|
-
Action?: string;
|
|
940
|
-
RuleWithinRuleGroup?: string;
|
|
938
|
+
Timestamp?: Date | undefined;
|
|
939
|
+
Action?: string | undefined;
|
|
940
|
+
RuleWithinRuleGroup?: string | undefined;
|
|
941
941
|
}
|
|
942
942
|
export interface GetSampledRequestsResponse {
|
|
943
|
-
SampledRequests?: SampledHTTPRequest[];
|
|
944
|
-
PopulationSize?: number;
|
|
945
|
-
TimeWindow?: TimeWindow;
|
|
943
|
+
SampledRequests?: SampledHTTPRequest[] | undefined;
|
|
944
|
+
PopulationSize?: number | undefined;
|
|
945
|
+
TimeWindow?: TimeWindow | undefined;
|
|
946
946
|
}
|
|
947
947
|
export interface GetSizeConstraintSetRequest {
|
|
948
948
|
SizeConstraintSetId: string | undefined;
|
|
949
949
|
}
|
|
950
950
|
export interface GetSizeConstraintSetResponse {
|
|
951
|
-
SizeConstraintSet?: SizeConstraintSet;
|
|
951
|
+
SizeConstraintSet?: SizeConstraintSet | undefined;
|
|
952
952
|
}
|
|
953
953
|
export interface GetSqlInjectionMatchSetRequest {
|
|
954
954
|
SqlInjectionMatchSetId: string | undefined;
|
|
955
955
|
}
|
|
956
956
|
export interface GetSqlInjectionMatchSetResponse {
|
|
957
|
-
SqlInjectionMatchSet?: SqlInjectionMatchSet;
|
|
957
|
+
SqlInjectionMatchSet?: SqlInjectionMatchSet | undefined;
|
|
958
958
|
}
|
|
959
959
|
export interface GetWebACLRequest {
|
|
960
960
|
WebACLId: string | undefined;
|
|
961
961
|
}
|
|
962
962
|
export interface GetWebACLResponse {
|
|
963
|
-
WebACL?: WebACL;
|
|
963
|
+
WebACL?: WebACL | undefined;
|
|
964
964
|
}
|
|
965
965
|
export interface GetXssMatchSetRequest {
|
|
966
966
|
XssMatchSetId: string | undefined;
|
|
967
967
|
}
|
|
968
968
|
export interface GetXssMatchSetResponse {
|
|
969
|
-
XssMatchSet?: XssMatchSet;
|
|
969
|
+
XssMatchSet?: XssMatchSet | undefined;
|
|
970
970
|
}
|
|
971
971
|
export interface ListActivatedRulesInRuleGroupRequest {
|
|
972
|
-
RuleGroupId?: string;
|
|
973
|
-
NextMarker?: string;
|
|
974
|
-
Limit?: number;
|
|
972
|
+
RuleGroupId?: string | undefined;
|
|
973
|
+
NextMarker?: string | undefined;
|
|
974
|
+
Limit?: number | undefined;
|
|
975
975
|
}
|
|
976
976
|
export interface ListActivatedRulesInRuleGroupResponse {
|
|
977
|
-
NextMarker?: string;
|
|
978
|
-
ActivatedRules?: ActivatedRule[];
|
|
977
|
+
NextMarker?: string | undefined;
|
|
978
|
+
ActivatedRules?: ActivatedRule[] | undefined;
|
|
979
979
|
}
|
|
980
980
|
export interface ListByteMatchSetsRequest {
|
|
981
|
-
NextMarker?: string;
|
|
982
|
-
Limit?: number;
|
|
981
|
+
NextMarker?: string | undefined;
|
|
982
|
+
Limit?: number | undefined;
|
|
983
983
|
}
|
|
984
984
|
export interface ByteMatchSetSummary {
|
|
985
985
|
ByteMatchSetId: string | undefined;
|
|
986
986
|
Name: string | undefined;
|
|
987
987
|
}
|
|
988
988
|
export interface ListByteMatchSetsResponse {
|
|
989
|
-
NextMarker?: string;
|
|
990
|
-
ByteMatchSets?: ByteMatchSetSummary[];
|
|
989
|
+
NextMarker?: string | undefined;
|
|
990
|
+
ByteMatchSets?: ByteMatchSetSummary[] | undefined;
|
|
991
991
|
}
|
|
992
992
|
export interface ListGeoMatchSetsRequest {
|
|
993
|
-
NextMarker?: string;
|
|
994
|
-
Limit?: number;
|
|
993
|
+
NextMarker?: string | undefined;
|
|
994
|
+
Limit?: number | undefined;
|
|
995
995
|
}
|
|
996
996
|
export interface GeoMatchSetSummary {
|
|
997
997
|
GeoMatchSetId: string | undefined;
|
|
998
998
|
Name: string | undefined;
|
|
999
999
|
}
|
|
1000
1000
|
export interface ListGeoMatchSetsResponse {
|
|
1001
|
-
NextMarker?: string;
|
|
1002
|
-
GeoMatchSets?: GeoMatchSetSummary[];
|
|
1001
|
+
NextMarker?: string | undefined;
|
|
1002
|
+
GeoMatchSets?: GeoMatchSetSummary[] | undefined;
|
|
1003
1003
|
}
|
|
1004
1004
|
export interface ListIPSetsRequest {
|
|
1005
|
-
NextMarker?: string;
|
|
1006
|
-
Limit?: number;
|
|
1005
|
+
NextMarker?: string | undefined;
|
|
1006
|
+
Limit?: number | undefined;
|
|
1007
1007
|
}
|
|
1008
1008
|
export interface IPSetSummary {
|
|
1009
1009
|
IPSetId: string | undefined;
|
|
1010
1010
|
Name: string | undefined;
|
|
1011
1011
|
}
|
|
1012
1012
|
export interface ListIPSetsResponse {
|
|
1013
|
-
NextMarker?: string;
|
|
1014
|
-
IPSets?: IPSetSummary[];
|
|
1013
|
+
NextMarker?: string | undefined;
|
|
1014
|
+
IPSets?: IPSetSummary[] | undefined;
|
|
1015
1015
|
}
|
|
1016
1016
|
export interface ListLoggingConfigurationsRequest {
|
|
1017
|
-
NextMarker?: string;
|
|
1018
|
-
Limit?: number;
|
|
1017
|
+
NextMarker?: string | undefined;
|
|
1018
|
+
Limit?: number | undefined;
|
|
1019
1019
|
}
|
|
1020
1020
|
export interface ListLoggingConfigurationsResponse {
|
|
1021
|
-
LoggingConfigurations?: LoggingConfiguration[];
|
|
1022
|
-
NextMarker?: string;
|
|
1021
|
+
LoggingConfigurations?: LoggingConfiguration[] | undefined;
|
|
1022
|
+
NextMarker?: string | undefined;
|
|
1023
1023
|
}
|
|
1024
1024
|
export interface ListRateBasedRulesRequest {
|
|
1025
|
-
NextMarker?: string;
|
|
1026
|
-
Limit?: number;
|
|
1025
|
+
NextMarker?: string | undefined;
|
|
1026
|
+
Limit?: number | undefined;
|
|
1027
1027
|
}
|
|
1028
1028
|
export interface RuleSummary {
|
|
1029
1029
|
RuleId: string | undefined;
|
|
1030
1030
|
Name: string | undefined;
|
|
1031
1031
|
}
|
|
1032
1032
|
export interface ListRateBasedRulesResponse {
|
|
1033
|
-
NextMarker?: string;
|
|
1034
|
-
Rules?: RuleSummary[];
|
|
1033
|
+
NextMarker?: string | undefined;
|
|
1034
|
+
Rules?: RuleSummary[] | undefined;
|
|
1035
1035
|
}
|
|
1036
1036
|
export interface ListRegexMatchSetsRequest {
|
|
1037
|
-
NextMarker?: string;
|
|
1038
|
-
Limit?: number;
|
|
1037
|
+
NextMarker?: string | undefined;
|
|
1038
|
+
Limit?: number | undefined;
|
|
1039
1039
|
}
|
|
1040
1040
|
export interface RegexMatchSetSummary {
|
|
1041
1041
|
RegexMatchSetId: string | undefined;
|
|
1042
1042
|
Name: string | undefined;
|
|
1043
1043
|
}
|
|
1044
1044
|
export interface ListRegexMatchSetsResponse {
|
|
1045
|
-
NextMarker?: string;
|
|
1046
|
-
RegexMatchSets?: RegexMatchSetSummary[];
|
|
1045
|
+
NextMarker?: string | undefined;
|
|
1046
|
+
RegexMatchSets?: RegexMatchSetSummary[] | undefined;
|
|
1047
1047
|
}
|
|
1048
1048
|
export interface ListRegexPatternSetsRequest {
|
|
1049
|
-
NextMarker?: string;
|
|
1050
|
-
Limit?: number;
|
|
1049
|
+
NextMarker?: string | undefined;
|
|
1050
|
+
Limit?: number | undefined;
|
|
1051
1051
|
}
|
|
1052
1052
|
export interface RegexPatternSetSummary {
|
|
1053
1053
|
RegexPatternSetId: string | undefined;
|
|
1054
1054
|
Name: string | undefined;
|
|
1055
1055
|
}
|
|
1056
1056
|
export interface ListRegexPatternSetsResponse {
|
|
1057
|
-
NextMarker?: string;
|
|
1058
|
-
RegexPatternSets?: RegexPatternSetSummary[];
|
|
1057
|
+
NextMarker?: string | undefined;
|
|
1058
|
+
RegexPatternSets?: RegexPatternSetSummary[] | undefined;
|
|
1059
1059
|
}
|
|
1060
1060
|
export interface ListRuleGroupsRequest {
|
|
1061
|
-
NextMarker?: string;
|
|
1062
|
-
Limit?: number;
|
|
1061
|
+
NextMarker?: string | undefined;
|
|
1062
|
+
Limit?: number | undefined;
|
|
1063
1063
|
}
|
|
1064
1064
|
export interface RuleGroupSummary {
|
|
1065
1065
|
RuleGroupId: string | undefined;
|
|
1066
1066
|
Name: string | undefined;
|
|
1067
1067
|
}
|
|
1068
1068
|
export interface ListRuleGroupsResponse {
|
|
1069
|
-
NextMarker?: string;
|
|
1070
|
-
RuleGroups?: RuleGroupSummary[];
|
|
1069
|
+
NextMarker?: string | undefined;
|
|
1070
|
+
RuleGroups?: RuleGroupSummary[] | undefined;
|
|
1071
1071
|
}
|
|
1072
1072
|
export interface ListRulesRequest {
|
|
1073
|
-
NextMarker?: string;
|
|
1074
|
-
Limit?: number;
|
|
1073
|
+
NextMarker?: string | undefined;
|
|
1074
|
+
Limit?: number | undefined;
|
|
1075
1075
|
}
|
|
1076
1076
|
export interface ListRulesResponse {
|
|
1077
|
-
NextMarker?: string;
|
|
1078
|
-
Rules?: RuleSummary[];
|
|
1077
|
+
NextMarker?: string | undefined;
|
|
1078
|
+
Rules?: RuleSummary[] | undefined;
|
|
1079
1079
|
}
|
|
1080
1080
|
export interface ListSizeConstraintSetsRequest {
|
|
1081
|
-
NextMarker?: string;
|
|
1082
|
-
Limit?: number;
|
|
1081
|
+
NextMarker?: string | undefined;
|
|
1082
|
+
Limit?: number | undefined;
|
|
1083
1083
|
}
|
|
1084
1084
|
export interface SizeConstraintSetSummary {
|
|
1085
1085
|
SizeConstraintSetId: string | undefined;
|
|
1086
1086
|
Name: string | undefined;
|
|
1087
1087
|
}
|
|
1088
1088
|
export interface ListSizeConstraintSetsResponse {
|
|
1089
|
-
NextMarker?: string;
|
|
1090
|
-
SizeConstraintSets?: SizeConstraintSetSummary[];
|
|
1089
|
+
NextMarker?: string | undefined;
|
|
1090
|
+
SizeConstraintSets?: SizeConstraintSetSummary[] | undefined;
|
|
1091
1091
|
}
|
|
1092
1092
|
export interface ListSqlInjectionMatchSetsRequest {
|
|
1093
|
-
NextMarker?: string;
|
|
1094
|
-
Limit?: number;
|
|
1093
|
+
NextMarker?: string | undefined;
|
|
1094
|
+
Limit?: number | undefined;
|
|
1095
1095
|
}
|
|
1096
1096
|
export interface SqlInjectionMatchSetSummary {
|
|
1097
1097
|
SqlInjectionMatchSetId: string | undefined;
|
|
1098
1098
|
Name: string | undefined;
|
|
1099
1099
|
}
|
|
1100
1100
|
export interface ListSqlInjectionMatchSetsResponse {
|
|
1101
|
-
NextMarker?: string;
|
|
1102
|
-
SqlInjectionMatchSets?: SqlInjectionMatchSetSummary[];
|
|
1101
|
+
NextMarker?: string | undefined;
|
|
1102
|
+
SqlInjectionMatchSets?: SqlInjectionMatchSetSummary[] | undefined;
|
|
1103
1103
|
}
|
|
1104
1104
|
export interface ListSubscribedRuleGroupsRequest {
|
|
1105
|
-
NextMarker?: string;
|
|
1106
|
-
Limit?: number;
|
|
1105
|
+
NextMarker?: string | undefined;
|
|
1106
|
+
Limit?: number | undefined;
|
|
1107
1107
|
}
|
|
1108
1108
|
export interface SubscribedRuleGroupSummary {
|
|
1109
1109
|
RuleGroupId: string | undefined;
|
|
@@ -1111,51 +1111,51 @@ export interface SubscribedRuleGroupSummary {
|
|
|
1111
1111
|
MetricName: string | undefined;
|
|
1112
1112
|
}
|
|
1113
1113
|
export interface ListSubscribedRuleGroupsResponse {
|
|
1114
|
-
NextMarker?: string;
|
|
1115
|
-
RuleGroups?: SubscribedRuleGroupSummary[];
|
|
1114
|
+
NextMarker?: string | undefined;
|
|
1115
|
+
RuleGroups?: SubscribedRuleGroupSummary[] | undefined;
|
|
1116
1116
|
}
|
|
1117
1117
|
export interface ListTagsForResourceRequest {
|
|
1118
|
-
NextMarker?: string;
|
|
1119
|
-
Limit?: number;
|
|
1118
|
+
NextMarker?: string | undefined;
|
|
1119
|
+
Limit?: number | undefined;
|
|
1120
1120
|
ResourceARN: string | undefined;
|
|
1121
1121
|
}
|
|
1122
1122
|
export interface TagInfoForResource {
|
|
1123
|
-
ResourceARN?: string;
|
|
1124
|
-
TagList?: Tag[];
|
|
1123
|
+
ResourceARN?: string | undefined;
|
|
1124
|
+
TagList?: Tag[] | undefined;
|
|
1125
1125
|
}
|
|
1126
1126
|
export interface ListTagsForResourceResponse {
|
|
1127
|
-
NextMarker?: string;
|
|
1128
|
-
TagInfoForResource?: TagInfoForResource;
|
|
1127
|
+
NextMarker?: string | undefined;
|
|
1128
|
+
TagInfoForResource?: TagInfoForResource | undefined;
|
|
1129
1129
|
}
|
|
1130
1130
|
export interface ListWebACLsRequest {
|
|
1131
|
-
NextMarker?: string;
|
|
1132
|
-
Limit?: number;
|
|
1131
|
+
NextMarker?: string | undefined;
|
|
1132
|
+
Limit?: number | undefined;
|
|
1133
1133
|
}
|
|
1134
1134
|
export interface WebACLSummary {
|
|
1135
1135
|
WebACLId: string | undefined;
|
|
1136
1136
|
Name: string | undefined;
|
|
1137
1137
|
}
|
|
1138
1138
|
export interface ListWebACLsResponse {
|
|
1139
|
-
NextMarker?: string;
|
|
1140
|
-
WebACLs?: WebACLSummary[];
|
|
1139
|
+
NextMarker?: string | undefined;
|
|
1140
|
+
WebACLs?: WebACLSummary[] | undefined;
|
|
1141
1141
|
}
|
|
1142
1142
|
export interface ListXssMatchSetsRequest {
|
|
1143
|
-
NextMarker?: string;
|
|
1144
|
-
Limit?: number;
|
|
1143
|
+
NextMarker?: string | undefined;
|
|
1144
|
+
Limit?: number | undefined;
|
|
1145
1145
|
}
|
|
1146
1146
|
export interface XssMatchSetSummary {
|
|
1147
1147
|
XssMatchSetId: string | undefined;
|
|
1148
1148
|
Name: string | undefined;
|
|
1149
1149
|
}
|
|
1150
1150
|
export interface ListXssMatchSetsResponse {
|
|
1151
|
-
NextMarker?: string;
|
|
1152
|
-
XssMatchSets?: XssMatchSetSummary[];
|
|
1151
|
+
NextMarker?: string | undefined;
|
|
1152
|
+
XssMatchSets?: XssMatchSetSummary[] | undefined;
|
|
1153
1153
|
}
|
|
1154
1154
|
export interface PutLoggingConfigurationRequest {
|
|
1155
1155
|
LoggingConfiguration: LoggingConfiguration | undefined;
|
|
1156
1156
|
}
|
|
1157
1157
|
export interface PutLoggingConfigurationResponse {
|
|
1158
|
-
LoggingConfiguration?: LoggingConfiguration;
|
|
1158
|
+
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
1159
1159
|
}
|
|
1160
1160
|
export declare class WAFServiceLinkedRoleErrorException extends __BaseException {
|
|
1161
1161
|
readonly name: "WAFServiceLinkedRoleErrorException";
|
|
@@ -1207,7 +1207,7 @@ export interface UpdateByteMatchSetRequest {
|
|
|
1207
1207
|
Updates: ByteMatchSetUpdate[] | undefined;
|
|
1208
1208
|
}
|
|
1209
1209
|
export interface UpdateByteMatchSetResponse {
|
|
1210
|
-
ChangeToken?: string;
|
|
1210
|
+
ChangeToken?: string | undefined;
|
|
1211
1211
|
}
|
|
1212
1212
|
export declare class WAFNonexistentContainerException extends __BaseException {
|
|
1213
1213
|
readonly name: "WAFNonexistentContainerException";
|
|
@@ -1229,7 +1229,7 @@ export interface UpdateGeoMatchSetRequest {
|
|
|
1229
1229
|
Updates: GeoMatchSetUpdate[] | undefined;
|
|
1230
1230
|
}
|
|
1231
1231
|
export interface UpdateGeoMatchSetResponse {
|
|
1232
|
-
ChangeToken?: string;
|
|
1232
|
+
ChangeToken?: string | undefined;
|
|
1233
1233
|
}
|
|
1234
1234
|
export interface IPSetUpdate {
|
|
1235
1235
|
Action: ChangeAction | undefined;
|
|
@@ -1241,7 +1241,7 @@ export interface UpdateIPSetRequest {
|
|
|
1241
1241
|
Updates: IPSetUpdate[] | undefined;
|
|
1242
1242
|
}
|
|
1243
1243
|
export interface UpdateIPSetResponse {
|
|
1244
|
-
ChangeToken?: string;
|
|
1244
|
+
ChangeToken?: string | undefined;
|
|
1245
1245
|
}
|
|
1246
1246
|
export interface RuleUpdate {
|
|
1247
1247
|
Action: ChangeAction | undefined;
|
|
@@ -1254,7 +1254,7 @@ export interface UpdateRateBasedRuleRequest {
|
|
|
1254
1254
|
RateLimit: number | undefined;
|
|
1255
1255
|
}
|
|
1256
1256
|
export interface UpdateRateBasedRuleResponse {
|
|
1257
|
-
ChangeToken?: string;
|
|
1257
|
+
ChangeToken?: string | undefined;
|
|
1258
1258
|
}
|
|
1259
1259
|
export interface RegexMatchSetUpdate {
|
|
1260
1260
|
Action: ChangeAction | undefined;
|
|
@@ -1266,7 +1266,7 @@ export interface UpdateRegexMatchSetRequest {
|
|
|
1266
1266
|
ChangeToken: string | undefined;
|
|
1267
1267
|
}
|
|
1268
1268
|
export interface UpdateRegexMatchSetResponse {
|
|
1269
|
-
ChangeToken?: string;
|
|
1269
|
+
ChangeToken?: string | undefined;
|
|
1270
1270
|
}
|
|
1271
1271
|
export interface RegexPatternSetUpdate {
|
|
1272
1272
|
Action: ChangeAction | undefined;
|
|
@@ -1278,7 +1278,7 @@ export interface UpdateRegexPatternSetRequest {
|
|
|
1278
1278
|
ChangeToken: string | undefined;
|
|
1279
1279
|
}
|
|
1280
1280
|
export interface UpdateRegexPatternSetResponse {
|
|
1281
|
-
ChangeToken?: string;
|
|
1281
|
+
ChangeToken?: string | undefined;
|
|
1282
1282
|
}
|
|
1283
1283
|
export declare class WAFInvalidRegexPatternException extends __BaseException {
|
|
1284
1284
|
readonly name: "WAFInvalidRegexPatternException";
|
|
@@ -1296,7 +1296,7 @@ export interface UpdateRuleRequest {
|
|
|
1296
1296
|
Updates: RuleUpdate[] | undefined;
|
|
1297
1297
|
}
|
|
1298
1298
|
export interface UpdateRuleResponse {
|
|
1299
|
-
ChangeToken?: string;
|
|
1299
|
+
ChangeToken?: string | undefined;
|
|
1300
1300
|
}
|
|
1301
1301
|
export interface RuleGroupUpdate {
|
|
1302
1302
|
Action: ChangeAction | undefined;
|
|
@@ -1308,7 +1308,7 @@ export interface UpdateRuleGroupRequest {
|
|
|
1308
1308
|
ChangeToken: string | undefined;
|
|
1309
1309
|
}
|
|
1310
1310
|
export interface UpdateRuleGroupResponse {
|
|
1311
|
-
ChangeToken?: string;
|
|
1311
|
+
ChangeToken?: string | undefined;
|
|
1312
1312
|
}
|
|
1313
1313
|
export interface SizeConstraintSetUpdate {
|
|
1314
1314
|
Action: ChangeAction | undefined;
|
|
@@ -1320,7 +1320,7 @@ export interface UpdateSizeConstraintSetRequest {
|
|
|
1320
1320
|
Updates: SizeConstraintSetUpdate[] | undefined;
|
|
1321
1321
|
}
|
|
1322
1322
|
export interface UpdateSizeConstraintSetResponse {
|
|
1323
|
-
ChangeToken?: string;
|
|
1323
|
+
ChangeToken?: string | undefined;
|
|
1324
1324
|
}
|
|
1325
1325
|
export interface SqlInjectionMatchSetUpdate {
|
|
1326
1326
|
Action: ChangeAction | undefined;
|
|
@@ -1332,7 +1332,7 @@ export interface UpdateSqlInjectionMatchSetRequest {
|
|
|
1332
1332
|
Updates: SqlInjectionMatchSetUpdate[] | undefined;
|
|
1333
1333
|
}
|
|
1334
1334
|
export interface UpdateSqlInjectionMatchSetResponse {
|
|
1335
|
-
ChangeToken?: string;
|
|
1335
|
+
ChangeToken?: string | undefined;
|
|
1336
1336
|
}
|
|
1337
1337
|
export interface WebACLUpdate {
|
|
1338
1338
|
Action: ChangeAction | undefined;
|
|
@@ -1341,11 +1341,11 @@ export interface WebACLUpdate {
|
|
|
1341
1341
|
export interface UpdateWebACLRequest {
|
|
1342
1342
|
WebACLId: string | undefined;
|
|
1343
1343
|
ChangeToken: string | undefined;
|
|
1344
|
-
Updates?: WebACLUpdate[];
|
|
1345
|
-
DefaultAction?: WafAction;
|
|
1344
|
+
Updates?: WebACLUpdate[] | undefined;
|
|
1345
|
+
DefaultAction?: WafAction | undefined;
|
|
1346
1346
|
}
|
|
1347
1347
|
export interface UpdateWebACLResponse {
|
|
1348
|
-
ChangeToken?: string;
|
|
1348
|
+
ChangeToken?: string | undefined;
|
|
1349
1349
|
}
|
|
1350
1350
|
export declare class WAFSubscriptionNotFoundException extends __BaseException {
|
|
1351
1351
|
readonly name: "WAFSubscriptionNotFoundException";
|
|
@@ -1367,5 +1367,5 @@ export interface UpdateXssMatchSetRequest {
|
|
|
1367
1367
|
Updates: XssMatchSetUpdate[] | undefined;
|
|
1368
1368
|
}
|
|
1369
1369
|
export interface UpdateXssMatchSetResponse {
|
|
1370
|
-
ChangeToken?: string;
|
|
1370
|
+
ChangeToken?: string | undefined;
|
|
1371
1371
|
}
|