aws-sdk-wafv2 1.42.0 → 1.44.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.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +10 -0
 - data/VERSION +1 -1
 - data/lib/aws-sdk-wafv2/client.rb +1139 -20
 - data/lib/aws-sdk-wafv2/client_api.rb +45 -0
 - data/lib/aws-sdk-wafv2/endpoint_parameters.rb +66 -0
 - data/lib/aws-sdk-wafv2/endpoint_provider.rb +111 -0
 - data/lib/aws-sdk-wafv2/endpoints.rb +687 -0
 - data/lib/aws-sdk-wafv2/plugins/endpoints.rb +164 -0
 - data/lib/aws-sdk-wafv2/types.rb +2697 -82
 - data/lib/aws-sdk-wafv2.rb +5 -1
 - metadata +8 -4
 
    
        data/lib/aws-sdk-wafv2/client.rb
    CHANGED
    
    | 
         @@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb' 
     | 
|
| 
       30 
30 
     | 
    
         
             
            require 'aws-sdk-core/plugins/checksum_algorithm.rb'
         
     | 
| 
       31 
31 
     | 
    
         
             
            require 'aws-sdk-core/plugins/defaults_mode.rb'
         
     | 
| 
       32 
32 
     | 
    
         
             
            require 'aws-sdk-core/plugins/recursion_detection.rb'
         
     | 
| 
       33 
     | 
    
         
            -
            require 'aws-sdk-core/plugins/ 
     | 
| 
      
 33 
     | 
    
         
            +
            require 'aws-sdk-core/plugins/sign.rb'
         
     | 
| 
       34 
34 
     | 
    
         
             
            require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
         
     | 
| 
       35 
35 
     | 
    
         | 
| 
       36 
36 
     | 
    
         
             
            Aws::Plugins::GlobalConfiguration.add_identifier(:wafv2)
         
     | 
| 
         @@ -79,8 +79,9 @@ module Aws::WAFV2 
     | 
|
| 
       79 
79 
     | 
    
         
             
                add_plugin(Aws::Plugins::ChecksumAlgorithm)
         
     | 
| 
       80 
80 
     | 
    
         
             
                add_plugin(Aws::Plugins::DefaultsMode)
         
     | 
| 
       81 
81 
     | 
    
         
             
                add_plugin(Aws::Plugins::RecursionDetection)
         
     | 
| 
       82 
     | 
    
         
            -
                add_plugin(Aws::Plugins:: 
     | 
| 
      
 82 
     | 
    
         
            +
                add_plugin(Aws::Plugins::Sign)
         
     | 
| 
       83 
83 
     | 
    
         
             
                add_plugin(Aws::Plugins::Protocols::JsonRpc)
         
     | 
| 
      
 84 
     | 
    
         
            +
                add_plugin(Aws::WAFV2::Plugins::Endpoints)
         
     | 
| 
       84 
85 
     | 
    
         | 
| 
       85 
86 
     | 
    
         
             
                # @overload initialize(options)
         
     | 
| 
       86 
87 
     | 
    
         
             
                #   @param [Hash] options
         
     | 
| 
         @@ -297,6 +298,19 @@ module Aws::WAFV2 
     | 
|
| 
       297 
298 
     | 
    
         
             
                #     ** Please note ** When response stubbing is enabled, no HTTP
         
     | 
| 
       298 
299 
     | 
    
         
             
                #     requests are made, and retries are disabled.
         
     | 
| 
       299 
300 
     | 
    
         
             
                #
         
     | 
| 
      
 301 
     | 
    
         
            +
                #   @option options [Aws::TokenProvider] :token_provider
         
     | 
| 
      
 302 
     | 
    
         
            +
                #     A Bearer Token Provider. This can be an instance of any one of the
         
     | 
| 
      
 303 
     | 
    
         
            +
                #     following classes:
         
     | 
| 
      
 304 
     | 
    
         
            +
                #
         
     | 
| 
      
 305 
     | 
    
         
            +
                #     * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
         
     | 
| 
      
 306 
     | 
    
         
            +
                #       tokens.
         
     | 
| 
      
 307 
     | 
    
         
            +
                #
         
     | 
| 
      
 308 
     | 
    
         
            +
                #     * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
         
     | 
| 
      
 309 
     | 
    
         
            +
                #       access token generated from `aws login`.
         
     | 
| 
      
 310 
     | 
    
         
            +
                #
         
     | 
| 
      
 311 
     | 
    
         
            +
                #     When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
         
     | 
| 
      
 312 
     | 
    
         
            +
                #     will be used to search for tokens configured for your profile in shared configuration files.
         
     | 
| 
      
 313 
     | 
    
         
            +
                #
         
     | 
| 
       300 
314 
     | 
    
         
             
                #   @option options [Boolean] :use_dualstack_endpoint
         
     | 
| 
       301 
315 
     | 
    
         
             
                #     When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
         
     | 
| 
       302 
316 
     | 
    
         
             
                #     will be used if available.
         
     | 
| 
         @@ -310,6 +324,9 @@ module Aws::WAFV2 
     | 
|
| 
       310 
324 
     | 
    
         
             
                #     When `true`, request parameters are validated before
         
     | 
| 
       311 
325 
     | 
    
         
             
                #     sending the request.
         
     | 
| 
       312 
326 
     | 
    
         
             
                #
         
     | 
| 
      
 327 
     | 
    
         
            +
                #   @option options [Aws::WAFV2::EndpointProvider] :endpoint_provider
         
     | 
| 
      
 328 
     | 
    
         
            +
                #     The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::WAFV2::EndpointParameters`
         
     | 
| 
      
 329 
     | 
    
         
            +
                #
         
     | 
| 
       313 
330 
     | 
    
         
             
                #   @option options [URI::HTTP,String] :http_proxy A proxy to send
         
     | 
| 
       314 
331 
     | 
    
         
             
                #     requests through.  Formatted like 'http://proxy.com:123'.
         
     | 
| 
       315 
332 
     | 
    
         
             
                #
         
     | 
| 
         @@ -721,6 +738,65 @@ module Aws::WAFV2 
     | 
|
| 
       721 
738 
     | 
    
         
             
                #                 name: "EntityName", # required
         
     | 
| 
       722 
739 
     | 
    
         
             
                #               },
         
     | 
| 
       723 
740 
     | 
    
         
             
                #             ],
         
     | 
| 
      
 741 
     | 
    
         
            +
                #             rule_action_overrides: [
         
     | 
| 
      
 742 
     | 
    
         
            +
                #               {
         
     | 
| 
      
 743 
     | 
    
         
            +
                #                 name: "EntityName", # required
         
     | 
| 
      
 744 
     | 
    
         
            +
                #                 action_to_use: { # required
         
     | 
| 
      
 745 
     | 
    
         
            +
                #                   block: {
         
     | 
| 
      
 746 
     | 
    
         
            +
                #                     custom_response: {
         
     | 
| 
      
 747 
     | 
    
         
            +
                #                       response_code: 1, # required
         
     | 
| 
      
 748 
     | 
    
         
            +
                #                       custom_response_body_key: "EntityName",
         
     | 
| 
      
 749 
     | 
    
         
            +
                #                       response_headers: [
         
     | 
| 
      
 750 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 751 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 752 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 753 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 754 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 755 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 756 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 757 
     | 
    
         
            +
                #                   allow: {
         
     | 
| 
      
 758 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 759 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 760 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 761 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 762 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 763 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 764 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 765 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 766 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 767 
     | 
    
         
            +
                #                   count: {
         
     | 
| 
      
 768 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 769 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 770 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 771 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 772 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 773 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 774 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 775 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 776 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 777 
     | 
    
         
            +
                #                   captcha: {
         
     | 
| 
      
 778 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 779 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 780 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 781 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 782 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 783 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 784 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 785 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 786 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 787 
     | 
    
         
            +
                #                   challenge: {
         
     | 
| 
      
 788 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 789 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 790 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 791 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 792 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 793 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 794 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 795 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 796 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 797 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 798 
     | 
    
         
            +
                #               },
         
     | 
| 
      
 799 
     | 
    
         
            +
                #             ],
         
     | 
| 
       724 
800 
     | 
    
         
             
                #           },
         
     | 
| 
       725 
801 
     | 
    
         
             
                #           ip_set_reference_statement: {
         
     | 
| 
       726 
802 
     | 
    
         
             
                #             arn: "ResourceArn", # required
         
     | 
| 
         @@ -840,6 +916,68 @@ module Aws::WAFV2 
     | 
|
| 
       840 
916 
     | 
    
         
             
                #                 password_field: {
         
     | 
| 
       841 
917 
     | 
    
         
             
                #                   identifier: "FieldIdentifier", # required
         
     | 
| 
       842 
918 
     | 
    
         
             
                #                 },
         
     | 
| 
      
 919 
     | 
    
         
            +
                #                 aws_managed_rules_bot_control_rule_set: {
         
     | 
| 
      
 920 
     | 
    
         
            +
                #                   inspection_level: "COMMON", # required, accepts COMMON, TARGETED
         
     | 
| 
      
 921 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 922 
     | 
    
         
            +
                #               },
         
     | 
| 
      
 923 
     | 
    
         
            +
                #             ],
         
     | 
| 
      
 924 
     | 
    
         
            +
                #             rule_action_overrides: [
         
     | 
| 
      
 925 
     | 
    
         
            +
                #               {
         
     | 
| 
      
 926 
     | 
    
         
            +
                #                 name: "EntityName", # required
         
     | 
| 
      
 927 
     | 
    
         
            +
                #                 action_to_use: { # required
         
     | 
| 
      
 928 
     | 
    
         
            +
                #                   block: {
         
     | 
| 
      
 929 
     | 
    
         
            +
                #                     custom_response: {
         
     | 
| 
      
 930 
     | 
    
         
            +
                #                       response_code: 1, # required
         
     | 
| 
      
 931 
     | 
    
         
            +
                #                       custom_response_body_key: "EntityName",
         
     | 
| 
      
 932 
     | 
    
         
            +
                #                       response_headers: [
         
     | 
| 
      
 933 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 934 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 935 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 936 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 937 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 938 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 939 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 940 
     | 
    
         
            +
                #                   allow: {
         
     | 
| 
      
 941 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 942 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 943 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 944 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 945 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 946 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 947 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 948 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 949 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 950 
     | 
    
         
            +
                #                   count: {
         
     | 
| 
      
 951 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 952 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 953 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 954 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 955 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 956 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 957 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 958 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 959 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 960 
     | 
    
         
            +
                #                   captcha: {
         
     | 
| 
      
 961 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 962 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 963 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 964 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 965 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 966 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 967 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 968 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 969 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 970 
     | 
    
         
            +
                #                   challenge: {
         
     | 
| 
      
 971 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 972 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 973 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 974 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 975 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 976 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 977 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 978 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 979 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 980 
     | 
    
         
            +
                #                 },
         
     | 
| 
       843 
981 
     | 
    
         
             
                #               },
         
     | 
| 
       844 
982 
     | 
    
         
             
                #             ],
         
     | 
| 
       845 
983 
     | 
    
         
             
                #           },
         
     | 
| 
         @@ -949,6 +1087,16 @@ module Aws::WAFV2 
     | 
|
| 
       949 
1087 
     | 
    
         
             
                #               ],
         
     | 
| 
       950 
1088 
     | 
    
         
             
                #             },
         
     | 
| 
       951 
1089 
     | 
    
         
             
                #           },
         
     | 
| 
      
 1090 
     | 
    
         
            +
                #           challenge: {
         
     | 
| 
      
 1091 
     | 
    
         
            +
                #             custom_request_handling: {
         
     | 
| 
      
 1092 
     | 
    
         
            +
                #               insert_headers: [ # required
         
     | 
| 
      
 1093 
     | 
    
         
            +
                #                 {
         
     | 
| 
      
 1094 
     | 
    
         
            +
                #                   name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 1095 
     | 
    
         
            +
                #                   value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 1096 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 1097 
     | 
    
         
            +
                #               ],
         
     | 
| 
      
 1098 
     | 
    
         
            +
                #             },
         
     | 
| 
      
 1099 
     | 
    
         
            +
                #           },
         
     | 
| 
       952 
1100 
     | 
    
         
             
                #         },
         
     | 
| 
       953 
1101 
     | 
    
         
             
                #         override_action: {
         
     | 
| 
       954 
1102 
     | 
    
         
             
                #           count: {
         
     | 
| 
         @@ -979,6 +1127,11 @@ module Aws::WAFV2 
     | 
|
| 
       979 
1127 
     | 
    
         
             
                #             immunity_time: 1, # required
         
     | 
| 
       980 
1128 
     | 
    
         
             
                #           },
         
     | 
| 
       981 
1129 
     | 
    
         
             
                #         },
         
     | 
| 
      
 1130 
     | 
    
         
            +
                #         challenge_config: {
         
     | 
| 
      
 1131 
     | 
    
         
            +
                #           immunity_time_property: {
         
     | 
| 
      
 1132 
     | 
    
         
            +
                #             immunity_time: 1, # required
         
     | 
| 
      
 1133 
     | 
    
         
            +
                #           },
         
     | 
| 
      
 1134 
     | 
    
         
            +
                #         },
         
     | 
| 
       982 
1135 
     | 
    
         
             
                #       },
         
     | 
| 
       983 
1136 
     | 
    
         
             
                #     ],
         
     | 
| 
       984 
1137 
     | 
    
         
             
                #   })
         
     | 
| 
         @@ -1520,6 +1673,65 @@ module Aws::WAFV2 
     | 
|
| 
       1520 
1673 
     | 
    
         
             
                #                 name: "EntityName", # required
         
     | 
| 
       1521 
1674 
     | 
    
         
             
                #               },
         
     | 
| 
       1522 
1675 
     | 
    
         
             
                #             ],
         
     | 
| 
      
 1676 
     | 
    
         
            +
                #             rule_action_overrides: [
         
     | 
| 
      
 1677 
     | 
    
         
            +
                #               {
         
     | 
| 
      
 1678 
     | 
    
         
            +
                #                 name: "EntityName", # required
         
     | 
| 
      
 1679 
     | 
    
         
            +
                #                 action_to_use: { # required
         
     | 
| 
      
 1680 
     | 
    
         
            +
                #                   block: {
         
     | 
| 
      
 1681 
     | 
    
         
            +
                #                     custom_response: {
         
     | 
| 
      
 1682 
     | 
    
         
            +
                #                       response_code: 1, # required
         
     | 
| 
      
 1683 
     | 
    
         
            +
                #                       custom_response_body_key: "EntityName",
         
     | 
| 
      
 1684 
     | 
    
         
            +
                #                       response_headers: [
         
     | 
| 
      
 1685 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 1686 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 1687 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 1688 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 1689 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 1690 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 1691 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 1692 
     | 
    
         
            +
                #                   allow: {
         
     | 
| 
      
 1693 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 1694 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 1695 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 1696 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 1697 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 1698 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 1699 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 1700 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 1701 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 1702 
     | 
    
         
            +
                #                   count: {
         
     | 
| 
      
 1703 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 1704 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 1705 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 1706 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 1707 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 1708 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 1709 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 1710 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 1711 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 1712 
     | 
    
         
            +
                #                   captcha: {
         
     | 
| 
      
 1713 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 1714 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 1715 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 1716 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 1717 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 1718 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 1719 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 1720 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 1721 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 1722 
     | 
    
         
            +
                #                   challenge: {
         
     | 
| 
      
 1723 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 1724 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 1725 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 1726 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 1727 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 1728 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 1729 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 1730 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 1731 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 1732 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 1733 
     | 
    
         
            +
                #               },
         
     | 
| 
      
 1734 
     | 
    
         
            +
                #             ],
         
     | 
| 
       1523 
1735 
     | 
    
         
             
                #           },
         
     | 
| 
       1524 
1736 
     | 
    
         
             
                #           ip_set_reference_statement: {
         
     | 
| 
       1525 
1737 
     | 
    
         
             
                #             arn: "ResourceArn", # required
         
     | 
| 
         @@ -1639,6 +1851,68 @@ module Aws::WAFV2 
     | 
|
| 
       1639 
1851 
     | 
    
         
             
                #                 password_field: {
         
     | 
| 
       1640 
1852 
     | 
    
         
             
                #                   identifier: "FieldIdentifier", # required
         
     | 
| 
       1641 
1853 
     | 
    
         
             
                #                 },
         
     | 
| 
      
 1854 
     | 
    
         
            +
                #                 aws_managed_rules_bot_control_rule_set: {
         
     | 
| 
      
 1855 
     | 
    
         
            +
                #                   inspection_level: "COMMON", # required, accepts COMMON, TARGETED
         
     | 
| 
      
 1856 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 1857 
     | 
    
         
            +
                #               },
         
     | 
| 
      
 1858 
     | 
    
         
            +
                #             ],
         
     | 
| 
      
 1859 
     | 
    
         
            +
                #             rule_action_overrides: [
         
     | 
| 
      
 1860 
     | 
    
         
            +
                #               {
         
     | 
| 
      
 1861 
     | 
    
         
            +
                #                 name: "EntityName", # required
         
     | 
| 
      
 1862 
     | 
    
         
            +
                #                 action_to_use: { # required
         
     | 
| 
      
 1863 
     | 
    
         
            +
                #                   block: {
         
     | 
| 
      
 1864 
     | 
    
         
            +
                #                     custom_response: {
         
     | 
| 
      
 1865 
     | 
    
         
            +
                #                       response_code: 1, # required
         
     | 
| 
      
 1866 
     | 
    
         
            +
                #                       custom_response_body_key: "EntityName",
         
     | 
| 
      
 1867 
     | 
    
         
            +
                #                       response_headers: [
         
     | 
| 
      
 1868 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 1869 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 1870 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 1871 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 1872 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 1873 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 1874 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 1875 
     | 
    
         
            +
                #                   allow: {
         
     | 
| 
      
 1876 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 1877 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 1878 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 1879 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 1880 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 1881 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 1882 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 1883 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 1884 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 1885 
     | 
    
         
            +
                #                   count: {
         
     | 
| 
      
 1886 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 1887 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 1888 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 1889 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 1890 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 1891 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 1892 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 1893 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 1894 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 1895 
     | 
    
         
            +
                #                   captcha: {
         
     | 
| 
      
 1896 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 1897 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 1898 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 1899 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 1900 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 1901 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 1902 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 1903 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 1904 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 1905 
     | 
    
         
            +
                #                   challenge: {
         
     | 
| 
      
 1906 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 1907 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 1908 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 1909 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 1910 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 1911 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 1912 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 1913 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 1914 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 1915 
     | 
    
         
            +
                #                 },
         
     | 
| 
       1642 
1916 
     | 
    
         
             
                #               },
         
     | 
| 
       1643 
1917 
     | 
    
         
             
                #             ],
         
     | 
| 
       1644 
1918 
     | 
    
         
             
                #           },
         
     | 
| 
         @@ -1748,6 +2022,16 @@ module Aws::WAFV2 
     | 
|
| 
       1748 
2022 
     | 
    
         
             
                #               ],
         
     | 
| 
       1749 
2023 
     | 
    
         
             
                #             },
         
     | 
| 
       1750 
2024 
     | 
    
         
             
                #           },
         
     | 
| 
      
 2025 
     | 
    
         
            +
                #           challenge: {
         
     | 
| 
      
 2026 
     | 
    
         
            +
                #             custom_request_handling: {
         
     | 
| 
      
 2027 
     | 
    
         
            +
                #               insert_headers: [ # required
         
     | 
| 
      
 2028 
     | 
    
         
            +
                #                 {
         
     | 
| 
      
 2029 
     | 
    
         
            +
                #                   name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 2030 
     | 
    
         
            +
                #                   value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 2031 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 2032 
     | 
    
         
            +
                #               ],
         
     | 
| 
      
 2033 
     | 
    
         
            +
                #             },
         
     | 
| 
      
 2034 
     | 
    
         
            +
                #           },
         
     | 
| 
       1751 
2035 
     | 
    
         
             
                #         },
         
     | 
| 
       1752 
2036 
     | 
    
         
             
                #         override_action: {
         
     | 
| 
       1753 
2037 
     | 
    
         
             
                #           count: {
         
     | 
| 
         @@ -1778,6 +2062,11 @@ module Aws::WAFV2 
     | 
|
| 
       1778 
2062 
     | 
    
         
             
                #             immunity_time: 1, # required
         
     | 
| 
       1779 
2063 
     | 
    
         
             
                #           },
         
     | 
| 
       1780 
2064 
     | 
    
         
             
                #         },
         
     | 
| 
      
 2065 
     | 
    
         
            +
                #         challenge_config: {
         
     | 
| 
      
 2066 
     | 
    
         
            +
                #           immunity_time_property: {
         
     | 
| 
      
 2067 
     | 
    
         
            +
                #             immunity_time: 1, # required
         
     | 
| 
      
 2068 
     | 
    
         
            +
                #           },
         
     | 
| 
      
 2069 
     | 
    
         
            +
                #         },
         
     | 
| 
       1781 
2070 
     | 
    
         
             
                #       },
         
     | 
| 
       1782 
2071 
     | 
    
         
             
                #     ],
         
     | 
| 
       1783 
2072 
     | 
    
         
             
                #     visibility_config: { # required
         
     | 
| 
         @@ -1892,6 +2181,24 @@ module Aws::WAFV2 
     | 
|
| 
       1892 
2181 
     | 
    
         
             
                #   don't have their own `CaptchaConfig` settings. If you don't specify
         
     | 
| 
       1893 
2182 
     | 
    
         
             
                #   this, WAF uses its default settings for `CaptchaConfig`.
         
     | 
| 
       1894 
2183 
     | 
    
         
             
                #
         
     | 
| 
      
 2184 
     | 
    
         
            +
                # @option params [Types::ChallengeConfig] :challenge_config
         
     | 
| 
      
 2185 
     | 
    
         
            +
                #   Specifies how WAF should handle challenge evaluations for rules that
         
     | 
| 
      
 2186 
     | 
    
         
            +
                #   don't have their own `ChallengeConfig` settings. If you don't
         
     | 
| 
      
 2187 
     | 
    
         
            +
                #   specify this, WAF uses its default settings for `ChallengeConfig`.
         
     | 
| 
      
 2188 
     | 
    
         
            +
                #
         
     | 
| 
      
 2189 
     | 
    
         
            +
                # @option params [Array<String>] :token_domains
         
     | 
| 
      
 2190 
     | 
    
         
            +
                #   Specifies the domains that WAF should accept in a web request token.
         
     | 
| 
      
 2191 
     | 
    
         
            +
                #   This enables the use of tokens across multiple protected websites.
         
     | 
| 
      
 2192 
     | 
    
         
            +
                #   When WAF provides a token, it uses the domain of the Amazon Web
         
     | 
| 
      
 2193 
     | 
    
         
            +
                #   Services resource that the web ACL is protecting. If you don't
         
     | 
| 
      
 2194 
     | 
    
         
            +
                #   specify a list of token domains, WAF accepts tokens only for the
         
     | 
| 
      
 2195 
     | 
    
         
            +
                #   domain of the protected resource. With a token domain list, WAF
         
     | 
| 
      
 2196 
     | 
    
         
            +
                #   accepts the resource's host domain plus all domains in the token
         
     | 
| 
      
 2197 
     | 
    
         
            +
                #   domain list, including their prefixed subdomains.
         
     | 
| 
      
 2198 
     | 
    
         
            +
                #
         
     | 
| 
      
 2199 
     | 
    
         
            +
                #   Example JSON: `"TokenDomains": \{ "mywebsite.com",
         
     | 
| 
      
 2200 
     | 
    
         
            +
                #   "myotherwebsite.com" \}`
         
     | 
| 
      
 2201 
     | 
    
         
            +
                #
         
     | 
| 
       1895 
2202 
     | 
    
         
             
                # @return [Types::CreateWebACLResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         
     | 
| 
       1896 
2203 
     | 
    
         
             
                #
         
     | 
| 
       1897 
2204 
     | 
    
         
             
                #   * {Types::CreateWebACLResponse#summary #summary} => Types::WebACLSummary
         
     | 
| 
         @@ -2178,6 +2485,65 @@ module Aws::WAFV2 
     | 
|
| 
       2178 
2485 
     | 
    
         
             
                #                 name: "EntityName", # required
         
     | 
| 
       2179 
2486 
     | 
    
         
             
                #               },
         
     | 
| 
       2180 
2487 
     | 
    
         
             
                #             ],
         
     | 
| 
      
 2488 
     | 
    
         
            +
                #             rule_action_overrides: [
         
     | 
| 
      
 2489 
     | 
    
         
            +
                #               {
         
     | 
| 
      
 2490 
     | 
    
         
            +
                #                 name: "EntityName", # required
         
     | 
| 
      
 2491 
     | 
    
         
            +
                #                 action_to_use: { # required
         
     | 
| 
      
 2492 
     | 
    
         
            +
                #                   block: {
         
     | 
| 
      
 2493 
     | 
    
         
            +
                #                     custom_response: {
         
     | 
| 
      
 2494 
     | 
    
         
            +
                #                       response_code: 1, # required
         
     | 
| 
      
 2495 
     | 
    
         
            +
                #                       custom_response_body_key: "EntityName",
         
     | 
| 
      
 2496 
     | 
    
         
            +
                #                       response_headers: [
         
     | 
| 
      
 2497 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 2498 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 2499 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 2500 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 2501 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 2502 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 2503 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 2504 
     | 
    
         
            +
                #                   allow: {
         
     | 
| 
      
 2505 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 2506 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 2507 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 2508 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 2509 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 2510 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 2511 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 2512 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 2513 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 2514 
     | 
    
         
            +
                #                   count: {
         
     | 
| 
      
 2515 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 2516 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 2517 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 2518 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 2519 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 2520 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 2521 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 2522 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 2523 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 2524 
     | 
    
         
            +
                #                   captcha: {
         
     | 
| 
      
 2525 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 2526 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 2527 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 2528 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 2529 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 2530 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 2531 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 2532 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 2533 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 2534 
     | 
    
         
            +
                #                   challenge: {
         
     | 
| 
      
 2535 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 2536 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 2537 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 2538 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 2539 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 2540 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 2541 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 2542 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 2543 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 2544 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 2545 
     | 
    
         
            +
                #               },
         
     | 
| 
      
 2546 
     | 
    
         
            +
                #             ],
         
     | 
| 
       2181 
2547 
     | 
    
         
             
                #           },
         
     | 
| 
       2182 
2548 
     | 
    
         
             
                #           ip_set_reference_statement: {
         
     | 
| 
       2183 
2549 
     | 
    
         
             
                #             arn: "ResourceArn", # required
         
     | 
| 
         @@ -2297,6 +2663,68 @@ module Aws::WAFV2 
     | 
|
| 
       2297 
2663 
     | 
    
         
             
                #                 password_field: {
         
     | 
| 
       2298 
2664 
     | 
    
         
             
                #                   identifier: "FieldIdentifier", # required
         
     | 
| 
       2299 
2665 
     | 
    
         
             
                #                 },
         
     | 
| 
      
 2666 
     | 
    
         
            +
                #                 aws_managed_rules_bot_control_rule_set: {
         
     | 
| 
      
 2667 
     | 
    
         
            +
                #                   inspection_level: "COMMON", # required, accepts COMMON, TARGETED
         
     | 
| 
      
 2668 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 2669 
     | 
    
         
            +
                #               },
         
     | 
| 
      
 2670 
     | 
    
         
            +
                #             ],
         
     | 
| 
      
 2671 
     | 
    
         
            +
                #             rule_action_overrides: [
         
     | 
| 
      
 2672 
     | 
    
         
            +
                #               {
         
     | 
| 
      
 2673 
     | 
    
         
            +
                #                 name: "EntityName", # required
         
     | 
| 
      
 2674 
     | 
    
         
            +
                #                 action_to_use: { # required
         
     | 
| 
      
 2675 
     | 
    
         
            +
                #                   block: {
         
     | 
| 
      
 2676 
     | 
    
         
            +
                #                     custom_response: {
         
     | 
| 
      
 2677 
     | 
    
         
            +
                #                       response_code: 1, # required
         
     | 
| 
      
 2678 
     | 
    
         
            +
                #                       custom_response_body_key: "EntityName",
         
     | 
| 
      
 2679 
     | 
    
         
            +
                #                       response_headers: [
         
     | 
| 
      
 2680 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 2681 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 2682 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 2683 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 2684 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 2685 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 2686 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 2687 
     | 
    
         
            +
                #                   allow: {
         
     | 
| 
      
 2688 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 2689 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 2690 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 2691 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 2692 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 2693 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 2694 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 2695 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 2696 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 2697 
     | 
    
         
            +
                #                   count: {
         
     | 
| 
      
 2698 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 2699 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 2700 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 2701 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 2702 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 2703 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 2704 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 2705 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 2706 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 2707 
     | 
    
         
            +
                #                   captcha: {
         
     | 
| 
      
 2708 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 2709 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 2710 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 2711 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 2712 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 2713 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 2714 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 2715 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 2716 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 2717 
     | 
    
         
            +
                #                   challenge: {
         
     | 
| 
      
 2718 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 2719 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 2720 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 2721 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 2722 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 2723 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 2724 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 2725 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 2726 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 2727 
     | 
    
         
            +
                #                 },
         
     | 
| 
       2300 
2728 
     | 
    
         
             
                #               },
         
     | 
| 
       2301 
2729 
     | 
    
         
             
                #             ],
         
     | 
| 
       2302 
2730 
     | 
    
         
             
                #           },
         
     | 
| 
         @@ -2406,6 +2834,16 @@ module Aws::WAFV2 
     | 
|
| 
       2406 
2834 
     | 
    
         
             
                #               ],
         
     | 
| 
       2407 
2835 
     | 
    
         
             
                #             },
         
     | 
| 
       2408 
2836 
     | 
    
         
             
                #           },
         
     | 
| 
      
 2837 
     | 
    
         
            +
                #           challenge: {
         
     | 
| 
      
 2838 
     | 
    
         
            +
                #             custom_request_handling: {
         
     | 
| 
      
 2839 
     | 
    
         
            +
                #               insert_headers: [ # required
         
     | 
| 
      
 2840 
     | 
    
         
            +
                #                 {
         
     | 
| 
      
 2841 
     | 
    
         
            +
                #                   name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 2842 
     | 
    
         
            +
                #                   value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 2843 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 2844 
     | 
    
         
            +
                #               ],
         
     | 
| 
      
 2845 
     | 
    
         
            +
                #             },
         
     | 
| 
      
 2846 
     | 
    
         
            +
                #           },
         
     | 
| 
       2409 
2847 
     | 
    
         
             
                #         },
         
     | 
| 
       2410 
2848 
     | 
    
         
             
                #         override_action: {
         
     | 
| 
       2411 
2849 
     | 
    
         
             
                #           count: {
         
     | 
| 
         @@ -2436,6 +2874,11 @@ module Aws::WAFV2 
     | 
|
| 
       2436 
2874 
     | 
    
         
             
                #             immunity_time: 1, # required
         
     | 
| 
       2437 
2875 
     | 
    
         
             
                #           },
         
     | 
| 
       2438 
2876 
     | 
    
         
             
                #         },
         
     | 
| 
      
 2877 
     | 
    
         
            +
                #         challenge_config: {
         
     | 
| 
      
 2878 
     | 
    
         
            +
                #           immunity_time_property: {
         
     | 
| 
      
 2879 
     | 
    
         
            +
                #             immunity_time: 1, # required
         
     | 
| 
      
 2880 
     | 
    
         
            +
                #           },
         
     | 
| 
      
 2881 
     | 
    
         
            +
                #         },
         
     | 
| 
       2439 
2882 
     | 
    
         
             
                #       },
         
     | 
| 
       2440 
2883 
     | 
    
         
             
                #     ],
         
     | 
| 
       2441 
2884 
     | 
    
         
             
                #     visibility_config: { # required
         
     | 
| 
         @@ -2460,6 +2903,12 @@ module Aws::WAFV2 
     | 
|
| 
       2460 
2903 
     | 
    
         
             
                #         immunity_time: 1, # required
         
     | 
| 
       2461 
2904 
     | 
    
         
             
                #       },
         
     | 
| 
       2462 
2905 
     | 
    
         
             
                #     },
         
     | 
| 
      
 2906 
     | 
    
         
            +
                #     challenge_config: {
         
     | 
| 
      
 2907 
     | 
    
         
            +
                #       immunity_time_property: {
         
     | 
| 
      
 2908 
     | 
    
         
            +
                #         immunity_time: 1, # required
         
     | 
| 
      
 2909 
     | 
    
         
            +
                #       },
         
     | 
| 
      
 2910 
     | 
    
         
            +
                #     },
         
     | 
| 
      
 2911 
     | 
    
         
            +
                #     token_domains: ["TokenDomain"],
         
     | 
| 
       2463 
2912 
     | 
    
         
             
                #   })
         
     | 
| 
       2464 
2913 
     | 
    
         
             
                #
         
     | 
| 
       2465 
2914 
     | 
    
         
             
                # @example Response structure
         
     | 
| 
         @@ -2891,6 +3340,9 @@ module Aws::WAFV2 
     | 
|
| 
       2891 
3340 
     | 
    
         
             
                #   resp.rules[0].action.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
       2892 
3341 
     | 
    
         
             
                #   resp.rules[0].action.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
       2893 
3342 
     | 
    
         
             
                #   resp.rules[0].action.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 3343 
     | 
    
         
            +
                #   resp.rules[0].action.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 3344 
     | 
    
         
            +
                #   resp.rules[0].action.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 3345 
     | 
    
         
            +
                #   resp.rules[0].action.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       2894 
3346 
     | 
    
         
             
                #   resp.label_namespace #=> String
         
     | 
| 
       2895 
3347 
     | 
    
         
             
                #   resp.available_labels #=> Array
         
     | 
| 
       2896 
3348 
     | 
    
         
             
                #   resp.available_labels[0].name #=> String
         
     | 
| 
         @@ -2961,10 +3413,10 @@ module Aws::WAFV2 
     | 
|
| 
       2961 
3413 
     | 
    
         
             
                # mobile SDK.
         
     | 
| 
       2962 
3414 
     | 
    
         
             
                #
         
     | 
| 
       2963 
3415 
     | 
    
         
             
                # The mobile SDK is not generally available. Customers who have access
         
     | 
| 
       2964 
     | 
    
         
            -
                # to the mobile SDK can use it to establish and manage  
     | 
| 
       2965 
     | 
    
         
            -
                #  
     | 
| 
       2966 
     | 
    
         
            -
                #  
     | 
| 
       2967 
     | 
    
         
            -
                #  
     | 
| 
      
 3416 
     | 
    
         
            +
                # to the mobile SDK can use it to establish and manage WAF tokens for
         
     | 
| 
      
 3417 
     | 
    
         
            +
                # use in HTTP(S) requests from a mobile device to WAF. For more
         
     | 
| 
      
 3418 
     | 
    
         
            +
                # information, see [WAF client application integration][1] in the *WAF
         
     | 
| 
      
 3419 
     | 
    
         
            +
                # Developer Guide*.
         
     | 
| 
       2968 
3420 
     | 
    
         
             
                #
         
     | 
| 
       2969 
3421 
     | 
    
         
             
                #
         
     | 
| 
       2970 
3422 
     | 
    
         
             
                #
         
     | 
| 
         @@ -3106,7 +3558,7 @@ module Aws::WAFV2 
     | 
|
| 
       3106 
3558 
     | 
    
         
             
                #   resp.logging_configuration.logging_filter.filters[0].behavior #=> String, one of "KEEP", "DROP"
         
     | 
| 
       3107 
3559 
     | 
    
         
             
                #   resp.logging_configuration.logging_filter.filters[0].requirement #=> String, one of "MEETS_ALL", "MEETS_ANY"
         
     | 
| 
       3108 
3560 
     | 
    
         
             
                #   resp.logging_configuration.logging_filter.filters[0].conditions #=> Array
         
     | 
| 
       3109 
     | 
    
         
            -
                #   resp.logging_configuration.logging_filter.filters[0].conditions[0].action_condition.action #=> String, one of "ALLOW", "BLOCK", "COUNT", "CAPTCHA", "EXCLUDED_AS_COUNT"
         
     | 
| 
      
 3561 
     | 
    
         
            +
                #   resp.logging_configuration.logging_filter.filters[0].conditions[0].action_condition.action #=> String, one of "ALLOW", "BLOCK", "COUNT", "CAPTCHA", "CHALLENGE", "EXCLUDED_AS_COUNT"
         
     | 
| 
       3110 
3562 
     | 
    
         
             
                #   resp.logging_configuration.logging_filter.filters[0].conditions[0].label_name_condition.label_name #=> String
         
     | 
| 
       3111 
3563 
     | 
    
         
             
                #   resp.logging_configuration.logging_filter.default_behavior #=> String, one of "KEEP", "DROP"
         
     | 
| 
       3112 
3564 
     | 
    
         
             
                #
         
     | 
| 
         @@ -3201,10 +3653,10 @@ module Aws::WAFV2 
     | 
|
| 
       3201 
3653 
     | 
    
         
             
                # release notes and tags.
         
     | 
| 
       3202 
3654 
     | 
    
         
             
                #
         
     | 
| 
       3203 
3655 
     | 
    
         
             
                # The mobile SDK is not generally available. Customers who have access
         
     | 
| 
       3204 
     | 
    
         
            -
                # to the mobile SDK can use it to establish and manage  
     | 
| 
       3205 
     | 
    
         
            -
                #  
     | 
| 
       3206 
     | 
    
         
            -
                #  
     | 
| 
       3207 
     | 
    
         
            -
                #  
     | 
| 
      
 3656 
     | 
    
         
            +
                # to the mobile SDK can use it to establish and manage WAF tokens for
         
     | 
| 
      
 3657 
     | 
    
         
            +
                # use in HTTP(S) requests from a mobile device to WAF. For more
         
     | 
| 
      
 3658 
     | 
    
         
            +
                # information, see [WAF client application integration][1] in the *WAF
         
     | 
| 
      
 3659 
     | 
    
         
            +
                # Developer Guide*.
         
     | 
| 
       3208 
3660 
     | 
    
         
             
                #
         
     | 
| 
       3209 
3661 
     | 
    
         
             
                #
         
     | 
| 
       3210 
3662 
     | 
    
         
             
                #
         
     | 
| 
         @@ -3576,6 +4028,25 @@ module Aws::WAFV2 
     | 
|
| 
       3576 
4028 
     | 
    
         
             
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.arn #=> String
         
     | 
| 
       3577 
4029 
     | 
    
         
             
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.excluded_rules #=> Array
         
     | 
| 
       3578 
4030 
     | 
    
         
             
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.excluded_rules[0].name #=> String
         
     | 
| 
      
 4031 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 4032 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 4033 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 4034 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 4035 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 4036 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 4037 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 4038 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4039 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4040 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4041 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4042 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4043 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4044 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4045 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4046 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4047 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4048 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4049 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       3579 
4050 
     | 
    
         
             
                #   resp.rule_group.rules[0].statement.ip_set_reference_statement.arn #=> String
         
     | 
| 
       3580 
4051 
     | 
    
         
             
                #   resp.rule_group.rules[0].statement.ip_set_reference_statement.ip_set_forwarded_ip_config.header_name #=> String
         
     | 
| 
       3581 
4052 
     | 
    
         
             
                #   resp.rule_group.rules[0].statement.ip_set_reference_statement.ip_set_forwarded_ip_config.fallback_behavior #=> String, one of "MATCH", "NO_MATCH"
         
     | 
| 
         @@ -3625,6 +4096,26 @@ module Aws::WAFV2 
     | 
|
| 
       3625 
4096 
     | 
    
         
             
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
         
     | 
| 
       3626 
4097 
     | 
    
         
             
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
         
     | 
| 
       3627 
4098 
     | 
    
         
             
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
         
     | 
| 
      
 4099 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].aws_managed_rules_bot_control_rule_set.inspection_level #=> String, one of "COMMON", "TARGETED"
         
     | 
| 
      
 4100 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 4101 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 4102 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 4103 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 4104 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 4105 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 4106 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 4107 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4108 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4109 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4110 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4111 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4112 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4113 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4114 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4115 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4116 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4117 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4118 
     | 
    
         
            +
                #   resp.rule_group.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       3628 
4119 
     | 
    
         
             
                #   resp.rule_group.rules[0].statement.label_match_statement.scope #=> String, one of "LABEL", "NAMESPACE"
         
     | 
| 
       3629 
4120 
     | 
    
         
             
                #   resp.rule_group.rules[0].statement.label_match_statement.key #=> String
         
     | 
| 
       3630 
4121 
     | 
    
         
             
                #   resp.rule_group.rules[0].statement.regex_match_statement.regex_string #=> String
         
     | 
| 
         @@ -3665,6 +4156,9 @@ module Aws::WAFV2 
     | 
|
| 
       3665 
4156 
     | 
    
         
             
                #   resp.rule_group.rules[0].action.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
       3666 
4157 
     | 
    
         
             
                #   resp.rule_group.rules[0].action.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
       3667 
4158 
     | 
    
         
             
                #   resp.rule_group.rules[0].action.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4159 
     | 
    
         
            +
                #   resp.rule_group.rules[0].action.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4160 
     | 
    
         
            +
                #   resp.rule_group.rules[0].action.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4161 
     | 
    
         
            +
                #   resp.rule_group.rules[0].action.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       3668 
4162 
     | 
    
         
             
                #   resp.rule_group.rules[0].override_action.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
       3669 
4163 
     | 
    
         
             
                #   resp.rule_group.rules[0].override_action.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
       3670 
4164 
     | 
    
         
             
                #   resp.rule_group.rules[0].override_action.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
         @@ -3674,6 +4168,7 @@ module Aws::WAFV2 
     | 
|
| 
       3674 
4168 
     | 
    
         
             
                #   resp.rule_group.rules[0].visibility_config.cloud_watch_metrics_enabled #=> Boolean
         
     | 
| 
       3675 
4169 
     | 
    
         
             
                #   resp.rule_group.rules[0].visibility_config.metric_name #=> String
         
     | 
| 
       3676 
4170 
     | 
    
         
             
                #   resp.rule_group.rules[0].captcha_config.immunity_time_property.immunity_time #=> Integer
         
     | 
| 
      
 4171 
     | 
    
         
            +
                #   resp.rule_group.rules[0].challenge_config.immunity_time_property.immunity_time #=> Integer
         
     | 
| 
       3677 
4172 
     | 
    
         
             
                #   resp.rule_group.visibility_config.sampled_requests_enabled #=> Boolean
         
     | 
| 
       3678 
4173 
     | 
    
         
             
                #   resp.rule_group.visibility_config.cloud_watch_metrics_enabled #=> Boolean
         
     | 
| 
       3679 
4174 
     | 
    
         
             
                #   resp.rule_group.visibility_config.metric_name #=> String
         
     | 
| 
         @@ -3789,7 +4284,11 @@ module Aws::WAFV2 
     | 
|
| 
       3789 
4284 
     | 
    
         
             
                #   resp.sampled_requests[0].labels[0].name #=> String
         
     | 
| 
       3790 
4285 
     | 
    
         
             
                #   resp.sampled_requests[0].captcha_response.response_code #=> Integer
         
     | 
| 
       3791 
4286 
     | 
    
         
             
                #   resp.sampled_requests[0].captcha_response.solve_timestamp #=> Integer
         
     | 
| 
       3792 
     | 
    
         
            -
                #   resp.sampled_requests[0].captcha_response.failure_reason #=> String, one of "TOKEN_MISSING", "TOKEN_EXPIRED"
         
     | 
| 
      
 4287 
     | 
    
         
            +
                #   resp.sampled_requests[0].captcha_response.failure_reason #=> String, one of "TOKEN_MISSING", "TOKEN_EXPIRED", "TOKEN_INVALID", "TOKEN_DOMAIN_MISMATCH"
         
     | 
| 
      
 4288 
     | 
    
         
            +
                #   resp.sampled_requests[0].challenge_response.response_code #=> Integer
         
     | 
| 
      
 4289 
     | 
    
         
            +
                #   resp.sampled_requests[0].challenge_response.solve_timestamp #=> Integer
         
     | 
| 
      
 4290 
     | 
    
         
            +
                #   resp.sampled_requests[0].challenge_response.failure_reason #=> String, one of "TOKEN_MISSING", "TOKEN_EXPIRED", "TOKEN_INVALID", "TOKEN_DOMAIN_MISMATCH"
         
     | 
| 
      
 4291 
     | 
    
         
            +
                #   resp.sampled_requests[0].overridden_action #=> String
         
     | 
| 
       3793 
4292 
     | 
    
         
             
                #   resp.population_size #=> Integer
         
     | 
| 
       3794 
4293 
     | 
    
         
             
                #   resp.time_window.start_time #=> Time
         
     | 
| 
       3795 
4294 
     | 
    
         
             
                #   resp.time_window.end_time #=> Time
         
     | 
| 
         @@ -3963,6 +4462,25 @@ module Aws::WAFV2 
     | 
|
| 
       3963 
4462 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.arn #=> String
         
     | 
| 
       3964 
4463 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.excluded_rules #=> Array
         
     | 
| 
       3965 
4464 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.excluded_rules[0].name #=> String
         
     | 
| 
      
 4465 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 4466 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 4467 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 4468 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 4469 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 4470 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 4471 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 4472 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4473 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4474 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4475 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4476 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4477 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4478 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4479 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4480 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4481 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4482 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4483 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       3966 
4484 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.ip_set_reference_statement.arn #=> String
         
     | 
| 
       3967 
4485 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.ip_set_reference_statement.ip_set_forwarded_ip_config.header_name #=> String
         
     | 
| 
       3968 
4486 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.ip_set_reference_statement.ip_set_forwarded_ip_config.fallback_behavior #=> String, one of "MATCH", "NO_MATCH"
         
     | 
| 
         @@ -4012,6 +4530,26 @@ module Aws::WAFV2 
     | 
|
| 
       4012 
4530 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
         
     | 
| 
       4013 
4531 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
         
     | 
| 
       4014 
4532 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
         
     | 
| 
      
 4533 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].aws_managed_rules_bot_control_rule_set.inspection_level #=> String, one of "COMMON", "TARGETED"
         
     | 
| 
      
 4534 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 4535 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 4536 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 4537 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 4538 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 4539 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 4540 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 4541 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4542 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4543 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4544 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4545 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4546 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4547 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4548 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4549 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4550 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4551 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4552 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4015 
4553 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.label_match_statement.scope #=> String, one of "LABEL", "NAMESPACE"
         
     | 
| 
       4016 
4554 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.label_match_statement.key #=> String
         
     | 
| 
       4017 
4555 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.regex_match_statement.regex_string #=> String
         
     | 
| 
         @@ -4052,6 +4590,9 @@ module Aws::WAFV2 
     | 
|
| 
       4052 
4590 
     | 
    
         
             
                #   resp.web_acl.rules[0].action.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
       4053 
4591 
     | 
    
         
             
                #   resp.web_acl.rules[0].action.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
       4054 
4592 
     | 
    
         
             
                #   resp.web_acl.rules[0].action.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4593 
     | 
    
         
            +
                #   resp.web_acl.rules[0].action.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4594 
     | 
    
         
            +
                #   resp.web_acl.rules[0].action.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4595 
     | 
    
         
            +
                #   resp.web_acl.rules[0].action.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4055 
4596 
     | 
    
         
             
                #   resp.web_acl.rules[0].override_action.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
       4056 
4597 
     | 
    
         
             
                #   resp.web_acl.rules[0].override_action.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
       4057 
4598 
     | 
    
         
             
                #   resp.web_acl.rules[0].override_action.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
         @@ -4061,6 +4602,7 @@ module Aws::WAFV2 
     | 
|
| 
       4061 
4602 
     | 
    
         
             
                #   resp.web_acl.rules[0].visibility_config.cloud_watch_metrics_enabled #=> Boolean
         
     | 
| 
       4062 
4603 
     | 
    
         
             
                #   resp.web_acl.rules[0].visibility_config.metric_name #=> String
         
     | 
| 
       4063 
4604 
     | 
    
         
             
                #   resp.web_acl.rules[0].captcha_config.immunity_time_property.immunity_time #=> Integer
         
     | 
| 
      
 4605 
     | 
    
         
            +
                #   resp.web_acl.rules[0].challenge_config.immunity_time_property.immunity_time #=> Integer
         
     | 
| 
       4064 
4606 
     | 
    
         
             
                #   resp.web_acl.visibility_config.sampled_requests_enabled #=> Boolean
         
     | 
| 
       4065 
4607 
     | 
    
         
             
                #   resp.web_acl.visibility_config.cloud_watch_metrics_enabled #=> Boolean
         
     | 
| 
       4066 
4608 
     | 
    
         
             
                #   resp.web_acl.visibility_config.metric_name #=> String
         
     | 
| 
         @@ -4177,6 +4719,25 @@ module Aws::WAFV2 
     | 
|
| 
       4177 
4719 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.arn #=> String
         
     | 
| 
       4178 
4720 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.excluded_rules #=> Array
         
     | 
| 
       4179 
4721 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
         
     | 
| 
      
 4722 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 4723 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 4724 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 4725 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 4726 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 4727 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 4728 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 4729 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4730 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4731 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4732 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4733 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4734 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4735 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4736 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4737 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4738 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4739 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4740 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4180 
4741 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.ip_set_reference_statement.arn #=> String
         
     | 
| 
       4181 
4742 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.ip_set_reference_statement.ip_set_forwarded_ip_config.header_name #=> String
         
     | 
| 
       4182 
4743 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.ip_set_reference_statement.ip_set_forwarded_ip_config.fallback_behavior #=> String, one of "MATCH", "NO_MATCH"
         
     | 
| 
         @@ -4247,9 +4808,48 @@ module Aws::WAFV2 
     | 
|
| 
       4247 
4808 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
         
     | 
| 
       4248 
4809 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
         
     | 
| 
       4249 
4810 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
         
     | 
| 
      
 4811 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].aws_managed_rules_bot_control_rule_set.inspection_level #=> String, one of "COMMON", "TARGETED"
         
     | 
| 
      
 4812 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 4813 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 4814 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 4815 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 4816 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 4817 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 4818 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 4819 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4820 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4821 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4822 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4823 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4824 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4825 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4826 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4827 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4828 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4829 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4830 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4250 
4831 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.arn #=> String
         
     | 
| 
       4251 
4832 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules #=> Array
         
     | 
| 
       4252 
4833 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
         
     | 
| 
      
 4834 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 4835 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 4836 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 4837 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 4838 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 4839 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 4840 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 4841 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4842 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4843 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4844 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4845 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4846 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4847 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4848 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4849 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4850 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4851 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4852 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4253 
4853 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].override_action.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
       4254 
4854 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].override_action.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
       4255 
4855 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].override_action.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
         @@ -4368,6 +4968,25 @@ module Aws::WAFV2 
     | 
|
| 
       4368 
4968 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.arn #=> String
         
     | 
| 
       4369 
4969 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.excluded_rules #=> Array
         
     | 
| 
       4370 
4970 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
         
     | 
| 
      
 4971 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 4972 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 4973 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 4974 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 4975 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 4976 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 4977 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 4978 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4979 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4980 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4981 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4982 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4983 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4984 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4985 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4986 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 4987 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 4988 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 4989 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4371 
4990 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.ip_set_reference_statement.arn #=> String
         
     | 
| 
       4372 
4991 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.ip_set_reference_statement.ip_set_forwarded_ip_config.header_name #=> String
         
     | 
| 
       4373 
4992 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.ip_set_reference_statement.ip_set_forwarded_ip_config.fallback_behavior #=> String, one of "MATCH", "NO_MATCH"
         
     | 
| 
         @@ -4438,9 +5057,48 @@ module Aws::WAFV2 
     | 
|
| 
       4438 
5057 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
         
     | 
| 
       4439 
5058 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
         
     | 
| 
       4440 
5059 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
         
     | 
| 
      
 5060 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].aws_managed_rules_bot_control_rule_set.inspection_level #=> String, one of "COMMON", "TARGETED"
         
     | 
| 
      
 5061 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 5062 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 5063 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 5064 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 5065 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 5066 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 5067 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 5068 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5069 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5070 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5071 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5072 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5073 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5074 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5075 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5076 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5077 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5078 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5079 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4441 
5080 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.arn #=> String
         
     | 
| 
       4442 
5081 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules #=> Array
         
     | 
| 
       4443 
5082 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
         
     | 
| 
      
 5083 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 5084 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 5085 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 5086 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 5087 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 5088 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 5089 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 5090 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5091 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5092 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5093 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5094 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5095 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5096 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5097 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5098 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5099 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5100 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5101 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4444 
5102 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].override_action.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
       4445 
5103 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].override_action.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
       4446 
5104 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].override_action.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
         @@ -4453,6 +5111,9 @@ module Aws::WAFV2 
     | 
|
| 
       4453 
5111 
     | 
    
         
             
                #   resp.web_acl.custom_response_bodies["EntityName"].content_type #=> String, one of "TEXT_PLAIN", "TEXT_HTML", "APPLICATION_JSON"
         
     | 
| 
       4454 
5112 
     | 
    
         
             
                #   resp.web_acl.custom_response_bodies["EntityName"].content #=> String
         
     | 
| 
       4455 
5113 
     | 
    
         
             
                #   resp.web_acl.captcha_config.immunity_time_property.immunity_time #=> Integer
         
     | 
| 
      
 5114 
     | 
    
         
            +
                #   resp.web_acl.challenge_config.immunity_time_property.immunity_time #=> Integer
         
     | 
| 
      
 5115 
     | 
    
         
            +
                #   resp.web_acl.token_domains #=> Array
         
     | 
| 
      
 5116 
     | 
    
         
            +
                #   resp.web_acl.token_domains[0] #=> String
         
     | 
| 
       4456 
5117 
     | 
    
         
             
                #   resp.lock_token #=> String
         
     | 
| 
       4457 
5118 
     | 
    
         
             
                #   resp.application_integration_url #=> String
         
     | 
| 
       4458 
5119 
     | 
    
         
             
                #
         
     | 
| 
         @@ -4617,6 +5278,25 @@ module Aws::WAFV2 
     | 
|
| 
       4617 
5278 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.arn #=> String
         
     | 
| 
       4618 
5279 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.excluded_rules #=> Array
         
     | 
| 
       4619 
5280 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.excluded_rules[0].name #=> String
         
     | 
| 
      
 5281 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 5282 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 5283 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 5284 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 5285 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 5286 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 5287 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 5288 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5289 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5290 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5291 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5292 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5293 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5294 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5295 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5296 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5297 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5298 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5299 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4620 
5300 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.ip_set_reference_statement.arn #=> String
         
     | 
| 
       4621 
5301 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.ip_set_reference_statement.ip_set_forwarded_ip_config.header_name #=> String
         
     | 
| 
       4622 
5302 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.ip_set_reference_statement.ip_set_forwarded_ip_config.fallback_behavior #=> String, one of "MATCH", "NO_MATCH"
         
     | 
| 
         @@ -4666,6 +5346,26 @@ module Aws::WAFV2 
     | 
|
| 
       4666 
5346 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
         
     | 
| 
       4667 
5347 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
         
     | 
| 
       4668 
5348 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
         
     | 
| 
      
 5349 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].aws_managed_rules_bot_control_rule_set.inspection_level #=> String, one of "COMMON", "TARGETED"
         
     | 
| 
      
 5350 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 5351 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 5352 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 5353 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 5354 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 5355 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 5356 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 5357 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5358 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5359 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5360 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5361 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5362 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5363 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5364 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5365 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5366 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5367 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5368 
     | 
    
         
            +
                #   resp.web_acl.rules[0].statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4669 
5369 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.label_match_statement.scope #=> String, one of "LABEL", "NAMESPACE"
         
     | 
| 
       4670 
5370 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.label_match_statement.key #=> String
         
     | 
| 
       4671 
5371 
     | 
    
         
             
                #   resp.web_acl.rules[0].statement.regex_match_statement.regex_string #=> String
         
     | 
| 
         @@ -4706,6 +5406,9 @@ module Aws::WAFV2 
     | 
|
| 
       4706 
5406 
     | 
    
         
             
                #   resp.web_acl.rules[0].action.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
       4707 
5407 
     | 
    
         
             
                #   resp.web_acl.rules[0].action.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
       4708 
5408 
     | 
    
         
             
                #   resp.web_acl.rules[0].action.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5409 
     | 
    
         
            +
                #   resp.web_acl.rules[0].action.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5410 
     | 
    
         
            +
                #   resp.web_acl.rules[0].action.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5411 
     | 
    
         
            +
                #   resp.web_acl.rules[0].action.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4709 
5412 
     | 
    
         
             
                #   resp.web_acl.rules[0].override_action.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
       4710 
5413 
     | 
    
         
             
                #   resp.web_acl.rules[0].override_action.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
       4711 
5414 
     | 
    
         
             
                #   resp.web_acl.rules[0].override_action.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
         @@ -4715,6 +5418,7 @@ module Aws::WAFV2 
     | 
|
| 
       4715 
5418 
     | 
    
         
             
                #   resp.web_acl.rules[0].visibility_config.cloud_watch_metrics_enabled #=> Boolean
         
     | 
| 
       4716 
5419 
     | 
    
         
             
                #   resp.web_acl.rules[0].visibility_config.metric_name #=> String
         
     | 
| 
       4717 
5420 
     | 
    
         
             
                #   resp.web_acl.rules[0].captcha_config.immunity_time_property.immunity_time #=> Integer
         
     | 
| 
      
 5421 
     | 
    
         
            +
                #   resp.web_acl.rules[0].challenge_config.immunity_time_property.immunity_time #=> Integer
         
     | 
| 
       4718 
5422 
     | 
    
         
             
                #   resp.web_acl.visibility_config.sampled_requests_enabled #=> Boolean
         
     | 
| 
       4719 
5423 
     | 
    
         
             
                #   resp.web_acl.visibility_config.cloud_watch_metrics_enabled #=> Boolean
         
     | 
| 
       4720 
5424 
     | 
    
         
             
                #   resp.web_acl.visibility_config.metric_name #=> String
         
     | 
| 
         @@ -4831,6 +5535,25 @@ module Aws::WAFV2 
     | 
|
| 
       4831 
5535 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.arn #=> String
         
     | 
| 
       4832 
5536 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.excluded_rules #=> Array
         
     | 
| 
       4833 
5537 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
         
     | 
| 
      
 5538 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 5539 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 5540 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 5541 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 5542 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 5543 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 5544 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 5545 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5546 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5547 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5548 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5549 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5550 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5551 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5552 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5553 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5554 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5555 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5556 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4834 
5557 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.ip_set_reference_statement.arn #=> String
         
     | 
| 
       4835 
5558 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.ip_set_reference_statement.ip_set_forwarded_ip_config.header_name #=> String
         
     | 
| 
       4836 
5559 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.ip_set_reference_statement.ip_set_forwarded_ip_config.fallback_behavior #=> String, one of "MATCH", "NO_MATCH"
         
     | 
| 
         @@ -4901,9 +5624,48 @@ module Aws::WAFV2 
     | 
|
| 
       4901 
5624 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
         
     | 
| 
       4902 
5625 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
         
     | 
| 
       4903 
5626 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
         
     | 
| 
      
 5627 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].aws_managed_rules_bot_control_rule_set.inspection_level #=> String, one of "COMMON", "TARGETED"
         
     | 
| 
      
 5628 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 5629 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 5630 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 5631 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 5632 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 5633 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 5634 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 5635 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5636 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5637 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5638 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5639 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5640 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5641 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5642 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5643 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5644 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5645 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5646 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4904 
5647 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.arn #=> String
         
     | 
| 
       4905 
5648 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules #=> Array
         
     | 
| 
       4906 
5649 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
         
     | 
| 
      
 5650 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 5651 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 5652 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 5653 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 5654 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 5655 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 5656 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 5657 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5658 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5659 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5660 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5661 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5662 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5663 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5664 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5665 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5666 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5667 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5668 
     | 
    
         
            +
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       4907 
5669 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].override_action.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
       4908 
5670 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].override_action.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
       4909 
5671 
     | 
    
         
             
                #   resp.web_acl.pre_process_firewall_manager_rule_groups[0].override_action.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
         @@ -5022,6 +5784,25 @@ module Aws::WAFV2 
     | 
|
| 
       5022 
5784 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.arn #=> String
         
     | 
| 
       5023 
5785 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.excluded_rules #=> Array
         
     | 
| 
       5024 
5786 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
         
     | 
| 
      
 5787 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 5788 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 5789 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 5790 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 5791 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 5792 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 5793 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 5794 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5795 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5796 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5797 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5798 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5799 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5800 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5801 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5802 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5803 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5804 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5805 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       5025 
5806 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.ip_set_reference_statement.arn #=> String
         
     | 
| 
       5026 
5807 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.ip_set_reference_statement.ip_set_forwarded_ip_config.header_name #=> String
         
     | 
| 
       5027 
5808 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.ip_set_reference_statement.ip_set_forwarded_ip_config.fallback_behavior #=> String, one of "MATCH", "NO_MATCH"
         
     | 
| 
         @@ -5092,9 +5873,48 @@ module Aws::WAFV2 
     | 
|
| 
       5092 
5873 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
         
     | 
| 
       5093 
5874 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
         
     | 
| 
       5094 
5875 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
         
     | 
| 
      
 5876 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].aws_managed_rules_bot_control_rule_set.inspection_level #=> String, one of "COMMON", "TARGETED"
         
     | 
| 
      
 5877 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 5878 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 5879 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 5880 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 5881 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 5882 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 5883 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 5884 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5885 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5886 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5887 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5888 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5889 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5890 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5891 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5892 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5893 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5894 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5895 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       5095 
5896 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.arn #=> String
         
     | 
| 
       5096 
5897 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules #=> Array
         
     | 
| 
       5097 
5898 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
         
     | 
| 
      
 5899 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides #=> Array
         
     | 
| 
      
 5900 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].name #=> String
         
     | 
| 
      
 5901 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_code #=> Integer
         
     | 
| 
      
 5902 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.custom_response_body_key #=> String
         
     | 
| 
      
 5903 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers #=> Array
         
     | 
| 
      
 5904 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].name #=> String
         
     | 
| 
      
 5905 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.block.custom_response.response_headers[0].value #=> String
         
     | 
| 
      
 5906 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5907 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5908 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.allow.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5909 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5910 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5911 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5912 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5913 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5914 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.captcha.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
      
 5915 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers #=> Array
         
     | 
| 
      
 5916 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
      
 5917 
     | 
    
         
            +
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.rule_action_overrides[0].action_to_use.challenge.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
       5098 
5918 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].override_action.count.custom_request_handling.insert_headers #=> Array
         
     | 
| 
       5099 
5919 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].override_action.count.custom_request_handling.insert_headers[0].name #=> String
         
     | 
| 
       5100 
5920 
     | 
    
         
             
                #   resp.web_acl.post_process_firewall_manager_rule_groups[0].override_action.count.custom_request_handling.insert_headers[0].value #=> String
         
     | 
| 
         @@ -5107,6 +5927,9 @@ module Aws::WAFV2 
     | 
|
| 
       5107 
5927 
     | 
    
         
             
                #   resp.web_acl.custom_response_bodies["EntityName"].content_type #=> String, one of "TEXT_PLAIN", "TEXT_HTML", "APPLICATION_JSON"
         
     | 
| 
       5108 
5928 
     | 
    
         
             
                #   resp.web_acl.custom_response_bodies["EntityName"].content #=> String
         
     | 
| 
       5109 
5929 
     | 
    
         
             
                #   resp.web_acl.captcha_config.immunity_time_property.immunity_time #=> Integer
         
     | 
| 
      
 5930 
     | 
    
         
            +
                #   resp.web_acl.challenge_config.immunity_time_property.immunity_time #=> Integer
         
     | 
| 
      
 5931 
     | 
    
         
            +
                #   resp.web_acl.token_domains #=> Array
         
     | 
| 
      
 5932 
     | 
    
         
            +
                #   resp.web_acl.token_domains[0] #=> String
         
     | 
| 
       5110 
5933 
     | 
    
         
             
                #
         
     | 
| 
       5111 
5934 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/GetWebACLForResource AWS API Documentation
         
     | 
| 
       5112 
5935 
     | 
    
         
             
                #
         
     | 
| 
         @@ -5387,7 +6210,7 @@ module Aws::WAFV2 
     | 
|
| 
       5387 
6210 
     | 
    
         
             
                #   resp.logging_configurations[0].logging_filter.filters[0].behavior #=> String, one of "KEEP", "DROP"
         
     | 
| 
       5388 
6211 
     | 
    
         
             
                #   resp.logging_configurations[0].logging_filter.filters[0].requirement #=> String, one of "MEETS_ALL", "MEETS_ANY"
         
     | 
| 
       5389 
6212 
     | 
    
         
             
                #   resp.logging_configurations[0].logging_filter.filters[0].conditions #=> Array
         
     | 
| 
       5390 
     | 
    
         
            -
                #   resp.logging_configurations[0].logging_filter.filters[0].conditions[0].action_condition.action #=> String, one of "ALLOW", "BLOCK", "COUNT", "CAPTCHA", "EXCLUDED_AS_COUNT"
         
     | 
| 
      
 6213 
     | 
    
         
            +
                #   resp.logging_configurations[0].logging_filter.filters[0].conditions[0].action_condition.action #=> String, one of "ALLOW", "BLOCK", "COUNT", "CAPTCHA", "CHALLENGE", "EXCLUDED_AS_COUNT"
         
     | 
| 
       5391 
6214 
     | 
    
         
             
                #   resp.logging_configurations[0].logging_filter.filters[0].conditions[0].label_name_condition.label_name #=> String
         
     | 
| 
       5392 
6215 
     | 
    
         
             
                #   resp.logging_configurations[0].logging_filter.default_behavior #=> String, one of "KEEP", "DROP"
         
     | 
| 
       5393 
6216 
     | 
    
         
             
                #   resp.next_marker #=> String
         
     | 
| 
         @@ -5478,10 +6301,10 @@ module Aws::WAFV2 
     | 
|
| 
       5478 
6301 
     | 
    
         
             
                # specified device platform.
         
     | 
| 
       5479 
6302 
     | 
    
         
             
                #
         
     | 
| 
       5480 
6303 
     | 
    
         
             
                # The mobile SDK is not generally available. Customers who have access
         
     | 
| 
       5481 
     | 
    
         
            -
                # to the mobile SDK can use it to establish and manage  
     | 
| 
       5482 
     | 
    
         
            -
                #  
     | 
| 
       5483 
     | 
    
         
            -
                #  
     | 
| 
       5484 
     | 
    
         
            -
                #  
     | 
| 
      
 6304 
     | 
    
         
            +
                # to the mobile SDK can use it to establish and manage WAF tokens for
         
     | 
| 
      
 6305 
     | 
    
         
            +
                # use in HTTP(S) requests from a mobile device to WAF. For more
         
     | 
| 
      
 6306 
     | 
    
         
            +
                # information, see [WAF client application integration][1] in the *WAF
         
     | 
| 
      
 6307 
     | 
    
         
            +
                # Developer Guide*.
         
     | 
| 
       5485 
6308 
     | 
    
         
             
                #
         
     | 
| 
       5486 
6309 
     | 
    
         
             
                #
         
     | 
| 
       5487 
6310 
     | 
    
         
             
                #
         
     | 
| 
         @@ -5936,7 +6759,7 @@ module Aws::WAFV2 
     | 
|
| 
       5936 
6759 
     | 
    
         
             
                #             conditions: [ # required
         
     | 
| 
       5937 
6760 
     | 
    
         
             
                #               {
         
     | 
| 
       5938 
6761 
     | 
    
         
             
                #                 action_condition: {
         
     | 
| 
       5939 
     | 
    
         
            -
                #                   action: "ALLOW", # required, accepts ALLOW, BLOCK, COUNT, CAPTCHA, EXCLUDED_AS_COUNT
         
     | 
| 
      
 6762 
     | 
    
         
            +
                #                   action: "ALLOW", # required, accepts ALLOW, BLOCK, COUNT, CAPTCHA, CHALLENGE, EXCLUDED_AS_COUNT
         
     | 
| 
       5940 
6763 
     | 
    
         
             
                #                 },
         
     | 
| 
       5941 
6764 
     | 
    
         
             
                #                 label_name_condition: {
         
     | 
| 
       5942 
6765 
     | 
    
         
             
                #                   label_name: "LabelName", # required
         
     | 
| 
         @@ -5981,7 +6804,7 @@ module Aws::WAFV2 
     | 
|
| 
       5981 
6804 
     | 
    
         
             
                #   resp.logging_configuration.logging_filter.filters[0].behavior #=> String, one of "KEEP", "DROP"
         
     | 
| 
       5982 
6805 
     | 
    
         
             
                #   resp.logging_configuration.logging_filter.filters[0].requirement #=> String, one of "MEETS_ALL", "MEETS_ANY"
         
     | 
| 
       5983 
6806 
     | 
    
         
             
                #   resp.logging_configuration.logging_filter.filters[0].conditions #=> Array
         
     | 
| 
       5984 
     | 
    
         
            -
                #   resp.logging_configuration.logging_filter.filters[0].conditions[0].action_condition.action #=> String, one of "ALLOW", "BLOCK", "COUNT", "CAPTCHA", "EXCLUDED_AS_COUNT"
         
     | 
| 
      
 6807 
     | 
    
         
            +
                #   resp.logging_configuration.logging_filter.filters[0].conditions[0].action_condition.action #=> String, one of "ALLOW", "BLOCK", "COUNT", "CAPTCHA", "CHALLENGE", "EXCLUDED_AS_COUNT"
         
     | 
| 
       5985 
6808 
     | 
    
         
             
                #   resp.logging_configuration.logging_filter.filters[0].conditions[0].label_name_condition.label_name #=> String
         
     | 
| 
       5986 
6809 
     | 
    
         
             
                #   resp.logging_configuration.logging_filter.default_behavior #=> String, one of "KEEP", "DROP"
         
     | 
| 
       5987 
6810 
     | 
    
         
             
                #
         
     | 
| 
         @@ -6911,6 +7734,65 @@ module Aws::WAFV2 
     | 
|
| 
       6911 
7734 
     | 
    
         
             
                #                 name: "EntityName", # required
         
     | 
| 
       6912 
7735 
     | 
    
         
             
                #               },
         
     | 
| 
       6913 
7736 
     | 
    
         
             
                #             ],
         
     | 
| 
      
 7737 
     | 
    
         
            +
                #             rule_action_overrides: [
         
     | 
| 
      
 7738 
     | 
    
         
            +
                #               {
         
     | 
| 
      
 7739 
     | 
    
         
            +
                #                 name: "EntityName", # required
         
     | 
| 
      
 7740 
     | 
    
         
            +
                #                 action_to_use: { # required
         
     | 
| 
      
 7741 
     | 
    
         
            +
                #                   block: {
         
     | 
| 
      
 7742 
     | 
    
         
            +
                #                     custom_response: {
         
     | 
| 
      
 7743 
     | 
    
         
            +
                #                       response_code: 1, # required
         
     | 
| 
      
 7744 
     | 
    
         
            +
                #                       custom_response_body_key: "EntityName",
         
     | 
| 
      
 7745 
     | 
    
         
            +
                #                       response_headers: [
         
     | 
| 
      
 7746 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 7747 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 7748 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 7749 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 7750 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 7751 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 7752 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 7753 
     | 
    
         
            +
                #                   allow: {
         
     | 
| 
      
 7754 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 7755 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 7756 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 7757 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 7758 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 7759 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 7760 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 7761 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 7762 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 7763 
     | 
    
         
            +
                #                   count: {
         
     | 
| 
      
 7764 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 7765 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 7766 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 7767 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 7768 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 7769 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 7770 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 7771 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 7772 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 7773 
     | 
    
         
            +
                #                   captcha: {
         
     | 
| 
      
 7774 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 7775 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 7776 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 7777 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 7778 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 7779 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 7780 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 7781 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 7782 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 7783 
     | 
    
         
            +
                #                   challenge: {
         
     | 
| 
      
 7784 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 7785 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 7786 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 7787 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 7788 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 7789 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 7790 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 7791 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 7792 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 7793 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 7794 
     | 
    
         
            +
                #               },
         
     | 
| 
      
 7795 
     | 
    
         
            +
                #             ],
         
     | 
| 
       6914 
7796 
     | 
    
         
             
                #           },
         
     | 
| 
       6915 
7797 
     | 
    
         
             
                #           ip_set_reference_statement: {
         
     | 
| 
       6916 
7798 
     | 
    
         
             
                #             arn: "ResourceArn", # required
         
     | 
| 
         @@ -7030,6 +7912,68 @@ module Aws::WAFV2 
     | 
|
| 
       7030 
7912 
     | 
    
         
             
                #                 password_field: {
         
     | 
| 
       7031 
7913 
     | 
    
         
             
                #                   identifier: "FieldIdentifier", # required
         
     | 
| 
       7032 
7914 
     | 
    
         
             
                #                 },
         
     | 
| 
      
 7915 
     | 
    
         
            +
                #                 aws_managed_rules_bot_control_rule_set: {
         
     | 
| 
      
 7916 
     | 
    
         
            +
                #                   inspection_level: "COMMON", # required, accepts COMMON, TARGETED
         
     | 
| 
      
 7917 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 7918 
     | 
    
         
            +
                #               },
         
     | 
| 
      
 7919 
     | 
    
         
            +
                #             ],
         
     | 
| 
      
 7920 
     | 
    
         
            +
                #             rule_action_overrides: [
         
     | 
| 
      
 7921 
     | 
    
         
            +
                #               {
         
     | 
| 
      
 7922 
     | 
    
         
            +
                #                 name: "EntityName", # required
         
     | 
| 
      
 7923 
     | 
    
         
            +
                #                 action_to_use: { # required
         
     | 
| 
      
 7924 
     | 
    
         
            +
                #                   block: {
         
     | 
| 
      
 7925 
     | 
    
         
            +
                #                     custom_response: {
         
     | 
| 
      
 7926 
     | 
    
         
            +
                #                       response_code: 1, # required
         
     | 
| 
      
 7927 
     | 
    
         
            +
                #                       custom_response_body_key: "EntityName",
         
     | 
| 
      
 7928 
     | 
    
         
            +
                #                       response_headers: [
         
     | 
| 
      
 7929 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 7930 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 7931 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 7932 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 7933 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 7934 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 7935 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 7936 
     | 
    
         
            +
                #                   allow: {
         
     | 
| 
      
 7937 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 7938 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 7939 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 7940 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 7941 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 7942 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 7943 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 7944 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 7945 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 7946 
     | 
    
         
            +
                #                   count: {
         
     | 
| 
      
 7947 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 7948 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 7949 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 7950 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 7951 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 7952 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 7953 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 7954 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 7955 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 7956 
     | 
    
         
            +
                #                   captcha: {
         
     | 
| 
      
 7957 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 7958 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 7959 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 7960 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 7961 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 7962 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 7963 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 7964 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 7965 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 7966 
     | 
    
         
            +
                #                   challenge: {
         
     | 
| 
      
 7967 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 7968 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 7969 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 7970 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 7971 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 7972 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 7973 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 7974 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 7975 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 7976 
     | 
    
         
            +
                #                 },
         
     | 
| 
       7033 
7977 
     | 
    
         
             
                #               },
         
     | 
| 
       7034 
7978 
     | 
    
         
             
                #             ],
         
     | 
| 
       7035 
7979 
     | 
    
         
             
                #           },
         
     | 
| 
         @@ -7139,6 +8083,16 @@ module Aws::WAFV2 
     | 
|
| 
       7139 
8083 
     | 
    
         
             
                #               ],
         
     | 
| 
       7140 
8084 
     | 
    
         
             
                #             },
         
     | 
| 
       7141 
8085 
     | 
    
         
             
                #           },
         
     | 
| 
      
 8086 
     | 
    
         
            +
                #           challenge: {
         
     | 
| 
      
 8087 
     | 
    
         
            +
                #             custom_request_handling: {
         
     | 
| 
      
 8088 
     | 
    
         
            +
                #               insert_headers: [ # required
         
     | 
| 
      
 8089 
     | 
    
         
            +
                #                 {
         
     | 
| 
      
 8090 
     | 
    
         
            +
                #                   name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 8091 
     | 
    
         
            +
                #                   value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 8092 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 8093 
     | 
    
         
            +
                #               ],
         
     | 
| 
      
 8094 
     | 
    
         
            +
                #             },
         
     | 
| 
      
 8095 
     | 
    
         
            +
                #           },
         
     | 
| 
       7142 
8096 
     | 
    
         
             
                #         },
         
     | 
| 
       7143 
8097 
     | 
    
         
             
                #         override_action: {
         
     | 
| 
       7144 
8098 
     | 
    
         
             
                #           count: {
         
     | 
| 
         @@ -7169,6 +8123,11 @@ module Aws::WAFV2 
     | 
|
| 
       7169 
8123 
     | 
    
         
             
                #             immunity_time: 1, # required
         
     | 
| 
       7170 
8124 
     | 
    
         
             
                #           },
         
     | 
| 
       7171 
8125 
     | 
    
         
             
                #         },
         
     | 
| 
      
 8126 
     | 
    
         
            +
                #         challenge_config: {
         
     | 
| 
      
 8127 
     | 
    
         
            +
                #           immunity_time_property: {
         
     | 
| 
      
 8128 
     | 
    
         
            +
                #             immunity_time: 1, # required
         
     | 
| 
      
 8129 
     | 
    
         
            +
                #           },
         
     | 
| 
      
 8130 
     | 
    
         
            +
                #         },
         
     | 
| 
       7172 
8131 
     | 
    
         
             
                #       },
         
     | 
| 
       7173 
8132 
     | 
    
         
             
                #     ],
         
     | 
| 
       7174 
8133 
     | 
    
         
             
                #     visibility_config: { # required
         
     | 
| 
         @@ -7310,6 +8269,24 @@ module Aws::WAFV2 
     | 
|
| 
       7310 
8269 
     | 
    
         
             
                #   don't have their own `CaptchaConfig` settings. If you don't specify
         
     | 
| 
       7311 
8270 
     | 
    
         
             
                #   this, WAF uses its default settings for `CaptchaConfig`.
         
     | 
| 
       7312 
8271 
     | 
    
         
             
                #
         
     | 
| 
      
 8272 
     | 
    
         
            +
                # @option params [Types::ChallengeConfig] :challenge_config
         
     | 
| 
      
 8273 
     | 
    
         
            +
                #   Specifies how WAF should handle challenge evaluations for rules that
         
     | 
| 
      
 8274 
     | 
    
         
            +
                #   don't have their own `ChallengeConfig` settings. If you don't
         
     | 
| 
      
 8275 
     | 
    
         
            +
                #   specify this, WAF uses its default settings for `ChallengeConfig`.
         
     | 
| 
      
 8276 
     | 
    
         
            +
                #
         
     | 
| 
      
 8277 
     | 
    
         
            +
                # @option params [Array<String>] :token_domains
         
     | 
| 
      
 8278 
     | 
    
         
            +
                #   Specifies the domains that WAF should accept in a web request token.
         
     | 
| 
      
 8279 
     | 
    
         
            +
                #   This enables the use of tokens across multiple protected websites.
         
     | 
| 
      
 8280 
     | 
    
         
            +
                #   When WAF provides a token, it uses the domain of the Amazon Web
         
     | 
| 
      
 8281 
     | 
    
         
            +
                #   Services resource that the web ACL is protecting. If you don't
         
     | 
| 
      
 8282 
     | 
    
         
            +
                #   specify a list of token domains, WAF accepts tokens only for the
         
     | 
| 
      
 8283 
     | 
    
         
            +
                #   domain of the protected resource. With a token domain list, WAF
         
     | 
| 
      
 8284 
     | 
    
         
            +
                #   accepts the resource's host domain plus all domains in the token
         
     | 
| 
      
 8285 
     | 
    
         
            +
                #   domain list, including their prefixed subdomains.
         
     | 
| 
      
 8286 
     | 
    
         
            +
                #
         
     | 
| 
      
 8287 
     | 
    
         
            +
                #   Example JSON: `"TokenDomains": \{ "mywebsite.com",
         
     | 
| 
      
 8288 
     | 
    
         
            +
                #   "myotherwebsite.com" \}`
         
     | 
| 
      
 8289 
     | 
    
         
            +
                #
         
     | 
| 
       7313 
8290 
     | 
    
         
             
                # @return [Types::UpdateWebACLResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         
     | 
| 
       7314 
8291 
     | 
    
         
             
                #
         
     | 
| 
       7315 
8292 
     | 
    
         
             
                #   * {Types::UpdateWebACLResponse#next_lock_token #next_lock_token} => String
         
     | 
| 
         @@ -7597,6 +8574,65 @@ module Aws::WAFV2 
     | 
|
| 
       7597 
8574 
     | 
    
         
             
                #                 name: "EntityName", # required
         
     | 
| 
       7598 
8575 
     | 
    
         
             
                #               },
         
     | 
| 
       7599 
8576 
     | 
    
         
             
                #             ],
         
     | 
| 
      
 8577 
     | 
    
         
            +
                #             rule_action_overrides: [
         
     | 
| 
      
 8578 
     | 
    
         
            +
                #               {
         
     | 
| 
      
 8579 
     | 
    
         
            +
                #                 name: "EntityName", # required
         
     | 
| 
      
 8580 
     | 
    
         
            +
                #                 action_to_use: { # required
         
     | 
| 
      
 8581 
     | 
    
         
            +
                #                   block: {
         
     | 
| 
      
 8582 
     | 
    
         
            +
                #                     custom_response: {
         
     | 
| 
      
 8583 
     | 
    
         
            +
                #                       response_code: 1, # required
         
     | 
| 
      
 8584 
     | 
    
         
            +
                #                       custom_response_body_key: "EntityName",
         
     | 
| 
      
 8585 
     | 
    
         
            +
                #                       response_headers: [
         
     | 
| 
      
 8586 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 8587 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 8588 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 8589 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 8590 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 8591 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 8592 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 8593 
     | 
    
         
            +
                #                   allow: {
         
     | 
| 
      
 8594 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 8595 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 8596 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 8597 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 8598 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 8599 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 8600 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 8601 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 8602 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 8603 
     | 
    
         
            +
                #                   count: {
         
     | 
| 
      
 8604 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 8605 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 8606 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 8607 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 8608 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 8609 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 8610 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 8611 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 8612 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 8613 
     | 
    
         
            +
                #                   captcha: {
         
     | 
| 
      
 8614 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 8615 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 8616 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 8617 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 8618 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 8619 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 8620 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 8621 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 8622 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 8623 
     | 
    
         
            +
                #                   challenge: {
         
     | 
| 
      
 8624 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 8625 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 8626 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 8627 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 8628 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 8629 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 8630 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 8631 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 8632 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 8633 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 8634 
     | 
    
         
            +
                #               },
         
     | 
| 
      
 8635 
     | 
    
         
            +
                #             ],
         
     | 
| 
       7600 
8636 
     | 
    
         
             
                #           },
         
     | 
| 
       7601 
8637 
     | 
    
         
             
                #           ip_set_reference_statement: {
         
     | 
| 
       7602 
8638 
     | 
    
         
             
                #             arn: "ResourceArn", # required
         
     | 
| 
         @@ -7716,6 +8752,68 @@ module Aws::WAFV2 
     | 
|
| 
       7716 
8752 
     | 
    
         
             
                #                 password_field: {
         
     | 
| 
       7717 
8753 
     | 
    
         
             
                #                   identifier: "FieldIdentifier", # required
         
     | 
| 
       7718 
8754 
     | 
    
         
             
                #                 },
         
     | 
| 
      
 8755 
     | 
    
         
            +
                #                 aws_managed_rules_bot_control_rule_set: {
         
     | 
| 
      
 8756 
     | 
    
         
            +
                #                   inspection_level: "COMMON", # required, accepts COMMON, TARGETED
         
     | 
| 
      
 8757 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 8758 
     | 
    
         
            +
                #               },
         
     | 
| 
      
 8759 
     | 
    
         
            +
                #             ],
         
     | 
| 
      
 8760 
     | 
    
         
            +
                #             rule_action_overrides: [
         
     | 
| 
      
 8761 
     | 
    
         
            +
                #               {
         
     | 
| 
      
 8762 
     | 
    
         
            +
                #                 name: "EntityName", # required
         
     | 
| 
      
 8763 
     | 
    
         
            +
                #                 action_to_use: { # required
         
     | 
| 
      
 8764 
     | 
    
         
            +
                #                   block: {
         
     | 
| 
      
 8765 
     | 
    
         
            +
                #                     custom_response: {
         
     | 
| 
      
 8766 
     | 
    
         
            +
                #                       response_code: 1, # required
         
     | 
| 
      
 8767 
     | 
    
         
            +
                #                       custom_response_body_key: "EntityName",
         
     | 
| 
      
 8768 
     | 
    
         
            +
                #                       response_headers: [
         
     | 
| 
      
 8769 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 8770 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 8771 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 8772 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 8773 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 8774 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 8775 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 8776 
     | 
    
         
            +
                #                   allow: {
         
     | 
| 
      
 8777 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 8778 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 8779 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 8780 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 8781 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 8782 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 8783 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 8784 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 8785 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 8786 
     | 
    
         
            +
                #                   count: {
         
     | 
| 
      
 8787 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 8788 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 8789 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 8790 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 8791 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 8792 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 8793 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 8794 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 8795 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 8796 
     | 
    
         
            +
                #                   captcha: {
         
     | 
| 
      
 8797 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 8798 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 8799 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 8800 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 8801 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 8802 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 8803 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 8804 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 8805 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 8806 
     | 
    
         
            +
                #                   challenge: {
         
     | 
| 
      
 8807 
     | 
    
         
            +
                #                     custom_request_handling: {
         
     | 
| 
      
 8808 
     | 
    
         
            +
                #                       insert_headers: [ # required
         
     | 
| 
      
 8809 
     | 
    
         
            +
                #                         {
         
     | 
| 
      
 8810 
     | 
    
         
            +
                #                           name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 8811 
     | 
    
         
            +
                #                           value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 8812 
     | 
    
         
            +
                #                         },
         
     | 
| 
      
 8813 
     | 
    
         
            +
                #                       ],
         
     | 
| 
      
 8814 
     | 
    
         
            +
                #                     },
         
     | 
| 
      
 8815 
     | 
    
         
            +
                #                   },
         
     | 
| 
      
 8816 
     | 
    
         
            +
                #                 },
         
     | 
| 
       7719 
8817 
     | 
    
         
             
                #               },
         
     | 
| 
       7720 
8818 
     | 
    
         
             
                #             ],
         
     | 
| 
       7721 
8819 
     | 
    
         
             
                #           },
         
     | 
| 
         @@ -7825,6 +8923,16 @@ module Aws::WAFV2 
     | 
|
| 
       7825 
8923 
     | 
    
         
             
                #               ],
         
     | 
| 
       7826 
8924 
     | 
    
         
             
                #             },
         
     | 
| 
       7827 
8925 
     | 
    
         
             
                #           },
         
     | 
| 
      
 8926 
     | 
    
         
            +
                #           challenge: {
         
     | 
| 
      
 8927 
     | 
    
         
            +
                #             custom_request_handling: {
         
     | 
| 
      
 8928 
     | 
    
         
            +
                #               insert_headers: [ # required
         
     | 
| 
      
 8929 
     | 
    
         
            +
                #                 {
         
     | 
| 
      
 8930 
     | 
    
         
            +
                #                   name: "CustomHTTPHeaderName", # required
         
     | 
| 
      
 8931 
     | 
    
         
            +
                #                   value: "CustomHTTPHeaderValue", # required
         
     | 
| 
      
 8932 
     | 
    
         
            +
                #                 },
         
     | 
| 
      
 8933 
     | 
    
         
            +
                #               ],
         
     | 
| 
      
 8934 
     | 
    
         
            +
                #             },
         
     | 
| 
      
 8935 
     | 
    
         
            +
                #           },
         
     | 
| 
       7828 
8936 
     | 
    
         
             
                #         },
         
     | 
| 
       7829 
8937 
     | 
    
         
             
                #         override_action: {
         
     | 
| 
       7830 
8938 
     | 
    
         
             
                #           count: {
         
     | 
| 
         @@ -7855,6 +8963,11 @@ module Aws::WAFV2 
     | 
|
| 
       7855 
8963 
     | 
    
         
             
                #             immunity_time: 1, # required
         
     | 
| 
       7856 
8964 
     | 
    
         
             
                #           },
         
     | 
| 
       7857 
8965 
     | 
    
         
             
                #         },
         
     | 
| 
      
 8966 
     | 
    
         
            +
                #         challenge_config: {
         
     | 
| 
      
 8967 
     | 
    
         
            +
                #           immunity_time_property: {
         
     | 
| 
      
 8968 
     | 
    
         
            +
                #             immunity_time: 1, # required
         
     | 
| 
      
 8969 
     | 
    
         
            +
                #           },
         
     | 
| 
      
 8970 
     | 
    
         
            +
                #         },
         
     | 
| 
       7858 
8971 
     | 
    
         
             
                #       },
         
     | 
| 
       7859 
8972 
     | 
    
         
             
                #     ],
         
     | 
| 
       7860 
8973 
     | 
    
         
             
                #     visibility_config: { # required
         
     | 
| 
         @@ -7874,6 +8987,12 @@ module Aws::WAFV2 
     | 
|
| 
       7874 
8987 
     | 
    
         
             
                #         immunity_time: 1, # required
         
     | 
| 
       7875 
8988 
     | 
    
         
             
                #       },
         
     | 
| 
       7876 
8989 
     | 
    
         
             
                #     },
         
     | 
| 
      
 8990 
     | 
    
         
            +
                #     challenge_config: {
         
     | 
| 
      
 8991 
     | 
    
         
            +
                #       immunity_time_property: {
         
     | 
| 
      
 8992 
     | 
    
         
            +
                #         immunity_time: 1, # required
         
     | 
| 
      
 8993 
     | 
    
         
            +
                #       },
         
     | 
| 
      
 8994 
     | 
    
         
            +
                #     },
         
     | 
| 
      
 8995 
     | 
    
         
            +
                #     token_domains: ["TokenDomain"],
         
     | 
| 
       7877 
8996 
     | 
    
         
             
                #   })
         
     | 
| 
       7878 
8997 
     | 
    
         
             
                #
         
     | 
| 
       7879 
8998 
     | 
    
         
             
                # @example Response structure
         
     | 
| 
         @@ -7902,7 +9021,7 @@ module Aws::WAFV2 
     | 
|
| 
       7902 
9021 
     | 
    
         
             
                    params: params,
         
     | 
| 
       7903 
9022 
     | 
    
         
             
                    config: config)
         
     | 
| 
       7904 
9023 
     | 
    
         
             
                  context[:gem_name] = 'aws-sdk-wafv2'
         
     | 
| 
       7905 
     | 
    
         
            -
                  context[:gem_version] = '1. 
     | 
| 
      
 9024 
     | 
    
         
            +
                  context[:gem_version] = '1.44.0'
         
     | 
| 
       7906 
9025 
     | 
    
         
             
                  Seahorse::Client::Request.new(handlers, context)
         
     | 
| 
       7907 
9026 
     | 
    
         
             
                end
         
     | 
| 
       7908 
9027 
     | 
    
         |