@aws-sdk/client-waf-regional 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.
@@ -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 AssociateWebACLRequest {
39
39
  WebACLId: string | undefined;
@@ -87,9 +87,9 @@ export type ParameterExceptionReason =
87
87
  export declare class WAFInvalidParameterException extends __BaseException {
88
88
  readonly name: "WAFInvalidParameterException";
89
89
  readonly $fault: "client";
90
- field?: ParameterExceptionField;
91
- parameter?: string;
92
- reason?: ParameterExceptionReason;
90
+ field?: ParameterExceptionField | undefined;
91
+ parameter?: string | undefined;
92
+ reason?: ParameterExceptionReason | undefined;
93
93
  constructor(
94
94
  opts: __ExceptionOptionType<WAFInvalidParameterException, __BaseException>
95
95
  );
@@ -125,7 +125,7 @@ export type MatchFieldType =
125
125
  (typeof MatchFieldType)[keyof typeof MatchFieldType];
126
126
  export interface FieldToMatch {
127
127
  Type: MatchFieldType | undefined;
128
- Data?: string;
128
+ Data?: string | undefined;
129
129
  }
130
130
  export declare const PositionalConstraint: {
131
131
  readonly CONTAINS: "CONTAINS";
@@ -154,12 +154,12 @@ export interface ByteMatchTuple {
154
154
  }
155
155
  export interface ByteMatchSet {
156
156
  ByteMatchSetId: string | undefined;
157
- Name?: string;
157
+ Name?: string | undefined;
158
158
  ByteMatchTuples: ByteMatchTuple[] | undefined;
159
159
  }
160
160
  export interface CreateByteMatchSetResponse {
161
- ByteMatchSet?: ByteMatchSet;
162
- ChangeToken?: string;
161
+ ByteMatchSet?: ByteMatchSet | undefined;
162
+ ChangeToken?: string | undefined;
163
163
  }
164
164
  export declare class WAFDisallowedNameException extends __BaseException {
165
165
  readonly name: "WAFDisallowedNameException";
@@ -450,12 +450,12 @@ export interface GeoMatchConstraint {
450
450
  }
451
451
  export interface GeoMatchSet {
452
452
  GeoMatchSetId: string | undefined;
453
- Name?: string;
453
+ Name?: string | undefined;
454
454
  GeoMatchConstraints: GeoMatchConstraint[] | undefined;
455
455
  }
456
456
  export interface CreateGeoMatchSetResponse {
457
- GeoMatchSet?: GeoMatchSet;
458
- ChangeToken?: string;
457
+ GeoMatchSet?: GeoMatchSet | undefined;
458
+ ChangeToken?: string | undefined;
459
459
  }
460
460
  export interface CreateIPSetRequest {
461
461
  Name: string | undefined;
@@ -473,12 +473,12 @@ export interface IPSetDescriptor {
473
473
  }
474
474
  export interface IPSet {
475
475
  IPSetId: string | undefined;
476
- Name?: string;
476
+ Name?: string | undefined;
477
477
  IPSetDescriptors: IPSetDescriptor[] | undefined;
478
478
  }
479
479
  export interface CreateIPSetResponse {
480
- IPSet?: IPSet;
481
- ChangeToken?: string;
480
+ IPSet?: IPSet | undefined;
481
+ ChangeToken?: string | undefined;
482
482
  }
483
483
  export declare const RateKey: {
484
484
  readonly IP: "IP";
@@ -494,7 +494,7 @@ export interface CreateRateBasedRuleRequest {
494
494
  RateKey: RateKey | undefined;
495
495
  RateLimit: number | undefined;
496
496
  ChangeToken: string | undefined;
497
- Tags?: Tag[];
497
+ Tags?: Tag[] | undefined;
498
498
  }
499
499
  export declare const PredicateType: {
500
500
  readonly BYTE_MATCH: "ByteMatch";
@@ -513,15 +513,15 @@ export interface Predicate {
513
513
  }
514
514
  export interface RateBasedRule {
515
515
  RuleId: string | undefined;
516
- Name?: string;
517
- MetricName?: string;
516
+ Name?: string | undefined;
517
+ MetricName?: string | undefined;
518
518
  MatchPredicates: Predicate[] | undefined;
519
519
  RateKey: RateKey | undefined;
520
520
  RateLimit: number | undefined;
521
521
  }
522
522
  export interface CreateRateBasedRuleResponse {
523
- Rule?: RateBasedRule;
524
- ChangeToken?: string;
523
+ Rule?: RateBasedRule | undefined;
524
+ ChangeToken?: string | undefined;
525
525
  }
526
526
  export declare class WAFBadRequestException extends __BaseException {
527
527
  readonly name: "WAFBadRequestException";
@@ -557,13 +557,13 @@ export interface RegexMatchTuple {
557
557
  RegexPatternSetId: string | undefined;
558
558
  }
559
559
  export interface RegexMatchSet {
560
- RegexMatchSetId?: string;
561
- Name?: string;
562
- RegexMatchTuples?: RegexMatchTuple[];
560
+ RegexMatchSetId?: string | undefined;
561
+ Name?: string | undefined;
562
+ RegexMatchTuples?: RegexMatchTuple[] | undefined;
563
563
  }
564
564
  export interface CreateRegexMatchSetResponse {
565
- RegexMatchSet?: RegexMatchSet;
566
- ChangeToken?: string;
565
+ RegexMatchSet?: RegexMatchSet | undefined;
566
+ ChangeToken?: string | undefined;
567
567
  }
568
568
  export interface CreateRegexPatternSetRequest {
569
569
  Name: string | undefined;
@@ -571,43 +571,43 @@ export interface CreateRegexPatternSetRequest {
571
571
  }
572
572
  export interface RegexPatternSet {
573
573
  RegexPatternSetId: string | undefined;
574
- Name?: string;
574
+ Name?: string | undefined;
575
575
  RegexPatternStrings: string[] | undefined;
576
576
  }
577
577
  export interface CreateRegexPatternSetResponse {
578
- RegexPatternSet?: RegexPatternSet;
579
- ChangeToken?: string;
578
+ RegexPatternSet?: RegexPatternSet | undefined;
579
+ ChangeToken?: string | undefined;
580
580
  }
581
581
  export interface CreateRuleRequest {
582
582
  Name: string | undefined;
583
583
  MetricName: string | undefined;
584
584
  ChangeToken: string | undefined;
585
- Tags?: Tag[];
585
+ Tags?: Tag[] | undefined;
586
586
  }
587
587
  export interface Rule {
588
588
  RuleId: string | undefined;
589
- Name?: string;
590
- MetricName?: string;
589
+ Name?: string | undefined;
590
+ MetricName?: string | undefined;
591
591
  Predicates: Predicate[] | undefined;
592
592
  }
593
593
  export interface CreateRuleResponse {
594
- Rule?: Rule;
595
- ChangeToken?: string;
594
+ Rule?: Rule | undefined;
595
+ ChangeToken?: string | undefined;
596
596
  }
597
597
  export interface CreateRuleGroupRequest {
598
598
  Name: string | undefined;
599
599
  MetricName: string | undefined;
600
600
  ChangeToken: string | undefined;
601
- Tags?: Tag[];
601
+ Tags?: Tag[] | undefined;
602
602
  }
603
603
  export interface RuleGroup {
604
604
  RuleGroupId: string | undefined;
605
- Name?: string;
606
- MetricName?: string;
605
+ Name?: string | undefined;
606
+ MetricName?: string | undefined;
607
607
  }
608
608
  export interface CreateRuleGroupResponse {
609
- RuleGroup?: RuleGroup;
610
- ChangeToken?: string;
609
+ RuleGroup?: RuleGroup | undefined;
610
+ ChangeToken?: string | undefined;
611
611
  }
612
612
  export interface CreateSizeConstraintSetRequest {
613
613
  Name: string | undefined;
@@ -631,12 +631,12 @@ export interface SizeConstraint {
631
631
  }
632
632
  export interface SizeConstraintSet {
633
633
  SizeConstraintSetId: string | undefined;
634
- Name?: string;
634
+ Name?: string | undefined;
635
635
  SizeConstraints: SizeConstraint[] | undefined;
636
636
  }
637
637
  export interface CreateSizeConstraintSetResponse {
638
- SizeConstraintSet?: SizeConstraintSet;
639
- ChangeToken?: string;
638
+ SizeConstraintSet?: SizeConstraintSet | undefined;
639
+ ChangeToken?: string | undefined;
640
640
  }
641
641
  export interface CreateSqlInjectionMatchSetRequest {
642
642
  Name: string | undefined;
@@ -648,31 +648,31 @@ export interface SqlInjectionMatchTuple {
648
648
  }
649
649
  export interface SqlInjectionMatchSet {
650
650
  SqlInjectionMatchSetId: string | undefined;
651
- Name?: string;
651
+ Name?: string | undefined;
652
652
  SqlInjectionMatchTuples: SqlInjectionMatchTuple[] | undefined;
653
653
  }
654
654
  export interface CreateSqlInjectionMatchSetResponse {
655
- SqlInjectionMatchSet?: SqlInjectionMatchSet;
656
- ChangeToken?: string;
655
+ SqlInjectionMatchSet?: SqlInjectionMatchSet | undefined;
656
+ ChangeToken?: string | undefined;
657
657
  }
658
658
  export interface CreateWebACLRequest {
659
659
  Name: string | undefined;
660
660
  MetricName: string | undefined;
661
661
  DefaultAction: WafAction | undefined;
662
662
  ChangeToken: string | undefined;
663
- Tags?: Tag[];
663
+ Tags?: Tag[] | undefined;
664
664
  }
665
665
  export interface WebACL {
666
666
  WebACLId: string | undefined;
667
- Name?: string;
668
- MetricName?: string;
667
+ Name?: string | undefined;
668
+ MetricName?: string | undefined;
669
669
  DefaultAction: WafAction | undefined;
670
670
  Rules: ActivatedRule[] | undefined;
671
- WebACLArn?: string;
671
+ WebACLArn?: string | undefined;
672
672
  }
673
673
  export interface CreateWebACLResponse {
674
- WebACL?: WebACL;
675
- ChangeToken?: string;
674
+ WebACL?: WebACL | undefined;
675
+ ChangeToken?: string | undefined;
676
676
  }
677
677
  export interface CreateWebACLMigrationStackRequest {
678
678
  WebACLId: string | undefined;
@@ -696,8 +696,8 @@ export type MigrationErrorType =
696
696
  export declare class WAFEntityMigrationException extends __BaseException {
697
697
  readonly name: "WAFEntityMigrationException";
698
698
  readonly $fault: "client";
699
- MigrationErrorType?: MigrationErrorType;
700
- MigrationErrorReason?: string;
699
+ MigrationErrorType?: MigrationErrorType | undefined;
700
+ MigrationErrorReason?: string | undefined;
701
701
  constructor(
702
702
  opts: __ExceptionOptionType<WAFEntityMigrationException, __BaseException>
703
703
  );
@@ -719,19 +719,19 @@ export interface XssMatchTuple {
719
719
  }
720
720
  export interface XssMatchSet {
721
721
  XssMatchSetId: string | undefined;
722
- Name?: string;
722
+ Name?: string | undefined;
723
723
  XssMatchTuples: XssMatchTuple[] | undefined;
724
724
  }
725
725
  export interface CreateXssMatchSetResponse {
726
- XssMatchSet?: XssMatchSet;
727
- ChangeToken?: string;
726
+ XssMatchSet?: XssMatchSet | undefined;
727
+ ChangeToken?: string | undefined;
728
728
  }
729
729
  export interface DeleteByteMatchSetRequest {
730
730
  ByteMatchSetId: string | undefined;
731
731
  ChangeToken: string | undefined;
732
732
  }
733
733
  export interface DeleteByteMatchSetResponse {
734
- ChangeToken?: string;
734
+ ChangeToken?: string | undefined;
735
735
  }
736
736
  export declare class WAFNonEmptyEntityException extends __BaseException {
737
737
  readonly name: "WAFNonEmptyEntityException";
@@ -752,14 +752,14 @@ export interface DeleteGeoMatchSetRequest {
752
752
  ChangeToken: string | undefined;
753
753
  }
754
754
  export interface DeleteGeoMatchSetResponse {
755
- ChangeToken?: string;
755
+ ChangeToken?: string | undefined;
756
756
  }
757
757
  export interface DeleteIPSetRequest {
758
758
  IPSetId: string | undefined;
759
759
  ChangeToken: string | undefined;
760
760
  }
761
761
  export interface DeleteIPSetResponse {
762
- ChangeToken?: string;
762
+ ChangeToken?: string | undefined;
763
763
  }
764
764
  export interface DeleteLoggingConfigurationRequest {
765
765
  ResourceArn: string | undefined;
@@ -774,63 +774,63 @@ export interface DeleteRateBasedRuleRequest {
774
774
  ChangeToken: string | undefined;
775
775
  }
776
776
  export interface DeleteRateBasedRuleResponse {
777
- ChangeToken?: string;
777
+ ChangeToken?: string | undefined;
778
778
  }
779
779
  export interface DeleteRegexMatchSetRequest {
780
780
  RegexMatchSetId: string | undefined;
781
781
  ChangeToken: string | undefined;
782
782
  }
783
783
  export interface DeleteRegexMatchSetResponse {
784
- ChangeToken?: string;
784
+ ChangeToken?: string | undefined;
785
785
  }
786
786
  export interface DeleteRegexPatternSetRequest {
787
787
  RegexPatternSetId: string | undefined;
788
788
  ChangeToken: string | undefined;
789
789
  }
790
790
  export interface DeleteRegexPatternSetResponse {
791
- ChangeToken?: string;
791
+ ChangeToken?: string | undefined;
792
792
  }
793
793
  export interface DeleteRuleRequest {
794
794
  RuleId: string | undefined;
795
795
  ChangeToken: string | undefined;
796
796
  }
797
797
  export interface DeleteRuleResponse {
798
- ChangeToken?: string;
798
+ ChangeToken?: string | undefined;
799
799
  }
800
800
  export interface DeleteRuleGroupRequest {
801
801
  RuleGroupId: string | undefined;
802
802
  ChangeToken: string | undefined;
803
803
  }
804
804
  export interface DeleteRuleGroupResponse {
805
- ChangeToken?: string;
805
+ ChangeToken?: string | undefined;
806
806
  }
807
807
  export interface DeleteSizeConstraintSetRequest {
808
808
  SizeConstraintSetId: string | undefined;
809
809
  ChangeToken: string | undefined;
810
810
  }
811
811
  export interface DeleteSizeConstraintSetResponse {
812
- ChangeToken?: string;
812
+ ChangeToken?: string | undefined;
813
813
  }
814
814
  export interface DeleteSqlInjectionMatchSetRequest {
815
815
  SqlInjectionMatchSetId: string | undefined;
816
816
  ChangeToken: string | undefined;
817
817
  }
818
818
  export interface DeleteSqlInjectionMatchSetResponse {
819
- ChangeToken?: string;
819
+ ChangeToken?: string | undefined;
820
820
  }
821
821
  export interface DeleteWebACLRequest {
822
822
  WebACLId: string | undefined;
823
823
  ChangeToken: string | undefined;
824
824
  }
825
825
  export interface DeleteWebACLResponse {
826
- ChangeToken?: string;
826
+ ChangeToken?: string | undefined;
827
827
  }
828
828
  export interface DeleteXssMatchSetRequest {
829
829
  XssMatchSetId: string | undefined;
830
830
  ChangeToken: string | undefined;
831
831
  }
832
832
  export interface DeleteXssMatchSetResponse {
833
- ChangeToken?: string;
833
+ ChangeToken?: string | undefined;
834
834
  }
835
835
  export interface DisassociateWebACLRequest {
836
836
  ResourceArn: string | undefined;
@@ -840,11 +840,11 @@ export interface GetByteMatchSetRequest {
840
840
  ByteMatchSetId: string | undefined;
841
841
  }
842
842
  export interface GetByteMatchSetResponse {
843
- ByteMatchSet?: ByteMatchSet;
843
+ ByteMatchSet?: ByteMatchSet | undefined;
844
844
  }
845
845
  export interface GetChangeTokenRequest {}
846
846
  export interface GetChangeTokenResponse {
847
- ChangeToken?: string;
847
+ ChangeToken?: string | undefined;
848
848
  }
849
849
  export interface GetChangeTokenStatusRequest {
850
850
  ChangeToken: string | undefined;
@@ -857,19 +857,19 @@ export declare const ChangeTokenStatus: {
857
857
  export type ChangeTokenStatus =
858
858
  (typeof ChangeTokenStatus)[keyof typeof ChangeTokenStatus];
859
859
  export interface GetChangeTokenStatusResponse {
860
- ChangeTokenStatus?: ChangeTokenStatus;
860
+ ChangeTokenStatus?: ChangeTokenStatus | undefined;
861
861
  }
862
862
  export interface GetGeoMatchSetRequest {
863
863
  GeoMatchSetId: string | undefined;
864
864
  }
865
865
  export interface GetGeoMatchSetResponse {
866
- GeoMatchSet?: GeoMatchSet;
866
+ GeoMatchSet?: GeoMatchSet | undefined;
867
867
  }
868
868
  export interface GetIPSetRequest {
869
869
  IPSetId: string | undefined;
870
870
  }
871
871
  export interface GetIPSetResponse {
872
- IPSet?: IPSet;
872
+ IPSet?: IPSet | undefined;
873
873
  }
874
874
  export interface GetLoggingConfigurationRequest {
875
875
  ResourceArn: string | undefined;
@@ -877,54 +877,54 @@ export interface GetLoggingConfigurationRequest {
877
877
  export interface LoggingConfiguration {
878
878
  ResourceArn: string | undefined;
879
879
  LogDestinationConfigs: string[] | undefined;
880
- RedactedFields?: FieldToMatch[];
880
+ RedactedFields?: FieldToMatch[] | undefined;
881
881
  }
882
882
  export interface GetLoggingConfigurationResponse {
883
- LoggingConfiguration?: LoggingConfiguration;
883
+ LoggingConfiguration?: LoggingConfiguration | undefined;
884
884
  }
885
885
  export interface GetPermissionPolicyRequest {
886
886
  ResourceArn: string | undefined;
887
887
  }
888
888
  export interface GetPermissionPolicyResponse {
889
- Policy?: string;
889
+ Policy?: string | undefined;
890
890
  }
891
891
  export interface GetRateBasedRuleRequest {
892
892
  RuleId: string | undefined;
893
893
  }
894
894
  export interface GetRateBasedRuleResponse {
895
- Rule?: RateBasedRule;
895
+ Rule?: RateBasedRule | undefined;
896
896
  }
897
897
  export interface GetRateBasedRuleManagedKeysRequest {
898
898
  RuleId: string | undefined;
899
- NextMarker?: string;
899
+ NextMarker?: string | undefined;
900
900
  }
901
901
  export interface GetRateBasedRuleManagedKeysResponse {
902
- ManagedKeys?: string[];
903
- NextMarker?: string;
902
+ ManagedKeys?: string[] | undefined;
903
+ NextMarker?: string | undefined;
904
904
  }
905
905
  export interface GetRegexMatchSetRequest {
906
906
  RegexMatchSetId: string | undefined;
907
907
  }
908
908
  export interface GetRegexMatchSetResponse {
909
- RegexMatchSet?: RegexMatchSet;
909
+ RegexMatchSet?: RegexMatchSet | undefined;
910
910
  }
911
911
  export interface GetRegexPatternSetRequest {
912
912
  RegexPatternSetId: string | undefined;
913
913
  }
914
914
  export interface GetRegexPatternSetResponse {
915
- RegexPatternSet?: RegexPatternSet;
915
+ RegexPatternSet?: RegexPatternSet | undefined;
916
916
  }
917
917
  export interface GetRuleRequest {
918
918
  RuleId: string | undefined;
919
919
  }
920
920
  export interface GetRuleResponse {
921
- Rule?: Rule;
921
+ Rule?: Rule | undefined;
922
922
  }
923
923
  export interface GetRuleGroupRequest {
924
924
  RuleGroupId: string | undefined;
925
925
  }
926
926
  export interface GetRuleGroupResponse {
927
- RuleGroup?: RuleGroup;
927
+ RuleGroup?: RuleGroup | undefined;
928
928
  }
929
929
  export interface TimeWindow {
930
930
  StartTime: Date | undefined;
@@ -937,46 +937,46 @@ export interface GetSampledRequestsRequest {
937
937
  MaxItems: number | undefined;
938
938
  }
939
939
  export interface HTTPHeader {
940
- Name?: string;
941
- Value?: string;
940
+ Name?: string | undefined;
941
+ Value?: string | undefined;
942
942
  }
943
943
  export interface HTTPRequest {
944
- ClientIP?: string;
945
- Country?: string;
946
- URI?: string;
947
- Method?: string;
948
- HTTPVersion?: string;
949
- Headers?: HTTPHeader[];
944
+ ClientIP?: string | undefined;
945
+ Country?: string | undefined;
946
+ URI?: string | undefined;
947
+ Method?: string | undefined;
948
+ HTTPVersion?: string | undefined;
949
+ Headers?: HTTPHeader[] | undefined;
950
950
  }
951
951
  export interface SampledHTTPRequest {
952
952
  Request: HTTPRequest | undefined;
953
953
  Weight: number | undefined;
954
- Timestamp?: Date;
955
- Action?: string;
956
- RuleWithinRuleGroup?: string;
954
+ Timestamp?: Date | undefined;
955
+ Action?: string | undefined;
956
+ RuleWithinRuleGroup?: string | undefined;
957
957
  }
958
958
  export interface GetSampledRequestsResponse {
959
- SampledRequests?: SampledHTTPRequest[];
960
- PopulationSize?: number;
961
- TimeWindow?: TimeWindow;
959
+ SampledRequests?: SampledHTTPRequest[] | undefined;
960
+ PopulationSize?: number | undefined;
961
+ TimeWindow?: TimeWindow | undefined;
962
962
  }
963
963
  export interface GetSizeConstraintSetRequest {
964
964
  SizeConstraintSetId: string | undefined;
965
965
  }
966
966
  export interface GetSizeConstraintSetResponse {
967
- SizeConstraintSet?: SizeConstraintSet;
967
+ SizeConstraintSet?: SizeConstraintSet | undefined;
968
968
  }
969
969
  export interface GetSqlInjectionMatchSetRequest {
970
970
  SqlInjectionMatchSetId: string | undefined;
971
971
  }
972
972
  export interface GetSqlInjectionMatchSetResponse {
973
- SqlInjectionMatchSet?: SqlInjectionMatchSet;
973
+ SqlInjectionMatchSet?: SqlInjectionMatchSet | undefined;
974
974
  }
975
975
  export interface GetWebACLRequest {
976
976
  WebACLId: string | undefined;
977
977
  }
978
978
  export interface GetWebACLResponse {
979
- WebACL?: WebACL;
979
+ WebACL?: WebACL | undefined;
980
980
  }
981
981
  export interface GetWebACLForResourceRequest {
982
982
  ResourceArn: string | undefined;
@@ -986,102 +986,102 @@ export interface WebACLSummary {
986
986
  Name: string | undefined;
987
987
  }
988
988
  export interface GetWebACLForResourceResponse {
989
- WebACLSummary?: WebACLSummary;
989
+ WebACLSummary?: WebACLSummary | undefined;
990
990
  }
991
991
  export interface GetXssMatchSetRequest {
992
992
  XssMatchSetId: string | undefined;
993
993
  }
994
994
  export interface GetXssMatchSetResponse {
995
- XssMatchSet?: XssMatchSet;
995
+ XssMatchSet?: XssMatchSet | undefined;
996
996
  }
997
997
  export interface ListActivatedRulesInRuleGroupRequest {
998
- RuleGroupId?: string;
999
- NextMarker?: string;
1000
- Limit?: number;
998
+ RuleGroupId?: string | undefined;
999
+ NextMarker?: string | undefined;
1000
+ Limit?: number | undefined;
1001
1001
  }
1002
1002
  export interface ListActivatedRulesInRuleGroupResponse {
1003
- NextMarker?: string;
1004
- ActivatedRules?: ActivatedRule[];
1003
+ NextMarker?: string | undefined;
1004
+ ActivatedRules?: ActivatedRule[] | undefined;
1005
1005
  }
1006
1006
  export interface ListByteMatchSetsRequest {
1007
- NextMarker?: string;
1008
- Limit?: number;
1007
+ NextMarker?: string | undefined;
1008
+ Limit?: number | undefined;
1009
1009
  }
1010
1010
  export interface ByteMatchSetSummary {
1011
1011
  ByteMatchSetId: string | undefined;
1012
1012
  Name: string | undefined;
1013
1013
  }
1014
1014
  export interface ListByteMatchSetsResponse {
1015
- NextMarker?: string;
1016
- ByteMatchSets?: ByteMatchSetSummary[];
1015
+ NextMarker?: string | undefined;
1016
+ ByteMatchSets?: ByteMatchSetSummary[] | undefined;
1017
1017
  }
1018
1018
  export interface ListGeoMatchSetsRequest {
1019
- NextMarker?: string;
1020
- Limit?: number;
1019
+ NextMarker?: string | undefined;
1020
+ Limit?: number | undefined;
1021
1021
  }
1022
1022
  export interface GeoMatchSetSummary {
1023
1023
  GeoMatchSetId: string | undefined;
1024
1024
  Name: string | undefined;
1025
1025
  }
1026
1026
  export interface ListGeoMatchSetsResponse {
1027
- NextMarker?: string;
1028
- GeoMatchSets?: GeoMatchSetSummary[];
1027
+ NextMarker?: string | undefined;
1028
+ GeoMatchSets?: GeoMatchSetSummary[] | undefined;
1029
1029
  }
1030
1030
  export interface ListIPSetsRequest {
1031
- NextMarker?: string;
1032
- Limit?: number;
1031
+ NextMarker?: string | undefined;
1032
+ Limit?: number | undefined;
1033
1033
  }
1034
1034
  export interface IPSetSummary {
1035
1035
  IPSetId: string | undefined;
1036
1036
  Name: string | undefined;
1037
1037
  }
1038
1038
  export interface ListIPSetsResponse {
1039
- NextMarker?: string;
1040
- IPSets?: IPSetSummary[];
1039
+ NextMarker?: string | undefined;
1040
+ IPSets?: IPSetSummary[] | undefined;
1041
1041
  }
1042
1042
  export interface ListLoggingConfigurationsRequest {
1043
- NextMarker?: string;
1044
- Limit?: number;
1043
+ NextMarker?: string | undefined;
1044
+ Limit?: number | undefined;
1045
1045
  }
1046
1046
  export interface ListLoggingConfigurationsResponse {
1047
- LoggingConfigurations?: LoggingConfiguration[];
1048
- NextMarker?: string;
1047
+ LoggingConfigurations?: LoggingConfiguration[] | undefined;
1048
+ NextMarker?: string | undefined;
1049
1049
  }
1050
1050
  export interface ListRateBasedRulesRequest {
1051
- NextMarker?: string;
1052
- Limit?: number;
1051
+ NextMarker?: string | undefined;
1052
+ Limit?: number | undefined;
1053
1053
  }
1054
1054
  export interface RuleSummary {
1055
1055
  RuleId: string | undefined;
1056
1056
  Name: string | undefined;
1057
1057
  }
1058
1058
  export interface ListRateBasedRulesResponse {
1059
- NextMarker?: string;
1060
- Rules?: RuleSummary[];
1059
+ NextMarker?: string | undefined;
1060
+ Rules?: RuleSummary[] | undefined;
1061
1061
  }
1062
1062
  export interface ListRegexMatchSetsRequest {
1063
- NextMarker?: string;
1064
- Limit?: number;
1063
+ NextMarker?: string | undefined;
1064
+ Limit?: number | undefined;
1065
1065
  }
1066
1066
  export interface RegexMatchSetSummary {
1067
1067
  RegexMatchSetId: string | undefined;
1068
1068
  Name: string | undefined;
1069
1069
  }
1070
1070
  export interface ListRegexMatchSetsResponse {
1071
- NextMarker?: string;
1072
- RegexMatchSets?: RegexMatchSetSummary[];
1071
+ NextMarker?: string | undefined;
1072
+ RegexMatchSets?: RegexMatchSetSummary[] | undefined;
1073
1073
  }
1074
1074
  export interface ListRegexPatternSetsRequest {
1075
- NextMarker?: string;
1076
- Limit?: number;
1075
+ NextMarker?: string | undefined;
1076
+ Limit?: number | undefined;
1077
1077
  }
1078
1078
  export interface RegexPatternSetSummary {
1079
1079
  RegexPatternSetId: string | undefined;
1080
1080
  Name: string | undefined;
1081
1081
  }
1082
1082
  export interface ListRegexPatternSetsResponse {
1083
- NextMarker?: string;
1084
- RegexPatternSets?: RegexPatternSetSummary[];
1083
+ NextMarker?: string | undefined;
1084
+ RegexPatternSets?: RegexPatternSetSummary[] | undefined;
1085
1085
  }
1086
1086
  export declare const ResourceType: {
1087
1087
  readonly API_GATEWAY: "API_GATEWAY";
@@ -1090,58 +1090,58 @@ export declare const ResourceType: {
1090
1090
  export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
1091
1091
  export interface ListResourcesForWebACLRequest {
1092
1092
  WebACLId: string | undefined;
1093
- ResourceType?: ResourceType;
1093
+ ResourceType?: ResourceType | undefined;
1094
1094
  }
1095
1095
  export interface ListResourcesForWebACLResponse {
1096
- ResourceArns?: string[];
1096
+ ResourceArns?: string[] | undefined;
1097
1097
  }
1098
1098
  export interface ListRuleGroupsRequest {
1099
- NextMarker?: string;
1100
- Limit?: number;
1099
+ NextMarker?: string | undefined;
1100
+ Limit?: number | undefined;
1101
1101
  }
1102
1102
  export interface RuleGroupSummary {
1103
1103
  RuleGroupId: string | undefined;
1104
1104
  Name: string | undefined;
1105
1105
  }
1106
1106
  export interface ListRuleGroupsResponse {
1107
- NextMarker?: string;
1108
- RuleGroups?: RuleGroupSummary[];
1107
+ NextMarker?: string | undefined;
1108
+ RuleGroups?: RuleGroupSummary[] | undefined;
1109
1109
  }
1110
1110
  export interface ListRulesRequest {
1111
- NextMarker?: string;
1112
- Limit?: number;
1111
+ NextMarker?: string | undefined;
1112
+ Limit?: number | undefined;
1113
1113
  }
1114
1114
  export interface ListRulesResponse {
1115
- NextMarker?: string;
1116
- Rules?: RuleSummary[];
1115
+ NextMarker?: string | undefined;
1116
+ Rules?: RuleSummary[] | undefined;
1117
1117
  }
1118
1118
  export interface ListSizeConstraintSetsRequest {
1119
- NextMarker?: string;
1120
- Limit?: number;
1119
+ NextMarker?: string | undefined;
1120
+ Limit?: number | undefined;
1121
1121
  }
1122
1122
  export interface SizeConstraintSetSummary {
1123
1123
  SizeConstraintSetId: string | undefined;
1124
1124
  Name: string | undefined;
1125
1125
  }
1126
1126
  export interface ListSizeConstraintSetsResponse {
1127
- NextMarker?: string;
1128
- SizeConstraintSets?: SizeConstraintSetSummary[];
1127
+ NextMarker?: string | undefined;
1128
+ SizeConstraintSets?: SizeConstraintSetSummary[] | undefined;
1129
1129
  }
1130
1130
  export interface ListSqlInjectionMatchSetsRequest {
1131
- NextMarker?: string;
1132
- Limit?: number;
1131
+ NextMarker?: string | undefined;
1132
+ Limit?: number | undefined;
1133
1133
  }
1134
1134
  export interface SqlInjectionMatchSetSummary {
1135
1135
  SqlInjectionMatchSetId: string | undefined;
1136
1136
  Name: string | undefined;
1137
1137
  }
1138
1138
  export interface ListSqlInjectionMatchSetsResponse {
1139
- NextMarker?: string;
1140
- SqlInjectionMatchSets?: SqlInjectionMatchSetSummary[];
1139
+ NextMarker?: string | undefined;
1140
+ SqlInjectionMatchSets?: SqlInjectionMatchSetSummary[] | undefined;
1141
1141
  }
1142
1142
  export interface ListSubscribedRuleGroupsRequest {
1143
- NextMarker?: string;
1144
- Limit?: number;
1143
+ NextMarker?: string | undefined;
1144
+ Limit?: number | undefined;
1145
1145
  }
1146
1146
  export interface SubscribedRuleGroupSummary {
1147
1147
  RuleGroupId: string | undefined;
@@ -1149,47 +1149,47 @@ export interface SubscribedRuleGroupSummary {
1149
1149
  MetricName: string | undefined;
1150
1150
  }
1151
1151
  export interface ListSubscribedRuleGroupsResponse {
1152
- NextMarker?: string;
1153
- RuleGroups?: SubscribedRuleGroupSummary[];
1152
+ NextMarker?: string | undefined;
1153
+ RuleGroups?: SubscribedRuleGroupSummary[] | undefined;
1154
1154
  }
1155
1155
  export interface ListTagsForResourceRequest {
1156
- NextMarker?: string;
1157
- Limit?: number;
1156
+ NextMarker?: string | undefined;
1157
+ Limit?: number | undefined;
1158
1158
  ResourceARN: string | undefined;
1159
1159
  }
1160
1160
  export interface TagInfoForResource {
1161
- ResourceARN?: string;
1162
- TagList?: Tag[];
1161
+ ResourceARN?: string | undefined;
1162
+ TagList?: Tag[] | undefined;
1163
1163
  }
1164
1164
  export interface ListTagsForResourceResponse {
1165
- NextMarker?: string;
1166
- TagInfoForResource?: TagInfoForResource;
1165
+ NextMarker?: string | undefined;
1166
+ TagInfoForResource?: TagInfoForResource | undefined;
1167
1167
  }
1168
1168
  export interface ListWebACLsRequest {
1169
- NextMarker?: string;
1170
- Limit?: number;
1169
+ NextMarker?: string | undefined;
1170
+ Limit?: number | undefined;
1171
1171
  }
1172
1172
  export interface ListWebACLsResponse {
1173
- NextMarker?: string;
1174
- WebACLs?: WebACLSummary[];
1173
+ NextMarker?: string | undefined;
1174
+ WebACLs?: WebACLSummary[] | undefined;
1175
1175
  }
1176
1176
  export interface ListXssMatchSetsRequest {
1177
- NextMarker?: string;
1178
- Limit?: number;
1177
+ NextMarker?: string | undefined;
1178
+ Limit?: number | undefined;
1179
1179
  }
1180
1180
  export interface XssMatchSetSummary {
1181
1181
  XssMatchSetId: string | undefined;
1182
1182
  Name: string | undefined;
1183
1183
  }
1184
1184
  export interface ListXssMatchSetsResponse {
1185
- NextMarker?: string;
1186
- XssMatchSets?: XssMatchSetSummary[];
1185
+ NextMarker?: string | undefined;
1186
+ XssMatchSets?: XssMatchSetSummary[] | undefined;
1187
1187
  }
1188
1188
  export interface PutLoggingConfigurationRequest {
1189
1189
  LoggingConfiguration: LoggingConfiguration | undefined;
1190
1190
  }
1191
1191
  export interface PutLoggingConfigurationResponse {
1192
- LoggingConfiguration?: LoggingConfiguration;
1192
+ LoggingConfiguration?: LoggingConfiguration | undefined;
1193
1193
  }
1194
1194
  export declare class WAFServiceLinkedRoleErrorException extends __BaseException {
1195
1195
  readonly name: "WAFServiceLinkedRoleErrorException";
@@ -1241,7 +1241,7 @@ export interface UpdateByteMatchSetRequest {
1241
1241
  Updates: ByteMatchSetUpdate[] | undefined;
1242
1242
  }
1243
1243
  export interface UpdateByteMatchSetResponse {
1244
- ChangeToken?: string;
1244
+ ChangeToken?: string | undefined;
1245
1245
  }
1246
1246
  export declare class WAFNonexistentContainerException extends __BaseException {
1247
1247
  readonly name: "WAFNonexistentContainerException";
@@ -1263,7 +1263,7 @@ export interface UpdateGeoMatchSetRequest {
1263
1263
  Updates: GeoMatchSetUpdate[] | undefined;
1264
1264
  }
1265
1265
  export interface UpdateGeoMatchSetResponse {
1266
- ChangeToken?: string;
1266
+ ChangeToken?: string | undefined;
1267
1267
  }
1268
1268
  export interface IPSetUpdate {
1269
1269
  Action: ChangeAction | undefined;
@@ -1275,7 +1275,7 @@ export interface UpdateIPSetRequest {
1275
1275
  Updates: IPSetUpdate[] | undefined;
1276
1276
  }
1277
1277
  export interface UpdateIPSetResponse {
1278
- ChangeToken?: string;
1278
+ ChangeToken?: string | undefined;
1279
1279
  }
1280
1280
  export interface RuleUpdate {
1281
1281
  Action: ChangeAction | undefined;
@@ -1288,7 +1288,7 @@ export interface UpdateRateBasedRuleRequest {
1288
1288
  RateLimit: number | undefined;
1289
1289
  }
1290
1290
  export interface UpdateRateBasedRuleResponse {
1291
- ChangeToken?: string;
1291
+ ChangeToken?: string | undefined;
1292
1292
  }
1293
1293
  export interface RegexMatchSetUpdate {
1294
1294
  Action: ChangeAction | undefined;
@@ -1300,7 +1300,7 @@ export interface UpdateRegexMatchSetRequest {
1300
1300
  ChangeToken: string | undefined;
1301
1301
  }
1302
1302
  export interface UpdateRegexMatchSetResponse {
1303
- ChangeToken?: string;
1303
+ ChangeToken?: string | undefined;
1304
1304
  }
1305
1305
  export interface RegexPatternSetUpdate {
1306
1306
  Action: ChangeAction | undefined;
@@ -1312,7 +1312,7 @@ export interface UpdateRegexPatternSetRequest {
1312
1312
  ChangeToken: string | undefined;
1313
1313
  }
1314
1314
  export interface UpdateRegexPatternSetResponse {
1315
- ChangeToken?: string;
1315
+ ChangeToken?: string | undefined;
1316
1316
  }
1317
1317
  export declare class WAFInvalidRegexPatternException extends __BaseException {
1318
1318
  readonly name: "WAFInvalidRegexPatternException";
@@ -1330,7 +1330,7 @@ export interface UpdateRuleRequest {
1330
1330
  Updates: RuleUpdate[] | undefined;
1331
1331
  }
1332
1332
  export interface UpdateRuleResponse {
1333
- ChangeToken?: string;
1333
+ ChangeToken?: string | undefined;
1334
1334
  }
1335
1335
  export interface RuleGroupUpdate {
1336
1336
  Action: ChangeAction | undefined;
@@ -1342,7 +1342,7 @@ export interface UpdateRuleGroupRequest {
1342
1342
  ChangeToken: string | undefined;
1343
1343
  }
1344
1344
  export interface UpdateRuleGroupResponse {
1345
- ChangeToken?: string;
1345
+ ChangeToken?: string | undefined;
1346
1346
  }
1347
1347
  export interface SizeConstraintSetUpdate {
1348
1348
  Action: ChangeAction | undefined;
@@ -1354,7 +1354,7 @@ export interface UpdateSizeConstraintSetRequest {
1354
1354
  Updates: SizeConstraintSetUpdate[] | undefined;
1355
1355
  }
1356
1356
  export interface UpdateSizeConstraintSetResponse {
1357
- ChangeToken?: string;
1357
+ ChangeToken?: string | undefined;
1358
1358
  }
1359
1359
  export interface SqlInjectionMatchSetUpdate {
1360
1360
  Action: ChangeAction | undefined;
@@ -1366,7 +1366,7 @@ export interface UpdateSqlInjectionMatchSetRequest {
1366
1366
  Updates: SqlInjectionMatchSetUpdate[] | undefined;
1367
1367
  }
1368
1368
  export interface UpdateSqlInjectionMatchSetResponse {
1369
- ChangeToken?: string;
1369
+ ChangeToken?: string | undefined;
1370
1370
  }
1371
1371
  export interface WebACLUpdate {
1372
1372
  Action: ChangeAction | undefined;
@@ -1375,11 +1375,11 @@ export interface WebACLUpdate {
1375
1375
  export interface UpdateWebACLRequest {
1376
1376
  WebACLId: string | undefined;
1377
1377
  ChangeToken: string | undefined;
1378
- Updates?: WebACLUpdate[];
1379
- DefaultAction?: WafAction;
1378
+ Updates?: WebACLUpdate[] | undefined;
1379
+ DefaultAction?: WafAction | undefined;
1380
1380
  }
1381
1381
  export interface UpdateWebACLResponse {
1382
- ChangeToken?: string;
1382
+ ChangeToken?: string | undefined;
1383
1383
  }
1384
1384
  export declare class WAFSubscriptionNotFoundException extends __BaseException {
1385
1385
  readonly name: "WAFSubscriptionNotFoundException";
@@ -1401,5 +1401,5 @@ export interface UpdateXssMatchSetRequest {
1401
1401
  Updates: XssMatchSetUpdate[] | undefined;
1402
1402
  }
1403
1403
  export interface UpdateXssMatchSetResponse {
1404
- ChangeToken?: string;
1404
+ ChangeToken?: string | undefined;
1405
1405
  }