@aws-sdk/client-wafv2 3.350.0 → 3.352.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-cjs/models/models_0.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/commands/CheckCapacityCommand.d.ts +124 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +124 -0
- package/dist-types/commands/CreateWebACLCommand.d.ts +124 -0
- package/dist-types/commands/GetRuleGroupCommand.d.ts +124 -0
- package/dist-types/commands/GetWebACLCommand.d.ts +172 -33
- package/dist-types/commands/GetWebACLForResourceCommand.d.ts +172 -33
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +124 -0
- package/dist-types/commands/UpdateWebACLCommand.d.ts +124 -0
- package/dist-types/models/models_0.d.ts +394 -87
- package/dist-types/ts3.4/models/models_0.d.ts +30 -3
- package/package.json +5 -5
|
@@ -383,6 +383,7 @@ class WAFInvalidOperationException extends WAFV2ServiceException_1.WAFV2ServiceE
|
|
|
383
383
|
}
|
|
384
384
|
exports.WAFInvalidOperationException = WAFInvalidOperationException;
|
|
385
385
|
exports.ParameterExceptionField = {
|
|
386
|
+
ACP_RULE_SET_RESPONSE_INSPECTION: "ACP_RULE_SET_RESPONSE_INSPECTION",
|
|
386
387
|
AND_STATEMENT: "AND_STATEMENT",
|
|
387
388
|
ASSOCIABLE_RESOURCE: "ASSOCIABLE_RESOURCE",
|
|
388
389
|
ASSOCIATED_RESOURCE_TYPE: "ASSOCIATED_RESOURCE_TYPE",
|
|
@@ -378,6 +378,7 @@ export class WAFInvalidOperationException extends __BaseException {
|
|
|
378
378
|
}
|
|
379
379
|
}
|
|
380
380
|
export const ParameterExceptionField = {
|
|
381
|
+
ACP_RULE_SET_RESPONSE_INSPECTION: "ACP_RULE_SET_RESPONSE_INSPECTION",
|
|
381
382
|
AND_STATEMENT: "AND_STATEMENT",
|
|
382
383
|
ASSOCIABLE_RESOURCE: "ASSOCIABLE_RESOURCE",
|
|
383
384
|
ASSOCIATED_RESOURCE_TYPE: "ASSOCIATED_RESOURCE_TYPE",
|
|
@@ -633,6 +633,70 @@ export interface CheckCapacityCommandOutput extends CheckCapacityResponse, __Met
|
|
|
633
633
|
* ],
|
|
634
634
|
* },
|
|
635
635
|
* },
|
|
636
|
+
* EnableRegexInPath: true || false,
|
|
637
|
+
* },
|
|
638
|
+
* AWSManagedRulesACFPRuleSet: { // AWSManagedRulesACFPRuleSet
|
|
639
|
+
* CreationPath: "STRING_VALUE", // required
|
|
640
|
+
* RegistrationPagePath: "STRING_VALUE", // required
|
|
641
|
+
* RequestInspection: { // RequestInspectionACFP
|
|
642
|
+
* PayloadType: "JSON" || "FORM_ENCODED", // required
|
|
643
|
+
* UsernameField: {
|
|
644
|
+
* Identifier: "STRING_VALUE", // required
|
|
645
|
+
* },
|
|
646
|
+
* PasswordField: {
|
|
647
|
+
* Identifier: "STRING_VALUE", // required
|
|
648
|
+
* },
|
|
649
|
+
* EmailField: { // EmailField
|
|
650
|
+
* Identifier: "STRING_VALUE", // required
|
|
651
|
+
* },
|
|
652
|
+
* PhoneNumberFields: [ // PhoneNumberFields
|
|
653
|
+
* { // PhoneNumberField
|
|
654
|
+
* Identifier: "STRING_VALUE", // required
|
|
655
|
+
* },
|
|
656
|
+
* ],
|
|
657
|
+
* AddressFields: [ // AddressFields
|
|
658
|
+
* { // AddressField
|
|
659
|
+
* Identifier: "STRING_VALUE", // required
|
|
660
|
+
* },
|
|
661
|
+
* ],
|
|
662
|
+
* },
|
|
663
|
+
* ResponseInspection: {
|
|
664
|
+
* StatusCode: {
|
|
665
|
+
* SuccessCodes: [ // required
|
|
666
|
+
* Number("int"),
|
|
667
|
+
* ],
|
|
668
|
+
* FailureCodes: [ // required
|
|
669
|
+
* Number("int"),
|
|
670
|
+
* ],
|
|
671
|
+
* },
|
|
672
|
+
* Header: {
|
|
673
|
+
* Name: "STRING_VALUE", // required
|
|
674
|
+
* SuccessValues: [ // required
|
|
675
|
+
* "STRING_VALUE",
|
|
676
|
+
* ],
|
|
677
|
+
* FailureValues: [ // required
|
|
678
|
+
* "STRING_VALUE",
|
|
679
|
+
* ],
|
|
680
|
+
* },
|
|
681
|
+
* BodyContains: {
|
|
682
|
+
* SuccessStrings: [ // required
|
|
683
|
+
* "STRING_VALUE",
|
|
684
|
+
* ],
|
|
685
|
+
* FailureStrings: [ // required
|
|
686
|
+
* "STRING_VALUE",
|
|
687
|
+
* ],
|
|
688
|
+
* },
|
|
689
|
+
* Json: {
|
|
690
|
+
* Identifier: "STRING_VALUE", // required
|
|
691
|
+
* SuccessValues: [ // required
|
|
692
|
+
* "STRING_VALUE",
|
|
693
|
+
* ],
|
|
694
|
+
* FailureValues: [ // required
|
|
695
|
+
* "STRING_VALUE",
|
|
696
|
+
* ],
|
|
697
|
+
* },
|
|
698
|
+
* },
|
|
699
|
+
* EnableRegexInPath: true || false,
|
|
636
700
|
* },
|
|
637
701
|
* },
|
|
638
702
|
* ],
|
|
@@ -778,6 +842,66 @@ export interface CheckCapacityCommandOutput extends CheckCapacityResponse, __Met
|
|
|
778
842
|
* ],
|
|
779
843
|
* },
|
|
780
844
|
* },
|
|
845
|
+
* EnableRegexInPath: true || false,
|
|
846
|
+
* },
|
|
847
|
+
* AWSManagedRulesACFPRuleSet: {
|
|
848
|
+
* CreationPath: "STRING_VALUE", // required
|
|
849
|
+
* RegistrationPagePath: "STRING_VALUE", // required
|
|
850
|
+
* RequestInspection: {
|
|
851
|
+
* PayloadType: "JSON" || "FORM_ENCODED", // required
|
|
852
|
+
* UsernameField: "<UsernameField>",
|
|
853
|
+
* PasswordField: "<PasswordField>",
|
|
854
|
+
* EmailField: {
|
|
855
|
+
* Identifier: "STRING_VALUE", // required
|
|
856
|
+
* },
|
|
857
|
+
* PhoneNumberFields: [
|
|
858
|
+
* {
|
|
859
|
+
* Identifier: "STRING_VALUE", // required
|
|
860
|
+
* },
|
|
861
|
+
* ],
|
|
862
|
+
* AddressFields: [
|
|
863
|
+
* {
|
|
864
|
+
* Identifier: "STRING_VALUE", // required
|
|
865
|
+
* },
|
|
866
|
+
* ],
|
|
867
|
+
* },
|
|
868
|
+
* ResponseInspection: {
|
|
869
|
+
* StatusCode: {
|
|
870
|
+
* SuccessCodes: [ // required
|
|
871
|
+
* Number("int"),
|
|
872
|
+
* ],
|
|
873
|
+
* FailureCodes: [ // required
|
|
874
|
+
* Number("int"),
|
|
875
|
+
* ],
|
|
876
|
+
* },
|
|
877
|
+
* Header: {
|
|
878
|
+
* Name: "STRING_VALUE", // required
|
|
879
|
+
* SuccessValues: [ // required
|
|
880
|
+
* "STRING_VALUE",
|
|
881
|
+
* ],
|
|
882
|
+
* FailureValues: [ // required
|
|
883
|
+
* "STRING_VALUE",
|
|
884
|
+
* ],
|
|
885
|
+
* },
|
|
886
|
+
* BodyContains: {
|
|
887
|
+
* SuccessStrings: [ // required
|
|
888
|
+
* "STRING_VALUE",
|
|
889
|
+
* ],
|
|
890
|
+
* FailureStrings: [ // required
|
|
891
|
+
* "STRING_VALUE",
|
|
892
|
+
* ],
|
|
893
|
+
* },
|
|
894
|
+
* Json: {
|
|
895
|
+
* Identifier: "STRING_VALUE", // required
|
|
896
|
+
* SuccessValues: [ // required
|
|
897
|
+
* "STRING_VALUE",
|
|
898
|
+
* ],
|
|
899
|
+
* FailureValues: [ // required
|
|
900
|
+
* "STRING_VALUE",
|
|
901
|
+
* ],
|
|
902
|
+
* },
|
|
903
|
+
* },
|
|
904
|
+
* EnableRegexInPath: true || false,
|
|
781
905
|
* },
|
|
782
906
|
* },
|
|
783
907
|
* ],
|
|
@@ -626,6 +626,70 @@ export interface CreateRuleGroupCommandOutput extends CreateRuleGroupResponse, _
|
|
|
626
626
|
* ],
|
|
627
627
|
* },
|
|
628
628
|
* },
|
|
629
|
+
* EnableRegexInPath: true || false,
|
|
630
|
+
* },
|
|
631
|
+
* AWSManagedRulesACFPRuleSet: { // AWSManagedRulesACFPRuleSet
|
|
632
|
+
* CreationPath: "STRING_VALUE", // required
|
|
633
|
+
* RegistrationPagePath: "STRING_VALUE", // required
|
|
634
|
+
* RequestInspection: { // RequestInspectionACFP
|
|
635
|
+
* PayloadType: "JSON" || "FORM_ENCODED", // required
|
|
636
|
+
* UsernameField: {
|
|
637
|
+
* Identifier: "STRING_VALUE", // required
|
|
638
|
+
* },
|
|
639
|
+
* PasswordField: {
|
|
640
|
+
* Identifier: "STRING_VALUE", // required
|
|
641
|
+
* },
|
|
642
|
+
* EmailField: { // EmailField
|
|
643
|
+
* Identifier: "STRING_VALUE", // required
|
|
644
|
+
* },
|
|
645
|
+
* PhoneNumberFields: [ // PhoneNumberFields
|
|
646
|
+
* { // PhoneNumberField
|
|
647
|
+
* Identifier: "STRING_VALUE", // required
|
|
648
|
+
* },
|
|
649
|
+
* ],
|
|
650
|
+
* AddressFields: [ // AddressFields
|
|
651
|
+
* { // AddressField
|
|
652
|
+
* Identifier: "STRING_VALUE", // required
|
|
653
|
+
* },
|
|
654
|
+
* ],
|
|
655
|
+
* },
|
|
656
|
+
* ResponseInspection: {
|
|
657
|
+
* StatusCode: {
|
|
658
|
+
* SuccessCodes: [ // required
|
|
659
|
+
* Number("int"),
|
|
660
|
+
* ],
|
|
661
|
+
* FailureCodes: [ // required
|
|
662
|
+
* Number("int"),
|
|
663
|
+
* ],
|
|
664
|
+
* },
|
|
665
|
+
* Header: {
|
|
666
|
+
* Name: "STRING_VALUE", // required
|
|
667
|
+
* SuccessValues: [ // required
|
|
668
|
+
* "STRING_VALUE",
|
|
669
|
+
* ],
|
|
670
|
+
* FailureValues: [ // required
|
|
671
|
+
* "STRING_VALUE",
|
|
672
|
+
* ],
|
|
673
|
+
* },
|
|
674
|
+
* BodyContains: {
|
|
675
|
+
* SuccessStrings: [ // required
|
|
676
|
+
* "STRING_VALUE",
|
|
677
|
+
* ],
|
|
678
|
+
* FailureStrings: [ // required
|
|
679
|
+
* "STRING_VALUE",
|
|
680
|
+
* ],
|
|
681
|
+
* },
|
|
682
|
+
* Json: {
|
|
683
|
+
* Identifier: "STRING_VALUE", // required
|
|
684
|
+
* SuccessValues: [ // required
|
|
685
|
+
* "STRING_VALUE",
|
|
686
|
+
* ],
|
|
687
|
+
* FailureValues: [ // required
|
|
688
|
+
* "STRING_VALUE",
|
|
689
|
+
* ],
|
|
690
|
+
* },
|
|
691
|
+
* },
|
|
692
|
+
* EnableRegexInPath: true || false,
|
|
629
693
|
* },
|
|
630
694
|
* },
|
|
631
695
|
* ],
|
|
@@ -771,6 +835,66 @@ export interface CreateRuleGroupCommandOutput extends CreateRuleGroupResponse, _
|
|
|
771
835
|
* ],
|
|
772
836
|
* },
|
|
773
837
|
* },
|
|
838
|
+
* EnableRegexInPath: true || false,
|
|
839
|
+
* },
|
|
840
|
+
* AWSManagedRulesACFPRuleSet: {
|
|
841
|
+
* CreationPath: "STRING_VALUE", // required
|
|
842
|
+
* RegistrationPagePath: "STRING_VALUE", // required
|
|
843
|
+
* RequestInspection: {
|
|
844
|
+
* PayloadType: "JSON" || "FORM_ENCODED", // required
|
|
845
|
+
* UsernameField: "<UsernameField>",
|
|
846
|
+
* PasswordField: "<PasswordField>",
|
|
847
|
+
* EmailField: {
|
|
848
|
+
* Identifier: "STRING_VALUE", // required
|
|
849
|
+
* },
|
|
850
|
+
* PhoneNumberFields: [
|
|
851
|
+
* {
|
|
852
|
+
* Identifier: "STRING_VALUE", // required
|
|
853
|
+
* },
|
|
854
|
+
* ],
|
|
855
|
+
* AddressFields: [
|
|
856
|
+
* {
|
|
857
|
+
* Identifier: "STRING_VALUE", // required
|
|
858
|
+
* },
|
|
859
|
+
* ],
|
|
860
|
+
* },
|
|
861
|
+
* ResponseInspection: {
|
|
862
|
+
* StatusCode: {
|
|
863
|
+
* SuccessCodes: [ // required
|
|
864
|
+
* Number("int"),
|
|
865
|
+
* ],
|
|
866
|
+
* FailureCodes: [ // required
|
|
867
|
+
* Number("int"),
|
|
868
|
+
* ],
|
|
869
|
+
* },
|
|
870
|
+
* Header: {
|
|
871
|
+
* Name: "STRING_VALUE", // required
|
|
872
|
+
* SuccessValues: [ // required
|
|
873
|
+
* "STRING_VALUE",
|
|
874
|
+
* ],
|
|
875
|
+
* FailureValues: [ // required
|
|
876
|
+
* "STRING_VALUE",
|
|
877
|
+
* ],
|
|
878
|
+
* },
|
|
879
|
+
* BodyContains: {
|
|
880
|
+
* SuccessStrings: [ // required
|
|
881
|
+
* "STRING_VALUE",
|
|
882
|
+
* ],
|
|
883
|
+
* FailureStrings: [ // required
|
|
884
|
+
* "STRING_VALUE",
|
|
885
|
+
* ],
|
|
886
|
+
* },
|
|
887
|
+
* Json: {
|
|
888
|
+
* Identifier: "STRING_VALUE", // required
|
|
889
|
+
* SuccessValues: [ // required
|
|
890
|
+
* "STRING_VALUE",
|
|
891
|
+
* ],
|
|
892
|
+
* FailureValues: [ // required
|
|
893
|
+
* "STRING_VALUE",
|
|
894
|
+
* ],
|
|
895
|
+
* },
|
|
896
|
+
* },
|
|
897
|
+
* EnableRegexInPath: true || false,
|
|
774
898
|
* },
|
|
775
899
|
* },
|
|
776
900
|
* ],
|
|
@@ -629,6 +629,70 @@ export interface CreateWebACLCommandOutput extends CreateWebACLResponse, __Metad
|
|
|
629
629
|
* ],
|
|
630
630
|
* },
|
|
631
631
|
* },
|
|
632
|
+
* EnableRegexInPath: true || false,
|
|
633
|
+
* },
|
|
634
|
+
* AWSManagedRulesACFPRuleSet: { // AWSManagedRulesACFPRuleSet
|
|
635
|
+
* CreationPath: "STRING_VALUE", // required
|
|
636
|
+
* RegistrationPagePath: "STRING_VALUE", // required
|
|
637
|
+
* RequestInspection: { // RequestInspectionACFP
|
|
638
|
+
* PayloadType: "JSON" || "FORM_ENCODED", // required
|
|
639
|
+
* UsernameField: {
|
|
640
|
+
* Identifier: "STRING_VALUE", // required
|
|
641
|
+
* },
|
|
642
|
+
* PasswordField: {
|
|
643
|
+
* Identifier: "STRING_VALUE", // required
|
|
644
|
+
* },
|
|
645
|
+
* EmailField: { // EmailField
|
|
646
|
+
* Identifier: "STRING_VALUE", // required
|
|
647
|
+
* },
|
|
648
|
+
* PhoneNumberFields: [ // PhoneNumberFields
|
|
649
|
+
* { // PhoneNumberField
|
|
650
|
+
* Identifier: "STRING_VALUE", // required
|
|
651
|
+
* },
|
|
652
|
+
* ],
|
|
653
|
+
* AddressFields: [ // AddressFields
|
|
654
|
+
* { // AddressField
|
|
655
|
+
* Identifier: "STRING_VALUE", // required
|
|
656
|
+
* },
|
|
657
|
+
* ],
|
|
658
|
+
* },
|
|
659
|
+
* ResponseInspection: {
|
|
660
|
+
* StatusCode: {
|
|
661
|
+
* SuccessCodes: [ // required
|
|
662
|
+
* Number("int"),
|
|
663
|
+
* ],
|
|
664
|
+
* FailureCodes: [ // required
|
|
665
|
+
* Number("int"),
|
|
666
|
+
* ],
|
|
667
|
+
* },
|
|
668
|
+
* Header: {
|
|
669
|
+
* Name: "STRING_VALUE", // required
|
|
670
|
+
* SuccessValues: [ // required
|
|
671
|
+
* "STRING_VALUE",
|
|
672
|
+
* ],
|
|
673
|
+
* FailureValues: [ // required
|
|
674
|
+
* "STRING_VALUE",
|
|
675
|
+
* ],
|
|
676
|
+
* },
|
|
677
|
+
* BodyContains: {
|
|
678
|
+
* SuccessStrings: [ // required
|
|
679
|
+
* "STRING_VALUE",
|
|
680
|
+
* ],
|
|
681
|
+
* FailureStrings: [ // required
|
|
682
|
+
* "STRING_VALUE",
|
|
683
|
+
* ],
|
|
684
|
+
* },
|
|
685
|
+
* Json: {
|
|
686
|
+
* Identifier: "STRING_VALUE", // required
|
|
687
|
+
* SuccessValues: [ // required
|
|
688
|
+
* "STRING_VALUE",
|
|
689
|
+
* ],
|
|
690
|
+
* FailureValues: [ // required
|
|
691
|
+
* "STRING_VALUE",
|
|
692
|
+
* ],
|
|
693
|
+
* },
|
|
694
|
+
* },
|
|
695
|
+
* EnableRegexInPath: true || false,
|
|
632
696
|
* },
|
|
633
697
|
* },
|
|
634
698
|
* ],
|
|
@@ -766,6 +830,66 @@ export interface CreateWebACLCommandOutput extends CreateWebACLResponse, __Metad
|
|
|
766
830
|
* ],
|
|
767
831
|
* },
|
|
768
832
|
* },
|
|
833
|
+
* EnableRegexInPath: true || false,
|
|
834
|
+
* },
|
|
835
|
+
* AWSManagedRulesACFPRuleSet: {
|
|
836
|
+
* CreationPath: "STRING_VALUE", // required
|
|
837
|
+
* RegistrationPagePath: "STRING_VALUE", // required
|
|
838
|
+
* RequestInspection: {
|
|
839
|
+
* PayloadType: "JSON" || "FORM_ENCODED", // required
|
|
840
|
+
* UsernameField: "<UsernameField>",
|
|
841
|
+
* PasswordField: "<PasswordField>",
|
|
842
|
+
* EmailField: {
|
|
843
|
+
* Identifier: "STRING_VALUE", // required
|
|
844
|
+
* },
|
|
845
|
+
* PhoneNumberFields: [
|
|
846
|
+
* {
|
|
847
|
+
* Identifier: "STRING_VALUE", // required
|
|
848
|
+
* },
|
|
849
|
+
* ],
|
|
850
|
+
* AddressFields: [
|
|
851
|
+
* {
|
|
852
|
+
* Identifier: "STRING_VALUE", // required
|
|
853
|
+
* },
|
|
854
|
+
* ],
|
|
855
|
+
* },
|
|
856
|
+
* ResponseInspection: {
|
|
857
|
+
* StatusCode: {
|
|
858
|
+
* SuccessCodes: [ // required
|
|
859
|
+
* Number("int"),
|
|
860
|
+
* ],
|
|
861
|
+
* FailureCodes: [ // required
|
|
862
|
+
* Number("int"),
|
|
863
|
+
* ],
|
|
864
|
+
* },
|
|
865
|
+
* Header: {
|
|
866
|
+
* Name: "STRING_VALUE", // required
|
|
867
|
+
* SuccessValues: [ // required
|
|
868
|
+
* "STRING_VALUE",
|
|
869
|
+
* ],
|
|
870
|
+
* FailureValues: [ // required
|
|
871
|
+
* "STRING_VALUE",
|
|
872
|
+
* ],
|
|
873
|
+
* },
|
|
874
|
+
* BodyContains: {
|
|
875
|
+
* SuccessStrings: [ // required
|
|
876
|
+
* "STRING_VALUE",
|
|
877
|
+
* ],
|
|
878
|
+
* FailureStrings: [ // required
|
|
879
|
+
* "STRING_VALUE",
|
|
880
|
+
* ],
|
|
881
|
+
* },
|
|
882
|
+
* Json: {
|
|
883
|
+
* Identifier: "STRING_VALUE", // required
|
|
884
|
+
* SuccessValues: [ // required
|
|
885
|
+
* "STRING_VALUE",
|
|
886
|
+
* ],
|
|
887
|
+
* FailureValues: [ // required
|
|
888
|
+
* "STRING_VALUE",
|
|
889
|
+
* ],
|
|
890
|
+
* },
|
|
891
|
+
* },
|
|
892
|
+
* EnableRegexInPath: true || false,
|
|
769
893
|
* },
|
|
770
894
|
* },
|
|
771
895
|
* ],
|
|
@@ -635,6 +635,70 @@ export interface GetRuleGroupCommandOutput extends GetRuleGroupResponse, __Metad
|
|
|
635
635
|
* // ],
|
|
636
636
|
* // },
|
|
637
637
|
* // },
|
|
638
|
+
* // EnableRegexInPath: true || false,
|
|
639
|
+
* // },
|
|
640
|
+
* // AWSManagedRulesACFPRuleSet: { // AWSManagedRulesACFPRuleSet
|
|
641
|
+
* // CreationPath: "STRING_VALUE", // required
|
|
642
|
+
* // RegistrationPagePath: "STRING_VALUE", // required
|
|
643
|
+
* // RequestInspection: { // RequestInspectionACFP
|
|
644
|
+
* // PayloadType: "JSON" || "FORM_ENCODED", // required
|
|
645
|
+
* // UsernameField: {
|
|
646
|
+
* // Identifier: "STRING_VALUE", // required
|
|
647
|
+
* // },
|
|
648
|
+
* // PasswordField: {
|
|
649
|
+
* // Identifier: "STRING_VALUE", // required
|
|
650
|
+
* // },
|
|
651
|
+
* // EmailField: { // EmailField
|
|
652
|
+
* // Identifier: "STRING_VALUE", // required
|
|
653
|
+
* // },
|
|
654
|
+
* // PhoneNumberFields: [ // PhoneNumberFields
|
|
655
|
+
* // { // PhoneNumberField
|
|
656
|
+
* // Identifier: "STRING_VALUE", // required
|
|
657
|
+
* // },
|
|
658
|
+
* // ],
|
|
659
|
+
* // AddressFields: [ // AddressFields
|
|
660
|
+
* // { // AddressField
|
|
661
|
+
* // Identifier: "STRING_VALUE", // required
|
|
662
|
+
* // },
|
|
663
|
+
* // ],
|
|
664
|
+
* // },
|
|
665
|
+
* // ResponseInspection: {
|
|
666
|
+
* // StatusCode: {
|
|
667
|
+
* // SuccessCodes: [ // required
|
|
668
|
+
* // Number("int"),
|
|
669
|
+
* // ],
|
|
670
|
+
* // FailureCodes: [ // required
|
|
671
|
+
* // Number("int"),
|
|
672
|
+
* // ],
|
|
673
|
+
* // },
|
|
674
|
+
* // Header: {
|
|
675
|
+
* // Name: "STRING_VALUE", // required
|
|
676
|
+
* // SuccessValues: [ // required
|
|
677
|
+
* // "STRING_VALUE",
|
|
678
|
+
* // ],
|
|
679
|
+
* // FailureValues: [ // required
|
|
680
|
+
* // "STRING_VALUE",
|
|
681
|
+
* // ],
|
|
682
|
+
* // },
|
|
683
|
+
* // BodyContains: {
|
|
684
|
+
* // SuccessStrings: [ // required
|
|
685
|
+
* // "STRING_VALUE",
|
|
686
|
+
* // ],
|
|
687
|
+
* // FailureStrings: [ // required
|
|
688
|
+
* // "STRING_VALUE",
|
|
689
|
+
* // ],
|
|
690
|
+
* // },
|
|
691
|
+
* // Json: {
|
|
692
|
+
* // Identifier: "STRING_VALUE", // required
|
|
693
|
+
* // SuccessValues: [ // required
|
|
694
|
+
* // "STRING_VALUE",
|
|
695
|
+
* // ],
|
|
696
|
+
* // FailureValues: [ // required
|
|
697
|
+
* // "STRING_VALUE",
|
|
698
|
+
* // ],
|
|
699
|
+
* // },
|
|
700
|
+
* // },
|
|
701
|
+
* // EnableRegexInPath: true || false,
|
|
638
702
|
* // },
|
|
639
703
|
* // },
|
|
640
704
|
* // ],
|
|
@@ -780,6 +844,66 @@ export interface GetRuleGroupCommandOutput extends GetRuleGroupResponse, __Metad
|
|
|
780
844
|
* // ],
|
|
781
845
|
* // },
|
|
782
846
|
* // },
|
|
847
|
+
* // EnableRegexInPath: true || false,
|
|
848
|
+
* // },
|
|
849
|
+
* // AWSManagedRulesACFPRuleSet: {
|
|
850
|
+
* // CreationPath: "STRING_VALUE", // required
|
|
851
|
+
* // RegistrationPagePath: "STRING_VALUE", // required
|
|
852
|
+
* // RequestInspection: {
|
|
853
|
+
* // PayloadType: "JSON" || "FORM_ENCODED", // required
|
|
854
|
+
* // UsernameField: "<UsernameField>",
|
|
855
|
+
* // PasswordField: "<PasswordField>",
|
|
856
|
+
* // EmailField: {
|
|
857
|
+
* // Identifier: "STRING_VALUE", // required
|
|
858
|
+
* // },
|
|
859
|
+
* // PhoneNumberFields: [
|
|
860
|
+
* // {
|
|
861
|
+
* // Identifier: "STRING_VALUE", // required
|
|
862
|
+
* // },
|
|
863
|
+
* // ],
|
|
864
|
+
* // AddressFields: [
|
|
865
|
+
* // {
|
|
866
|
+
* // Identifier: "STRING_VALUE", // required
|
|
867
|
+
* // },
|
|
868
|
+
* // ],
|
|
869
|
+
* // },
|
|
870
|
+
* // ResponseInspection: {
|
|
871
|
+
* // StatusCode: {
|
|
872
|
+
* // SuccessCodes: [ // required
|
|
873
|
+
* // Number("int"),
|
|
874
|
+
* // ],
|
|
875
|
+
* // FailureCodes: [ // required
|
|
876
|
+
* // Number("int"),
|
|
877
|
+
* // ],
|
|
878
|
+
* // },
|
|
879
|
+
* // Header: {
|
|
880
|
+
* // Name: "STRING_VALUE", // required
|
|
881
|
+
* // SuccessValues: [ // required
|
|
882
|
+
* // "STRING_VALUE",
|
|
883
|
+
* // ],
|
|
884
|
+
* // FailureValues: [ // required
|
|
885
|
+
* // "STRING_VALUE",
|
|
886
|
+
* // ],
|
|
887
|
+
* // },
|
|
888
|
+
* // BodyContains: {
|
|
889
|
+
* // SuccessStrings: [ // required
|
|
890
|
+
* // "STRING_VALUE",
|
|
891
|
+
* // ],
|
|
892
|
+
* // FailureStrings: [ // required
|
|
893
|
+
* // "STRING_VALUE",
|
|
894
|
+
* // ],
|
|
895
|
+
* // },
|
|
896
|
+
* // Json: {
|
|
897
|
+
* // Identifier: "STRING_VALUE", // required
|
|
898
|
+
* // SuccessValues: [ // required
|
|
899
|
+
* // "STRING_VALUE",
|
|
900
|
+
* // ],
|
|
901
|
+
* // FailureValues: [ // required
|
|
902
|
+
* // "STRING_VALUE",
|
|
903
|
+
* // ],
|
|
904
|
+
* // },
|
|
905
|
+
* // },
|
|
906
|
+
* // EnableRegexInPath: true || false,
|
|
783
907
|
* // },
|
|
784
908
|
* // },
|
|
785
909
|
* // ],
|