aws-sdk-wafv2 1.54.0 → 1.56.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 +284 -38
 - data/lib/aws-sdk-wafv2/client_api.rb +82 -0
 - data/lib/aws-sdk-wafv2/endpoints.rb +42 -0
 - data/lib/aws-sdk-wafv2/plugins/endpoints.rb +6 -0
 - data/lib/aws-sdk-wafv2/types.rb +304 -70
 - data/lib/aws-sdk-wafv2.rb +1 -1
 - metadata +2 -2
 
    
        data/lib/aws-sdk-wafv2/types.rb
    CHANGED
    
    | 
         @@ -10,6 +10,47 @@ 
     | 
|
| 
       10 
10 
     | 
    
         
             
            module Aws::WAFV2
         
     | 
| 
       11 
11 
     | 
    
         
             
              module Types
         
     | 
| 
       12 
12 
     | 
    
         | 
| 
      
 13 
     | 
    
         
            +
                # Information for a single API key.
         
     | 
| 
      
 14 
     | 
    
         
            +
                #
         
     | 
| 
      
 15 
     | 
    
         
            +
                # API keys are required for the integration of the CAPTCHA API in your
         
     | 
| 
      
 16 
     | 
    
         
            +
                # JavaScript client applications. The API lets you customize the
         
     | 
| 
      
 17 
     | 
    
         
            +
                # placement and characteristics of the CAPTCHA puzzle for your end
         
     | 
| 
      
 18 
     | 
    
         
            +
                # users. For more information about the CAPTCHA JavaScript integration,
         
     | 
| 
      
 19 
     | 
    
         
            +
                # see [WAF client application integration][1] in the *WAF Developer
         
     | 
| 
      
 20 
     | 
    
         
            +
                # Guide*.
         
     | 
| 
      
 21 
     | 
    
         
            +
                #
         
     | 
| 
      
 22 
     | 
    
         
            +
                #
         
     | 
| 
      
 23 
     | 
    
         
            +
                #
         
     | 
| 
      
 24 
     | 
    
         
            +
                # [1]: https://docs.aws.amazon.com/waf/latest/developerguide/waf-application-integration.html
         
     | 
| 
      
 25 
     | 
    
         
            +
                #
         
     | 
| 
      
 26 
     | 
    
         
            +
                # @!attribute [rw] token_domains
         
     | 
| 
      
 27 
     | 
    
         
            +
                #   The token domains that are defined in this API key.
         
     | 
| 
      
 28 
     | 
    
         
            +
                #   @return [Array<String>]
         
     | 
| 
      
 29 
     | 
    
         
            +
                #
         
     | 
| 
      
 30 
     | 
    
         
            +
                # @!attribute [rw] api_key
         
     | 
| 
      
 31 
     | 
    
         
            +
                #   The generated, encrypted API key. You can copy this for use in your
         
     | 
| 
      
 32 
     | 
    
         
            +
                #   JavaScript CAPTCHA integration.
         
     | 
| 
      
 33 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 34 
     | 
    
         
            +
                #
         
     | 
| 
      
 35 
     | 
    
         
            +
                # @!attribute [rw] creation_timestamp
         
     | 
| 
      
 36 
     | 
    
         
            +
                #   The date and time that the key was created.
         
     | 
| 
      
 37 
     | 
    
         
            +
                #   @return [Time]
         
     | 
| 
      
 38 
     | 
    
         
            +
                #
         
     | 
| 
      
 39 
     | 
    
         
            +
                # @!attribute [rw] version
         
     | 
| 
      
 40 
     | 
    
         
            +
                #   Internal value used by WAF to manage the key.
         
     | 
| 
      
 41 
     | 
    
         
            +
                #   @return [Integer]
         
     | 
| 
      
 42 
     | 
    
         
            +
                #
         
     | 
| 
      
 43 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/APIKeySummary AWS API Documentation
         
     | 
| 
      
 44 
     | 
    
         
            +
                #
         
     | 
| 
      
 45 
     | 
    
         
            +
                class APIKeySummary < Struct.new(
         
     | 
| 
      
 46 
     | 
    
         
            +
                  :token_domains,
         
     | 
| 
      
 47 
     | 
    
         
            +
                  :api_key,
         
     | 
| 
      
 48 
     | 
    
         
            +
                  :creation_timestamp,
         
     | 
| 
      
 49 
     | 
    
         
            +
                  :version)
         
     | 
| 
      
 50 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 51 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 52 
     | 
    
         
            +
                end
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
       13 
54 
     | 
    
         
             
                # Details for your use of the account takeover prevention managed rule
         
     | 
| 
       14 
55 
     | 
    
         
             
                # group, `AWSManagedRulesATPRuleSet`. This configuration is used in
         
     | 
| 
       15 
56 
     | 
    
         
             
                # `ManagedRuleGroupConfig`.
         
     | 
| 
         @@ -200,6 +241,10 @@ module Aws::WAFV2 
     | 
|
| 
       200 
241 
     | 
    
         
             
                #   * For an App Runner service:
         
     | 
| 
       201 
242 
     | 
    
         
             
                #     `arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id
         
     | 
| 
       202 
243 
     | 
    
         
             
                #     `
         
     | 
| 
      
 244 
     | 
    
         
            +
                #
         
     | 
| 
      
 245 
     | 
    
         
            +
                #   * For an Amazon Web Services Verified Access instance:
         
     | 
| 
      
 246 
     | 
    
         
            +
                #     `arn:partition:ec2:region:account-id:verified-access-instance/instance-id
         
     | 
| 
      
 247 
     | 
    
         
            +
                #     `
         
     | 
| 
       203 
248 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       204 
249 
     | 
    
         
             
                #
         
     | 
| 
       205 
250 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/AssociateWebACLRequest AWS API Documentation
         
     | 
| 
         @@ -642,8 +687,8 @@ module Aws::WAFV2 
     | 
|
| 
       642 
687 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       643 
688 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       644 
689 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       645 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       646 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 690 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 691 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       647 
692 
     | 
    
         
             
                #
         
     | 
| 
       648 
693 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       649 
694 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -818,6 +863,54 @@ module Aws::WAFV2 
     | 
|
| 
       818 
863 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       819 
864 
     | 
    
         
             
                end
         
     | 
| 
       820 
865 
     | 
    
         | 
| 
      
 866 
     | 
    
         
            +
                # @!attribute [rw] scope
         
     | 
| 
      
 867 
     | 
    
         
            +
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
      
 868 
     | 
    
         
            +
                #   for a regional application. A regional application can be an
         
     | 
| 
      
 869 
     | 
    
         
            +
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
      
 870 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 871 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
      
 872 
     | 
    
         
            +
                #
         
     | 
| 
      
 873 
     | 
    
         
            +
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
      
 874 
     | 
    
         
            +
                #   (N. Virginia) as follows:
         
     | 
| 
      
 875 
     | 
    
         
            +
                #
         
     | 
| 
      
 876 
     | 
    
         
            +
                #   * CLI - Specify the Region when you use the CloudFront scope:
         
     | 
| 
      
 877 
     | 
    
         
            +
                #     `--scope=CLOUDFRONT --region=us-east-1`.
         
     | 
| 
      
 878 
     | 
    
         
            +
                #
         
     | 
| 
      
 879 
     | 
    
         
            +
                #   * API and SDKs - For all calls, use the Region endpoint us-east-1.
         
     | 
| 
      
 880 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 881 
     | 
    
         
            +
                #
         
     | 
| 
      
 882 
     | 
    
         
            +
                # @!attribute [rw] token_domains
         
     | 
| 
      
 883 
     | 
    
         
            +
                #   The client application domains that you want to use this API key
         
     | 
| 
      
 884 
     | 
    
         
            +
                #   for.
         
     | 
| 
      
 885 
     | 
    
         
            +
                #
         
     | 
| 
      
 886 
     | 
    
         
            +
                #   Example JSON: `"TokenDomains": ["abc.com", "store.abc.com"]`
         
     | 
| 
      
 887 
     | 
    
         
            +
                #
         
     | 
| 
      
 888 
     | 
    
         
            +
                #   Public suffixes aren't allowed. For example, you can't use
         
     | 
| 
      
 889 
     | 
    
         
            +
                #   `usa.gov` or `co.uk` as token domains.
         
     | 
| 
      
 890 
     | 
    
         
            +
                #   @return [Array<String>]
         
     | 
| 
      
 891 
     | 
    
         
            +
                #
         
     | 
| 
      
 892 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/CreateAPIKeyRequest AWS API Documentation
         
     | 
| 
      
 893 
     | 
    
         
            +
                #
         
     | 
| 
      
 894 
     | 
    
         
            +
                class CreateAPIKeyRequest < Struct.new(
         
     | 
| 
      
 895 
     | 
    
         
            +
                  :scope,
         
     | 
| 
      
 896 
     | 
    
         
            +
                  :token_domains)
         
     | 
| 
      
 897 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 898 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 899 
     | 
    
         
            +
                end
         
     | 
| 
      
 900 
     | 
    
         
            +
             
     | 
| 
      
 901 
     | 
    
         
            +
                # @!attribute [rw] api_key
         
     | 
| 
      
 902 
     | 
    
         
            +
                #   The generated, encrypted API key. You can copy this for use in your
         
     | 
| 
      
 903 
     | 
    
         
            +
                #   JavaScript CAPTCHA integration.
         
     | 
| 
      
 904 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 905 
     | 
    
         
            +
                #
         
     | 
| 
      
 906 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/CreateAPIKeyResponse AWS API Documentation
         
     | 
| 
      
 907 
     | 
    
         
            +
                #
         
     | 
| 
      
 908 
     | 
    
         
            +
                class CreateAPIKeyResponse < Struct.new(
         
     | 
| 
      
 909 
     | 
    
         
            +
                  :api_key)
         
     | 
| 
      
 910 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 911 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 912 
     | 
    
         
            +
                end
         
     | 
| 
      
 913 
     | 
    
         
            +
             
     | 
| 
       821 
914 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
       822 
915 
     | 
    
         
             
                #   The name of the IP set. You cannot change the name of an `IPSet`
         
     | 
| 
       823 
916 
     | 
    
         
             
                #   after you create it.
         
     | 
| 
         @@ -827,8 +920,8 @@ module Aws::WAFV2 
     | 
|
| 
       827 
920 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       828 
921 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       829 
922 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       830 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       831 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 923 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 924 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       832 
925 
     | 
    
         
             
                #
         
     | 
| 
       833 
926 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       834 
927 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -934,8 +1027,8 @@ module Aws::WAFV2 
     | 
|
| 
       934 
1027 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       935 
1028 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       936 
1029 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       937 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       938 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 1030 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 1031 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       939 
1032 
     | 
    
         
             
                #
         
     | 
| 
       940 
1033 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       941 
1034 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -995,8 +1088,8 @@ module Aws::WAFV2 
     | 
|
| 
       995 
1088 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       996 
1089 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       997 
1090 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       998 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       999 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 1091 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 1092 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       1000 
1093 
     | 
    
         
             
                #
         
     | 
| 
       1001 
1094 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       1002 
1095 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -1110,8 +1203,8 @@ module Aws::WAFV2 
     | 
|
| 
       1110 
1203 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       1111 
1204 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       1112 
1205 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       1113 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       1114 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 1206 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 1207 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       1115 
1208 
     | 
    
         
             
                #
         
     | 
| 
       1116 
1209 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       1117 
1210 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -1474,8 +1567,8 @@ module Aws::WAFV2 
     | 
|
| 
       1474 
1567 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       1475 
1568 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       1476 
1569 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       1477 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       1478 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 1570 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 1571 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       1479 
1572 
     | 
    
         
             
                #
         
     | 
| 
       1480 
1573 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       1481 
1574 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -1564,8 +1657,8 @@ module Aws::WAFV2 
     | 
|
| 
       1564 
1657 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       1565 
1658 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       1566 
1659 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       1567 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       1568 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 1660 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 1661 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       1569 
1662 
     | 
    
         
             
                #
         
     | 
| 
       1570 
1663 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       1571 
1664 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -1618,8 +1711,8 @@ module Aws::WAFV2 
     | 
|
| 
       1618 
1711 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       1619 
1712 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       1620 
1713 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       1621 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       1622 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 1714 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 1715 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       1623 
1716 
     | 
    
         
             
                #
         
     | 
| 
       1624 
1717 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       1625 
1718 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -1672,8 +1765,8 @@ module Aws::WAFV2 
     | 
|
| 
       1672 
1765 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       1673 
1766 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       1674 
1767 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       1675 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       1676 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 1768 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 1769 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       1677 
1770 
     | 
    
         
             
                #
         
     | 
| 
       1678 
1771 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       1679 
1772 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -1731,8 +1824,8 @@ module Aws::WAFV2 
     | 
|
| 
       1731 
1824 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       1732 
1825 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       1733 
1826 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       1734 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       1735 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 1827 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 1828 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       1736 
1829 
     | 
    
         
             
                #
         
     | 
| 
       1737 
1830 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       1738 
1831 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -1866,6 +1959,10 @@ module Aws::WAFV2 
     | 
|
| 
       1866 
1959 
     | 
    
         
             
                #   * For an App Runner service:
         
     | 
| 
       1867 
1960 
     | 
    
         
             
                #     `arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id
         
     | 
| 
       1868 
1961 
     | 
    
         
             
                #     `
         
     | 
| 
      
 1962 
     | 
    
         
            +
                #
         
     | 
| 
      
 1963 
     | 
    
         
            +
                #   * For an Amazon Web Services Verified Access instance:
         
     | 
| 
      
 1964 
     | 
    
         
            +
                #     `arn:partition:ec2:region:account-id:verified-access-instance/instance-id
         
     | 
| 
      
 1965 
     | 
    
         
            +
                #     `
         
     | 
| 
       1869 
1966 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       1870 
1967 
     | 
    
         
             
                #
         
     | 
| 
       1871 
1968 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/DisassociateWebACLRequest AWS API Documentation
         
     | 
| 
         @@ -2295,6 +2392,52 @@ module Aws::WAFV2 
     | 
|
| 
       2295 
2392 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2296 
2393 
     | 
    
         
             
                end
         
     | 
| 
       2297 
2394 
     | 
    
         | 
| 
      
 2395 
     | 
    
         
            +
                # @!attribute [rw] scope
         
     | 
| 
      
 2396 
     | 
    
         
            +
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
      
 2397 
     | 
    
         
            +
                #   for a regional application. A regional application can be an
         
     | 
| 
      
 2398 
     | 
    
         
            +
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
      
 2399 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 2400 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
      
 2401 
     | 
    
         
            +
                #
         
     | 
| 
      
 2402 
     | 
    
         
            +
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
      
 2403 
     | 
    
         
            +
                #   (N. Virginia) as follows:
         
     | 
| 
      
 2404 
     | 
    
         
            +
                #
         
     | 
| 
      
 2405 
     | 
    
         
            +
                #   * CLI - Specify the Region when you use the CloudFront scope:
         
     | 
| 
      
 2406 
     | 
    
         
            +
                #     `--scope=CLOUDFRONT --region=us-east-1`.
         
     | 
| 
      
 2407 
     | 
    
         
            +
                #
         
     | 
| 
      
 2408 
     | 
    
         
            +
                #   * API and SDKs - For all calls, use the Region endpoint us-east-1.
         
     | 
| 
      
 2409 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2410 
     | 
    
         
            +
                #
         
     | 
| 
      
 2411 
     | 
    
         
            +
                # @!attribute [rw] api_key
         
     | 
| 
      
 2412 
     | 
    
         
            +
                #   The encrypted API key.
         
     | 
| 
      
 2413 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2414 
     | 
    
         
            +
                #
         
     | 
| 
      
 2415 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/GetDecryptedAPIKeyRequest AWS API Documentation
         
     | 
| 
      
 2416 
     | 
    
         
            +
                #
         
     | 
| 
      
 2417 
     | 
    
         
            +
                class GetDecryptedAPIKeyRequest < Struct.new(
         
     | 
| 
      
 2418 
     | 
    
         
            +
                  :scope,
         
     | 
| 
      
 2419 
     | 
    
         
            +
                  :api_key)
         
     | 
| 
      
 2420 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 2421 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 2422 
     | 
    
         
            +
                end
         
     | 
| 
      
 2423 
     | 
    
         
            +
             
     | 
| 
      
 2424 
     | 
    
         
            +
                # @!attribute [rw] token_domains
         
     | 
| 
      
 2425 
     | 
    
         
            +
                #   The token domains that are defined in this API key.
         
     | 
| 
      
 2426 
     | 
    
         
            +
                #   @return [Array<String>]
         
     | 
| 
      
 2427 
     | 
    
         
            +
                #
         
     | 
| 
      
 2428 
     | 
    
         
            +
                # @!attribute [rw] creation_timestamp
         
     | 
| 
      
 2429 
     | 
    
         
            +
                #   The date and time that the key was created.
         
     | 
| 
      
 2430 
     | 
    
         
            +
                #   @return [Time]
         
     | 
| 
      
 2431 
     | 
    
         
            +
                #
         
     | 
| 
      
 2432 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/GetDecryptedAPIKeyResponse AWS API Documentation
         
     | 
| 
      
 2433 
     | 
    
         
            +
                #
         
     | 
| 
      
 2434 
     | 
    
         
            +
                class GetDecryptedAPIKeyResponse < Struct.new(
         
     | 
| 
      
 2435 
     | 
    
         
            +
                  :token_domains,
         
     | 
| 
      
 2436 
     | 
    
         
            +
                  :creation_timestamp)
         
     | 
| 
      
 2437 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 2438 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 2439 
     | 
    
         
            +
                end
         
     | 
| 
      
 2440 
     | 
    
         
            +
             
     | 
| 
       2298 
2441 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
       2299 
2442 
     | 
    
         
             
                #   The name of the IP set. You cannot change the name of an `IPSet`
         
     | 
| 
       2300 
2443 
     | 
    
         
             
                #   after you create it.
         
     | 
| 
         @@ -2304,8 +2447,8 @@ module Aws::WAFV2 
     | 
|
| 
       2304 
2447 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       2305 
2448 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       2306 
2449 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       2307 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       2308 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 2450 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 2451 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       2309 
2452 
     | 
    
         
             
                #
         
     | 
| 
       2310 
2453 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       2311 
2454 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -2393,8 +2536,8 @@ module Aws::WAFV2 
     | 
|
| 
       2393 
2536 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       2394 
2537 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       2395 
2538 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       2396 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       2397 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 2539 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 2540 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       2398 
2541 
     | 
    
         
             
                #
         
     | 
| 
       2399 
2542 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       2400 
2543 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -2506,8 +2649,8 @@ module Aws::WAFV2 
     | 
|
| 
       2506 
2649 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       2507 
2650 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       2508 
2651 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       2509 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       2510 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 2652 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 2653 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       2511 
2654 
     | 
    
         
             
                #
         
     | 
| 
       2512 
2655 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       2513 
2656 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -2580,8 +2723,8 @@ module Aws::WAFV2 
     | 
|
| 
       2580 
2723 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       2581 
2724 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       2582 
2725 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       2583 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       2584 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 2726 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 2727 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       2585 
2728 
     | 
    
         
             
                #
         
     | 
| 
       2586 
2729 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       2587 
2730 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -2641,8 +2784,8 @@ module Aws::WAFV2 
     | 
|
| 
       2641 
2784 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       2642 
2785 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       2643 
2786 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       2644 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       2645 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 2787 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 2788 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       2646 
2789 
     | 
    
         
             
                #
         
     | 
| 
       2647 
2790 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       2648 
2791 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -2712,8 +2855,8 @@ module Aws::WAFV2 
     | 
|
| 
       2712 
2855 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       2713 
2856 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       2714 
2857 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       2715 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       2716 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 2858 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 2859 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       2717 
2860 
     | 
    
         
             
                #
         
     | 
| 
       2718 
2861 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       2719 
2862 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -2809,6 +2952,10 @@ module Aws::WAFV2 
     | 
|
| 
       2809 
2952 
     | 
    
         
             
                #   * For an App Runner service:
         
     | 
| 
       2810 
2953 
     | 
    
         
             
                #     `arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id
         
     | 
| 
       2811 
2954 
     | 
    
         
             
                #     `
         
     | 
| 
      
 2955 
     | 
    
         
            +
                #
         
     | 
| 
      
 2956 
     | 
    
         
            +
                #   * For an Amazon Web Services Verified Access instance:
         
     | 
| 
      
 2957 
     | 
    
         
            +
                #     `arn:partition:ec2:region:account-id:verified-access-instance/instance-id
         
     | 
| 
      
 2958 
     | 
    
         
            +
                #     `
         
     | 
| 
       2812 
2959 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       2813 
2960 
     | 
    
         
             
                #
         
     | 
| 
       2814 
2961 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/GetWebACLForResourceRequest AWS API Documentation
         
     | 
| 
         @@ -2841,8 +2988,8 @@ module Aws::WAFV2 
     | 
|
| 
       2841 
2988 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       2842 
2989 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       2843 
2990 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       2844 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       2845 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 2991 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 2992 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       2846 
2993 
     | 
    
         
             
                #
         
     | 
| 
       2847 
2994 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       2848 
2995 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -3592,6 +3739,75 @@ module Aws::WAFV2 
     | 
|
| 
       3592 
3739 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       3593 
3740 
     | 
    
         
             
                end
         
     | 
| 
       3594 
3741 
     | 
    
         | 
| 
      
 3742 
     | 
    
         
            +
                # @!attribute [rw] scope
         
     | 
| 
      
 3743 
     | 
    
         
            +
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
      
 3744 
     | 
    
         
            +
                #   for a regional application. A regional application can be an
         
     | 
| 
      
 3745 
     | 
    
         
            +
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
      
 3746 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 3747 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
      
 3748 
     | 
    
         
            +
                #
         
     | 
| 
      
 3749 
     | 
    
         
            +
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
      
 3750 
     | 
    
         
            +
                #   (N. Virginia) as follows:
         
     | 
| 
      
 3751 
     | 
    
         
            +
                #
         
     | 
| 
      
 3752 
     | 
    
         
            +
                #   * CLI - Specify the Region when you use the CloudFront scope:
         
     | 
| 
      
 3753 
     | 
    
         
            +
                #     `--scope=CLOUDFRONT --region=us-east-1`.
         
     | 
| 
      
 3754 
     | 
    
         
            +
                #
         
     | 
| 
      
 3755 
     | 
    
         
            +
                #   * API and SDKs - For all calls, use the Region endpoint us-east-1.
         
     | 
| 
      
 3756 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 3757 
     | 
    
         
            +
                #
         
     | 
| 
      
 3758 
     | 
    
         
            +
                # @!attribute [rw] next_marker
         
     | 
| 
      
 3759 
     | 
    
         
            +
                #   When you request a list of objects with a `Limit` setting, if the
         
     | 
| 
      
 3760 
     | 
    
         
            +
                #   number of objects that are still available for retrieval exceeds the
         
     | 
| 
      
 3761 
     | 
    
         
            +
                #   limit, WAF returns a `NextMarker` value in the response. To retrieve
         
     | 
| 
      
 3762 
     | 
    
         
            +
                #   the next batch of objects, provide the marker from the prior call in
         
     | 
| 
      
 3763 
     | 
    
         
            +
                #   your next request.
         
     | 
| 
      
 3764 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 3765 
     | 
    
         
            +
                #
         
     | 
| 
      
 3766 
     | 
    
         
            +
                # @!attribute [rw] limit
         
     | 
| 
      
 3767 
     | 
    
         
            +
                #   The maximum number of objects that you want WAF to return for this
         
     | 
| 
      
 3768 
     | 
    
         
            +
                #   request. If more objects are available, in the response, WAF
         
     | 
| 
      
 3769 
     | 
    
         
            +
                #   provides a `NextMarker` value that you can use in a subsequent call
         
     | 
| 
      
 3770 
     | 
    
         
            +
                #   to get the next batch of objects.
         
     | 
| 
      
 3771 
     | 
    
         
            +
                #   @return [Integer]
         
     | 
| 
      
 3772 
     | 
    
         
            +
                #
         
     | 
| 
      
 3773 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListAPIKeysRequest AWS API Documentation
         
     | 
| 
      
 3774 
     | 
    
         
            +
                #
         
     | 
| 
      
 3775 
     | 
    
         
            +
                class ListAPIKeysRequest < Struct.new(
         
     | 
| 
      
 3776 
     | 
    
         
            +
                  :scope,
         
     | 
| 
      
 3777 
     | 
    
         
            +
                  :next_marker,
         
     | 
| 
      
 3778 
     | 
    
         
            +
                  :limit)
         
     | 
| 
      
 3779 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 3780 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 3781 
     | 
    
         
            +
                end
         
     | 
| 
      
 3782 
     | 
    
         
            +
             
     | 
| 
      
 3783 
     | 
    
         
            +
                # @!attribute [rw] next_marker
         
     | 
| 
      
 3784 
     | 
    
         
            +
                #   When you request a list of objects with a `Limit` setting, if the
         
     | 
| 
      
 3785 
     | 
    
         
            +
                #   number of objects that are still available for retrieval exceeds the
         
     | 
| 
      
 3786 
     | 
    
         
            +
                #   limit, WAF returns a `NextMarker` value in the response. To retrieve
         
     | 
| 
      
 3787 
     | 
    
         
            +
                #   the next batch of objects, provide the marker from the prior call in
         
     | 
| 
      
 3788 
     | 
    
         
            +
                #   your next request.
         
     | 
| 
      
 3789 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 3790 
     | 
    
         
            +
                #
         
     | 
| 
      
 3791 
     | 
    
         
            +
                # @!attribute [rw] api_key_summaries
         
     | 
| 
      
 3792 
     | 
    
         
            +
                #   The array of key summaries. If you specified a `Limit` in your
         
     | 
| 
      
 3793 
     | 
    
         
            +
                #   request, this might not be the full list.
         
     | 
| 
      
 3794 
     | 
    
         
            +
                #   @return [Array<Types::APIKeySummary>]
         
     | 
| 
      
 3795 
     | 
    
         
            +
                #
         
     | 
| 
      
 3796 
     | 
    
         
            +
                # @!attribute [rw] application_integration_url
         
     | 
| 
      
 3797 
     | 
    
         
            +
                #   The CAPTCHA application integration URL, for use in your JavaScript
         
     | 
| 
      
 3798 
     | 
    
         
            +
                #   implementation.
         
     | 
| 
      
 3799 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 3800 
     | 
    
         
            +
                #
         
     | 
| 
      
 3801 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListAPIKeysResponse AWS API Documentation
         
     | 
| 
      
 3802 
     | 
    
         
            +
                #
         
     | 
| 
      
 3803 
     | 
    
         
            +
                class ListAPIKeysResponse < Struct.new(
         
     | 
| 
      
 3804 
     | 
    
         
            +
                  :next_marker,
         
     | 
| 
      
 3805 
     | 
    
         
            +
                  :api_key_summaries,
         
     | 
| 
      
 3806 
     | 
    
         
            +
                  :application_integration_url)
         
     | 
| 
      
 3807 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 3808 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 3809 
     | 
    
         
            +
                end
         
     | 
| 
      
 3810 
     | 
    
         
            +
             
     | 
| 
       3595 
3811 
     | 
    
         
             
                # @!attribute [rw] vendor_name
         
     | 
| 
       3596 
3812 
     | 
    
         
             
                #   The name of the managed rule group vendor. You use this, along with
         
     | 
| 
       3597 
3813 
     | 
    
         
             
                #   the rule group name, to identify the rule group.
         
     | 
| 
         @@ -3606,8 +3822,8 @@ module Aws::WAFV2 
     | 
|
| 
       3606 
3822 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       3607 
3823 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       3608 
3824 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       3609 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       3610 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 3825 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 3826 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       3611 
3827 
     | 
    
         
             
                #
         
     | 
| 
       3612 
3828 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       3613 
3829 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -3655,7 +3871,8 @@ module Aws::WAFV2 
     | 
|
| 
       3655 
3871 
     | 
    
         
             
                #
         
     | 
| 
       3656 
3872 
     | 
    
         
             
                # @!attribute [rw] versions
         
     | 
| 
       3657 
3873 
     | 
    
         
             
                #   The versions that are currently available for the specified managed
         
     | 
| 
       3658 
     | 
    
         
            -
                #   rule group.
         
     | 
| 
      
 3874 
     | 
    
         
            +
                #   rule group. If you specified a `Limit` in your request, this might
         
     | 
| 
      
 3875 
     | 
    
         
            +
                #   not be the full list.
         
     | 
| 
       3659 
3876 
     | 
    
         
             
                #   @return [Array<Types::ManagedRuleGroupVersion>]
         
     | 
| 
       3660 
3877 
     | 
    
         
             
                #
         
     | 
| 
       3661 
3878 
     | 
    
         
             
                # @!attribute [rw] current_default_version
         
     | 
| 
         @@ -3676,8 +3893,8 @@ module Aws::WAFV2 
     | 
|
| 
       3676 
3893 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       3677 
3894 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       3678 
3895 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       3679 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       3680 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 3896 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 3897 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       3681 
3898 
     | 
    
         
             
                #
         
     | 
| 
       3682 
3899 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       3683 
3900 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -3722,6 +3939,8 @@ module Aws::WAFV2 
     | 
|
| 
       3722 
3939 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       3723 
3940 
     | 
    
         
             
                #
         
     | 
| 
       3724 
3941 
     | 
    
         
             
                # @!attribute [rw] managed_rule_groups
         
     | 
| 
      
 3942 
     | 
    
         
            +
                #   Array of managed rule groups that you can use. If you specified a
         
     | 
| 
      
 3943 
     | 
    
         
            +
                #   `Limit` in your request, this might not be the full list.
         
     | 
| 
       3725 
3944 
     | 
    
         
             
                #   @return [Array<Types::ManagedRuleGroupSummary>]
         
     | 
| 
       3726 
3945 
     | 
    
         
             
                #
         
     | 
| 
       3727 
3946 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListAvailableManagedRuleGroupsResponse AWS API Documentation
         
     | 
| 
         @@ -3737,8 +3956,8 @@ module Aws::WAFV2 
     | 
|
| 
       3737 
3956 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       3738 
3957 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       3739 
3958 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       3740 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       3741 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 3959 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 3960 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       3742 
3961 
     | 
    
         
             
                #
         
     | 
| 
       3743 
3962 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       3744 
3963 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -3783,8 +4002,8 @@ module Aws::WAFV2 
     | 
|
| 
       3783 
4002 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       3784 
4003 
     | 
    
         
             
                #
         
     | 
| 
       3785 
4004 
     | 
    
         
             
                # @!attribute [rw] ip_sets
         
     | 
| 
       3786 
     | 
    
         
            -
                #   Array of IPSets.  
     | 
| 
       3787 
     | 
    
         
            -
                #    
     | 
| 
      
 4005 
     | 
    
         
            +
                #   Array of IPSets. If you specified a `Limit` in your request, this
         
     | 
| 
      
 4006 
     | 
    
         
            +
                #   might not be the full list.
         
     | 
| 
       3788 
4007 
     | 
    
         
             
                #   @return [Array<Types::IPSetSummary>]
         
     | 
| 
       3789 
4008 
     | 
    
         
             
                #
         
     | 
| 
       3790 
4009 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListIPSetsResponse AWS API Documentation
         
     | 
| 
         @@ -3800,8 +4019,8 @@ module Aws::WAFV2 
     | 
|
| 
       3800 
4019 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       3801 
4020 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       3802 
4021 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       3803 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       3804 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 4022 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 4023 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       3805 
4024 
     | 
    
         
             
                #
         
     | 
| 
       3806 
4025 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       3807 
4026 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -3838,6 +4057,8 @@ module Aws::WAFV2 
     | 
|
| 
       3838 
4057 
     | 
    
         
             
                end
         
     | 
| 
       3839 
4058 
     | 
    
         | 
| 
       3840 
4059 
     | 
    
         
             
                # @!attribute [rw] logging_configurations
         
     | 
| 
      
 4060 
     | 
    
         
            +
                #   Array of logging configurations. If you specified a `Limit` in your
         
     | 
| 
      
 4061 
     | 
    
         
            +
                #   request, this might not be the full list.
         
     | 
| 
       3841 
4062 
     | 
    
         
             
                #   @return [Array<Types::LoggingConfiguration>]
         
     | 
| 
       3842 
4063 
     | 
    
         
             
                #
         
     | 
| 
       3843 
4064 
     | 
    
         
             
                # @!attribute [rw] next_marker
         
     | 
| 
         @@ -3861,8 +4082,8 @@ module Aws::WAFV2 
     | 
|
| 
       3861 
4082 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       3862 
4083 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       3863 
4084 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       3864 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       3865 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 4085 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 4086 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       3866 
4087 
     | 
    
         
             
                #
         
     | 
| 
       3867 
4088 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       3868 
4089 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -3907,7 +4128,8 @@ module Aws::WAFV2 
     | 
|
| 
       3907 
4128 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       3908 
4129 
     | 
    
         
             
                #
         
     | 
| 
       3909 
4130 
     | 
    
         
             
                # @!attribute [rw] managed_rule_sets
         
     | 
| 
       3910 
     | 
    
         
            -
                #   Your managed rule sets.
         
     | 
| 
      
 4131 
     | 
    
         
            +
                #   Your managed rule sets. If you specified a `Limit` in your request,
         
     | 
| 
      
 4132 
     | 
    
         
            +
                #   this might not be the full list.
         
     | 
| 
       3911 
4133 
     | 
    
         
             
                #   @return [Array<Types::ManagedRuleSetSummary>]
         
     | 
| 
       3912 
4134 
     | 
    
         
             
                #
         
     | 
| 
       3913 
4135 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListManagedRuleSetsResponse AWS API Documentation
         
     | 
| 
         @@ -3949,7 +4171,9 @@ module Aws::WAFV2 
     | 
|
| 
       3949 
4171 
     | 
    
         
             
                end
         
     | 
| 
       3950 
4172 
     | 
    
         | 
| 
       3951 
4173 
     | 
    
         
             
                # @!attribute [rw] release_summaries
         
     | 
| 
       3952 
     | 
    
         
            -
                #    
     | 
| 
      
 4174 
     | 
    
         
            +
                #   The high level information for the available SDK releases. If you
         
     | 
| 
      
 4175 
     | 
    
         
            +
                #   specified a `Limit` in your request, this might not be the full
         
     | 
| 
      
 4176 
     | 
    
         
            +
                #   list.
         
     | 
| 
       3953 
4177 
     | 
    
         
             
                #   @return [Array<Types::ReleaseSummary>]
         
     | 
| 
       3954 
4178 
     | 
    
         
             
                #
         
     | 
| 
       3955 
4179 
     | 
    
         
             
                # @!attribute [rw] next_marker
         
     | 
| 
         @@ -3973,8 +4197,8 @@ module Aws::WAFV2 
     | 
|
| 
       3973 
4197 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       3974 
4198 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       3975 
4199 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       3976 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       3977 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 4200 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 4201 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       3978 
4202 
     | 
    
         
             
                #
         
     | 
| 
       3979 
4203 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       3980 
4204 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -4019,6 +4243,8 @@ module Aws::WAFV2 
     | 
|
| 
       4019 
4243 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       4020 
4244 
     | 
    
         
             
                #
         
     | 
| 
       4021 
4245 
     | 
    
         
             
                # @!attribute [rw] regex_pattern_sets
         
     | 
| 
      
 4246 
     | 
    
         
            +
                #   Array of regex pattern sets. If you specified a `Limit` in your
         
     | 
| 
      
 4247 
     | 
    
         
            +
                #   request, this might not be the full list.
         
     | 
| 
       4022 
4248 
     | 
    
         
             
                #   @return [Array<Types::RegexPatternSetSummary>]
         
     | 
| 
       4023 
4249 
     | 
    
         
             
                #
         
     | 
| 
       4024 
4250 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListRegexPatternSetsResponse AWS API Documentation
         
     | 
| 
         @@ -4038,7 +4264,8 @@ module Aws::WAFV2 
     | 
|
| 
       4038 
4264 
     | 
    
         
             
                #   Used for web ACLs that are scoped for regional applications. A
         
     | 
| 
       4039 
4265 
     | 
    
         
             
                #   regional application can be an Application Load Balancer (ALB), an
         
     | 
| 
       4040 
4266 
     | 
    
         
             
                #   Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon
         
     | 
| 
       4041 
     | 
    
         
            -
                #   Cognito user pool,  
     | 
| 
      
 4267 
     | 
    
         
            +
                #   Cognito user pool, an App Runner service, or an Amazon Web Services
         
     | 
| 
      
 4268 
     | 
    
         
            +
                #   Verified Access instance.
         
     | 
| 
       4042 
4269 
     | 
    
         
             
                #
         
     | 
| 
       4043 
4270 
     | 
    
         
             
                #   <note markdown="1"> If you don't provide a resource type, the call uses the resource
         
     | 
| 
       4044 
4271 
     | 
    
         
             
                #   type `APPLICATION_LOAD_BALANCER`.
         
     | 
| 
         @@ -4074,8 +4301,8 @@ module Aws::WAFV2 
     | 
|
| 
       4074 
4301 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       4075 
4302 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       4076 
4303 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       4077 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       4078 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 4304 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 4305 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       4079 
4306 
     | 
    
         
             
                #
         
     | 
| 
       4080 
4307 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       4081 
4308 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -4120,6 +4347,8 @@ module Aws::WAFV2 
     | 
|
| 
       4120 
4347 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       4121 
4348 
     | 
    
         
             
                #
         
     | 
| 
       4122 
4349 
     | 
    
         
             
                # @!attribute [rw] rule_groups
         
     | 
| 
      
 4350 
     | 
    
         
            +
                #   Array of rule groups. If you specified a `Limit` in your request,
         
     | 
| 
      
 4351 
     | 
    
         
            +
                #   this might not be the full list.
         
     | 
| 
       4123 
4352 
     | 
    
         
             
                #   @return [Array<Types::RuleGroupSummary>]
         
     | 
| 
       4124 
4353 
     | 
    
         
             
                #
         
     | 
| 
       4125 
4354 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListRuleGroupsResponse AWS API Documentation
         
     | 
| 
         @@ -4169,7 +4398,9 @@ module Aws::WAFV2 
     | 
|
| 
       4169 
4398 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       4170 
4399 
     | 
    
         
             
                #
         
     | 
| 
       4171 
4400 
     | 
    
         
             
                # @!attribute [rw] tag_info_for_resource
         
     | 
| 
       4172 
     | 
    
         
            -
                #   The collection of tagging definitions for the resource.
         
     | 
| 
      
 4401 
     | 
    
         
            +
                #   The collection of tagging definitions for the resource. If you
         
     | 
| 
      
 4402 
     | 
    
         
            +
                #   specified a `Limit` in your request, this might not be the full
         
     | 
| 
      
 4403 
     | 
    
         
            +
                #   list.
         
     | 
| 
       4173 
4404 
     | 
    
         
             
                #   @return [Types::TagInfoForResource]
         
     | 
| 
       4174 
4405 
     | 
    
         
             
                #
         
     | 
| 
       4175 
4406 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListTagsForResourceResponse AWS API Documentation
         
     | 
| 
         @@ -4185,8 +4416,8 @@ module Aws::WAFV2 
     | 
|
| 
       4185 
4416 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       4186 
4417 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       4187 
4418 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       4188 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       4189 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 4419 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 4420 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       4190 
4421 
     | 
    
         
             
                #
         
     | 
| 
       4191 
4422 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       4192 
4423 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -4231,6 +4462,8 @@ module Aws::WAFV2 
     | 
|
| 
       4231 
4462 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       4232 
4463 
     | 
    
         
             
                #
         
     | 
| 
       4233 
4464 
     | 
    
         
             
                # @!attribute [rw] web_acls
         
     | 
| 
      
 4465 
     | 
    
         
            +
                #   Array of web ACLs. If you specified a `Limit` in your request, this
         
     | 
| 
      
 4466 
     | 
    
         
            +
                #   might not be the full list.
         
     | 
| 
       4234 
4467 
     | 
    
         
             
                #   @return [Array<Types::WebACLSummary>]
         
     | 
| 
       4235 
4468 
     | 
    
         
             
                #
         
     | 
| 
       4236 
4469 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListWebACLsResponse AWS API Documentation
         
     | 
| 
         @@ -5034,8 +5267,8 @@ module Aws::WAFV2 
     | 
|
| 
       5034 
5267 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       5035 
5268 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       5036 
5269 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       5037 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       5038 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 5270 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 5271 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       5039 
5272 
     | 
    
         
             
                #
         
     | 
| 
       5040 
5273 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       5041 
5274 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -7012,8 +7245,8 @@ module Aws::WAFV2 
     | 
|
| 
       7012 
7245 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       7013 
7246 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       7014 
7247 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       7015 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       7016 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 7248 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 7249 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       7017 
7250 
     | 
    
         
             
                #
         
     | 
| 
       7018 
7251 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       7019 
7252 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -7131,8 +7364,8 @@ module Aws::WAFV2 
     | 
|
| 
       7131 
7364 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       7132 
7365 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       7133 
7366 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       7134 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       7135 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 7367 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 7368 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       7136 
7369 
     | 
    
         
             
                #
         
     | 
| 
       7137 
7370 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       7138 
7371 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -7230,8 +7463,8 @@ module Aws::WAFV2 
     | 
|
| 
       7230 
7463 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       7231 
7464 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       7232 
7465 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       7233 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       7234 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 7466 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 7467 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       7235 
7468 
     | 
    
         
             
                #
         
     | 
| 
       7236 
7469 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       7237 
7470 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -7303,8 +7536,8 @@ module Aws::WAFV2 
     | 
|
| 
       7303 
7536 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       7304 
7537 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       7305 
7538 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       7306 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       7307 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 7539 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 7540 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       7308 
7541 
     | 
    
         
             
                #
         
     | 
| 
       7309 
7542 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       7310 
7543 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -7407,8 +7640,8 @@ module Aws::WAFV2 
     | 
|
| 
       7407 
7640 
     | 
    
         
             
                #   Specifies whether this is for an Amazon CloudFront distribution or
         
     | 
| 
       7408 
7641 
     | 
    
         
             
                #   for a regional application. A regional application can be an
         
     | 
| 
       7409 
7642 
     | 
    
         
             
                #   Application Load Balancer (ALB), an Amazon API Gateway REST API, an
         
     | 
| 
       7410 
     | 
    
         
            -
                #   AppSync GraphQL API, an Amazon Cognito user pool,  
     | 
| 
       7411 
     | 
    
         
            -
                #   service.
         
     | 
| 
      
 7643 
     | 
    
         
            +
                #   AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
         
     | 
| 
      
 7644 
     | 
    
         
            +
                #   service, or an Amazon Web Services Verified Access instance.
         
     | 
| 
       7412 
7645 
     | 
    
         
             
                #
         
     | 
| 
       7413 
7646 
     | 
    
         
             
                #   To work with CloudFront, you must also specify the Region US East
         
     | 
| 
       7414 
7647 
     | 
    
         
             
                #   (N. Virginia) as follows:
         
     | 
| 
         @@ -8007,7 +8240,8 @@ module Aws::WAFV2 
     | 
|
| 
       8007 
8240 
     | 
    
         
             
                # can associate a web ACL with one or more Amazon Web Services resources
         
     | 
| 
       8008 
8241 
     | 
    
         
             
                # to protect. The resources can be an Amazon CloudFront distribution, an
         
     | 
| 
       8009 
8242 
     | 
    
         
             
                # Amazon API Gateway REST API, an Application Load Balancer, an AppSync
         
     | 
| 
       8010 
     | 
    
         
            -
                # GraphQL API, an Amazon Cognito user pool,  
     | 
| 
      
 8243 
     | 
    
         
            +
                # GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
         
     | 
| 
      
 8244 
     | 
    
         
            +
                # Amazon Web Services Verified Access instance.
         
     | 
| 
       8011 
8245 
     | 
    
         
             
                #
         
     | 
| 
       8012 
8246 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
       8013 
8247 
     | 
    
         
             
                #   The name of the web ACL. You cannot change the name of a web ACL
         
     |