aws-sdk-wafv2 1.55.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-wafv2/client.rb +129 -51
- data/lib/aws-sdk-wafv2/types.rb +100 -94
- data/lib/aws-sdk-wafv2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d044b4ad5c6e0b94af6b727b4f4e2fc6bc8abca43cb5140ca5702a83190a9a2
|
|
4
|
+
data.tar.gz: 3616b201a8527541257a9ebbe74387b28331cde680adcda0f561c557046e1204
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4eb269e68588ed12a56fb505a2f01e6c68c8ff4c846b04b732120d92c5b3e5ef0a6966fbcf7ea24def62bddd54d2792ba8b3fd0fccaa9dc99e3885732034f807
|
|
7
|
+
data.tar.gz: 277041506470c6a050b718d89d150bc69ddcd184c438e9cd550e472dfc82bf5ed7b9399036f307babaa3a50d828b4f9c90673cdac8cdc4f568a3e77336ac208a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.56.0
|
data/lib/aws-sdk-wafv2/client.rb
CHANGED
|
@@ -381,7 +381,8 @@ module Aws::WAFV2
|
|
|
381
381
|
# Associates a web ACL with a regional application resource, to protect
|
|
382
382
|
# the resource. A regional application can be an Application Load
|
|
383
383
|
# Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL
|
|
384
|
-
# API, an Amazon Cognito user pool,
|
|
384
|
+
# API, an Amazon Cognito user pool, an App Runner service, or an Amazon
|
|
385
|
+
# Web Services Verified Access instance.
|
|
385
386
|
#
|
|
386
387
|
# For Amazon CloudFront, don't use this call. Instead, use your
|
|
387
388
|
# CloudFront distribution configuration. To associate a web ACL, in the
|
|
@@ -435,6 +436,10 @@ module Aws::WAFV2
|
|
|
435
436
|
# `arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id
|
|
436
437
|
# `
|
|
437
438
|
#
|
|
439
|
+
# * For an Amazon Web Services Verified Access instance:
|
|
440
|
+
# `arn:partition:ec2:region:account-id:verified-access-instance/instance-id
|
|
441
|
+
# `
|
|
442
|
+
#
|
|
438
443
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
439
444
|
#
|
|
440
445
|
# @example Request syntax with placeholder values
|
|
@@ -474,7 +479,8 @@ module Aws::WAFV2
|
|
|
474
479
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
475
480
|
# a regional application. A regional application can be an Application
|
|
476
481
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
477
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
482
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
483
|
+
# Amazon Web Services Verified Access instance.
|
|
478
484
|
#
|
|
479
485
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
480
486
|
# Virginia) as follows:
|
|
@@ -1191,17 +1197,17 @@ module Aws::WAFV2
|
|
|
1191
1197
|
req.send_request(options)
|
|
1192
1198
|
end
|
|
1193
1199
|
|
|
1194
|
-
# Creates an API key
|
|
1195
|
-
# your JavaScript client applications. The integration lets you
|
|
1196
|
-
# customize the placement and characteristics of the CAPTCHA puzzle for
|
|
1197
|
-
# your end users. For more information about the CAPTCHA JavaScript
|
|
1198
|
-
# integration, see [WAF client application integration][1] in the *WAF
|
|
1199
|
-
# Developer Guide*.
|
|
1200
|
+
# Creates an API key that contains a set of token domains.
|
|
1200
1201
|
#
|
|
1201
|
-
#
|
|
1202
|
-
# client
|
|
1203
|
-
#
|
|
1204
|
-
# JavaScript integration
|
|
1202
|
+
# API keys are required for the integration of the CAPTCHA API in your
|
|
1203
|
+
# JavaScript client applications. The API lets you customize the
|
|
1204
|
+
# placement and characteristics of the CAPTCHA puzzle for your end
|
|
1205
|
+
# users. For more information about the CAPTCHA JavaScript integration,
|
|
1206
|
+
# see [WAF client application integration][1] in the *WAF Developer
|
|
1207
|
+
# Guide*.
|
|
1208
|
+
#
|
|
1209
|
+
# You can use a single key for up to 5 domains. After you generate a
|
|
1210
|
+
# key, you can copy it for use in your JavaScript integration.
|
|
1205
1211
|
#
|
|
1206
1212
|
#
|
|
1207
1213
|
#
|
|
@@ -1211,7 +1217,8 @@ module Aws::WAFV2
|
|
|
1211
1217
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
1212
1218
|
# a regional application. A regional application can be an Application
|
|
1213
1219
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
1214
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
1220
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
1221
|
+
# Amazon Web Services Verified Access instance.
|
|
1215
1222
|
#
|
|
1216
1223
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
1217
1224
|
# Virginia) as follows:
|
|
@@ -1224,6 +1231,11 @@ module Aws::WAFV2
|
|
|
1224
1231
|
# @option params [required, Array<String>] :token_domains
|
|
1225
1232
|
# The client application domains that you want to use this API key for.
|
|
1226
1233
|
#
|
|
1234
|
+
# Example JSON: `"TokenDomains": ["abc.com", "store.abc.com"]`
|
|
1235
|
+
#
|
|
1236
|
+
# Public suffixes aren't allowed. For example, you can't use `usa.gov`
|
|
1237
|
+
# or `co.uk` as token domains.
|
|
1238
|
+
#
|
|
1227
1239
|
# @return [Types::CreateAPIKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1228
1240
|
#
|
|
1229
1241
|
# * {Types::CreateAPIKeyResponse#api_key #api_key} => String
|
|
@@ -1262,7 +1274,8 @@ module Aws::WAFV2
|
|
|
1262
1274
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
1263
1275
|
# a regional application. A regional application can be an Application
|
|
1264
1276
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
1265
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
1277
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
1278
|
+
# Amazon Web Services Verified Access instance.
|
|
1266
1279
|
#
|
|
1267
1280
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
1268
1281
|
# Virginia) as follows:
|
|
@@ -1372,7 +1385,8 @@ module Aws::WAFV2
|
|
|
1372
1385
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
1373
1386
|
# a regional application. A regional application can be an Application
|
|
1374
1387
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
1375
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
1388
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
1389
|
+
# Amazon Web Services Verified Access instance.
|
|
1376
1390
|
#
|
|
1377
1391
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
1378
1392
|
# Virginia) as follows:
|
|
@@ -1447,7 +1461,8 @@ module Aws::WAFV2
|
|
|
1447
1461
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
1448
1462
|
# a regional application. A regional application can be an Application
|
|
1449
1463
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
1450
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
1464
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
1465
|
+
# Amazon Web Services Verified Access instance.
|
|
1451
1466
|
#
|
|
1452
1467
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
1453
1468
|
# Virginia) as follows:
|
|
@@ -2251,7 +2266,8 @@ module Aws::WAFV2
|
|
|
2251
2266
|
# can associate a web ACL with one or more Amazon Web Services resources
|
|
2252
2267
|
# to protect. The resources can be an Amazon CloudFront distribution, an
|
|
2253
2268
|
# Amazon API Gateway REST API, an Application Load Balancer, an AppSync
|
|
2254
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
2269
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
2270
|
+
# Amazon Web Services Verified Access instance.
|
|
2255
2271
|
#
|
|
2256
2272
|
# @option params [required, String] :name
|
|
2257
2273
|
# The name of the web ACL. You cannot change the name of a web ACL after
|
|
@@ -2261,7 +2277,8 @@ module Aws::WAFV2
|
|
|
2261
2277
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
2262
2278
|
# a regional application. A regional application can be an Application
|
|
2263
2279
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
2264
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
2280
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
2281
|
+
# Amazon Web Services Verified Access instance.
|
|
2265
2282
|
#
|
|
2266
2283
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
2267
2284
|
# Virginia) as follows:
|
|
@@ -3175,7 +3192,8 @@ module Aws::WAFV2
|
|
|
3175
3192
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
3176
3193
|
# a regional application. A regional application can be an Application
|
|
3177
3194
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
3178
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
3195
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
3196
|
+
# Amazon Web Services Verified Access instance.
|
|
3179
3197
|
#
|
|
3180
3198
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
3181
3199
|
# Virginia) as follows:
|
|
@@ -3280,7 +3298,8 @@ module Aws::WAFV2
|
|
|
3280
3298
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
3281
3299
|
# a regional application. A regional application can be an Application
|
|
3282
3300
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
3283
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
3301
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
3302
|
+
# Amazon Web Services Verified Access instance.
|
|
3284
3303
|
#
|
|
3285
3304
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
3286
3305
|
# Virginia) as follows:
|
|
@@ -3335,7 +3354,8 @@ module Aws::WAFV2
|
|
|
3335
3354
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
3336
3355
|
# a regional application. A regional application can be an Application
|
|
3337
3356
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
3338
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
3357
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
3358
|
+
# Amazon Web Services Verified Access instance.
|
|
3339
3359
|
#
|
|
3340
3360
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
3341
3361
|
# Virginia) as follows:
|
|
@@ -3420,7 +3440,8 @@ module Aws::WAFV2
|
|
|
3420
3440
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
3421
3441
|
# a regional application. A regional application can be an Application
|
|
3422
3442
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
3423
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
3443
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
3444
|
+
# Amazon Web Services Verified Access instance.
|
|
3424
3445
|
#
|
|
3425
3446
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
3426
3447
|
# Virginia) as follows:
|
|
@@ -3480,7 +3501,8 @@ module Aws::WAFV2
|
|
|
3480
3501
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
3481
3502
|
# a regional application. A regional application can be an Application
|
|
3482
3503
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
3483
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
3504
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
3505
|
+
# Amazon Web Services Verified Access instance.
|
|
3484
3506
|
#
|
|
3485
3507
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
3486
3508
|
# Virginia) as follows:
|
|
@@ -3557,7 +3579,8 @@ module Aws::WAFV2
|
|
|
3557
3579
|
# existing web ACL association. A resource can have at most one web ACL
|
|
3558
3580
|
# association. A regional application can be an Application Load
|
|
3559
3581
|
# Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL
|
|
3560
|
-
# API, an Amazon Cognito user pool,
|
|
3582
|
+
# API, an Amazon Cognito user pool, an App Runner service, or an Amazon
|
|
3583
|
+
# Web Services Verified Access instance.
|
|
3561
3584
|
#
|
|
3562
3585
|
# For Amazon CloudFront, don't use this call. Instead, use your
|
|
3563
3586
|
# CloudFront distribution configuration. To disassociate a web ACL,
|
|
@@ -3593,6 +3616,10 @@ module Aws::WAFV2
|
|
|
3593
3616
|
# `arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id
|
|
3594
3617
|
# `
|
|
3595
3618
|
#
|
|
3619
|
+
# * For an Amazon Web Services Verified Access instance:
|
|
3620
|
+
# `arn:partition:ec2:region:account-id:verified-access-instance/instance-id
|
|
3621
|
+
# `
|
|
3622
|
+
#
|
|
3596
3623
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
3597
3624
|
#
|
|
3598
3625
|
# @example Request syntax with placeholder values
|
|
@@ -3657,11 +3684,23 @@ module Aws::WAFV2
|
|
|
3657
3684
|
# Returns your API key in decrypted form. Use this to check the token
|
|
3658
3685
|
# domains that you have defined for the key.
|
|
3659
3686
|
#
|
|
3687
|
+
# API keys are required for the integration of the CAPTCHA API in your
|
|
3688
|
+
# JavaScript client applications. The API lets you customize the
|
|
3689
|
+
# placement and characteristics of the CAPTCHA puzzle for your end
|
|
3690
|
+
# users. For more information about the CAPTCHA JavaScript integration,
|
|
3691
|
+
# see [WAF client application integration][1] in the *WAF Developer
|
|
3692
|
+
# Guide*.
|
|
3693
|
+
#
|
|
3694
|
+
#
|
|
3695
|
+
#
|
|
3696
|
+
# [1]: https://docs.aws.amazon.com/waf/latest/developerguide/waf-application-integration.html
|
|
3697
|
+
#
|
|
3660
3698
|
# @option params [required, String] :scope
|
|
3661
3699
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
3662
3700
|
# a regional application. A regional application can be an Application
|
|
3663
3701
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
3664
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
3702
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
3703
|
+
# Amazon Web Services Verified Access instance.
|
|
3665
3704
|
#
|
|
3666
3705
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
3667
3706
|
# Virginia) as follows:
|
|
@@ -3711,7 +3750,8 @@ module Aws::WAFV2
|
|
|
3711
3750
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
3712
3751
|
# a regional application. A regional application can be an Application
|
|
3713
3752
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
3714
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
3753
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
3754
|
+
# Amazon Web Services Verified Access instance.
|
|
3715
3755
|
#
|
|
3716
3756
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
3717
3757
|
# Virginia) as follows:
|
|
@@ -3843,7 +3883,8 @@ module Aws::WAFV2
|
|
|
3843
3883
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
3844
3884
|
# a regional application. A regional application can be an Application
|
|
3845
3885
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
3846
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
3886
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
3887
|
+
# Amazon Web Services Verified Access instance.
|
|
3847
3888
|
#
|
|
3848
3889
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
3849
3890
|
# Virginia) as follows:
|
|
@@ -4000,7 +4041,8 @@ module Aws::WAFV2
|
|
|
4000
4041
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
4001
4042
|
# a regional application. A regional application can be an Application
|
|
4002
4043
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
4003
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
4044
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
4045
|
+
# Amazon Web Services Verified Access instance.
|
|
4004
4046
|
#
|
|
4005
4047
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
4006
4048
|
# Virginia) as follows:
|
|
@@ -4073,7 +4115,8 @@ module Aws::WAFV2
|
|
|
4073
4115
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
4074
4116
|
# a regional application. A regional application can be an Application
|
|
4075
4117
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
4076
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
4118
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
4119
|
+
# Amazon Web Services Verified Access instance.
|
|
4077
4120
|
#
|
|
4078
4121
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
4079
4122
|
# Virginia) as follows:
|
|
@@ -4130,7 +4173,8 @@ module Aws::WAFV2
|
|
|
4130
4173
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
4131
4174
|
# a regional application. A regional application can be an Application
|
|
4132
4175
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
4133
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
4176
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
4177
|
+
# Amazon Web Services Verified Access instance.
|
|
4134
4178
|
#
|
|
4135
4179
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
4136
4180
|
# Virginia) as follows:
|
|
@@ -4486,7 +4530,8 @@ module Aws::WAFV2
|
|
|
4486
4530
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
4487
4531
|
# a regional application. A regional application can be an Application
|
|
4488
4532
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
4489
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
4533
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
4534
|
+
# Amazon Web Services Verified Access instance.
|
|
4490
4535
|
#
|
|
4491
4536
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
4492
4537
|
# Virginia) as follows:
|
|
@@ -4582,7 +4627,8 @@ module Aws::WAFV2
|
|
|
4582
4627
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
4583
4628
|
# a regional application. A regional application can be an Application
|
|
4584
4629
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
4585
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
4630
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
4631
|
+
# Amazon Web Services Verified Access instance.
|
|
4586
4632
|
#
|
|
4587
4633
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
4588
4634
|
# Virginia) as follows:
|
|
@@ -5490,6 +5536,10 @@ module Aws::WAFV2
|
|
|
5490
5536
|
# `arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id
|
|
5491
5537
|
# `
|
|
5492
5538
|
#
|
|
5539
|
+
# * For an Amazon Web Services Verified Access instance:
|
|
5540
|
+
# `arn:partition:ec2:region:account-id:verified-access-instance/instance-id
|
|
5541
|
+
# `
|
|
5542
|
+
#
|
|
5493
5543
|
# @return [Types::GetWebACLForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5494
5544
|
#
|
|
5495
5545
|
# * {Types::GetWebACLForResourceResponse#web_acl #web_acl} => Types::WebACL
|
|
@@ -6354,11 +6404,23 @@ module Aws::WAFV2
|
|
|
6354
6404
|
# Retrieves a list of the API keys that you've defined for the
|
|
6355
6405
|
# specified scope.
|
|
6356
6406
|
#
|
|
6407
|
+
# API keys are required for the integration of the CAPTCHA API in your
|
|
6408
|
+
# JavaScript client applications. The API lets you customize the
|
|
6409
|
+
# placement and characteristics of the CAPTCHA puzzle for your end
|
|
6410
|
+
# users. For more information about the CAPTCHA JavaScript integration,
|
|
6411
|
+
# see [WAF client application integration][1] in the *WAF Developer
|
|
6412
|
+
# Guide*.
|
|
6413
|
+
#
|
|
6414
|
+
#
|
|
6415
|
+
#
|
|
6416
|
+
# [1]: https://docs.aws.amazon.com/waf/latest/developerguide/waf-application-integration.html
|
|
6417
|
+
#
|
|
6357
6418
|
# @option params [required, String] :scope
|
|
6358
6419
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
6359
6420
|
# a regional application. A regional application can be an Application
|
|
6360
6421
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
6361
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
6422
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
6423
|
+
# Amazon Web Services Verified Access instance.
|
|
6362
6424
|
#
|
|
6363
6425
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
6364
6426
|
# Virginia) as follows:
|
|
@@ -6430,7 +6492,8 @@ module Aws::WAFV2
|
|
|
6430
6492
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
6431
6493
|
# a regional application. A regional application can be an Application
|
|
6432
6494
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
6433
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
6495
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
6496
|
+
# Amazon Web Services Verified Access instance.
|
|
6434
6497
|
#
|
|
6435
6498
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
6436
6499
|
# Virginia) as follows:
|
|
@@ -6495,7 +6558,8 @@ module Aws::WAFV2
|
|
|
6495
6558
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
6496
6559
|
# a regional application. A regional application can be an Application
|
|
6497
6560
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
6498
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
6561
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
6562
|
+
# Amazon Web Services Verified Access instance.
|
|
6499
6563
|
#
|
|
6500
6564
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
6501
6565
|
# Virginia) as follows:
|
|
@@ -6556,7 +6620,8 @@ module Aws::WAFV2
|
|
|
6556
6620
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
6557
6621
|
# a regional application. A regional application can be an Application
|
|
6558
6622
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
6559
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
6623
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
6624
|
+
# Amazon Web Services Verified Access instance.
|
|
6560
6625
|
#
|
|
6561
6626
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
6562
6627
|
# Virginia) as follows:
|
|
@@ -6617,7 +6682,8 @@ module Aws::WAFV2
|
|
|
6617
6682
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
6618
6683
|
# a regional application. A regional application can be an Application
|
|
6619
6684
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
6620
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
6685
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
6686
|
+
# Amazon Web Services Verified Access instance.
|
|
6621
6687
|
#
|
|
6622
6688
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
6623
6689
|
# Virginia) as follows:
|
|
@@ -6716,7 +6782,8 @@ module Aws::WAFV2
|
|
|
6716
6782
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
6717
6783
|
# a regional application. A regional application can be an Application
|
|
6718
6784
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
6719
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
6785
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
6786
|
+
# Amazon Web Services Verified Access instance.
|
|
6720
6787
|
#
|
|
6721
6788
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
6722
6789
|
# Virginia) as follows:
|
|
@@ -6837,7 +6904,8 @@ module Aws::WAFV2
|
|
|
6837
6904
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
6838
6905
|
# a regional application. A regional application can be an Application
|
|
6839
6906
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
6840
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
6907
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
6908
|
+
# Amazon Web Services Verified Access instance.
|
|
6841
6909
|
#
|
|
6842
6910
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
6843
6911
|
# Virginia) as follows:
|
|
@@ -6904,7 +6972,8 @@ module Aws::WAFV2
|
|
|
6904
6972
|
# Used for web ACLs that are scoped for regional applications. A
|
|
6905
6973
|
# regional application can be an Application Load Balancer (ALB), an
|
|
6906
6974
|
# Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito
|
|
6907
|
-
# user pool,
|
|
6975
|
+
# user pool, an App Runner service, or an Amazon Web Services Verified
|
|
6976
|
+
# Access instance.
|
|
6908
6977
|
#
|
|
6909
6978
|
# <note markdown="1"> If you don't provide a resource type, the call uses the resource type
|
|
6910
6979
|
# `APPLICATION_LOAD_BALANCER`.
|
|
@@ -6921,7 +6990,7 @@ module Aws::WAFV2
|
|
|
6921
6990
|
#
|
|
6922
6991
|
# resp = client.list_resources_for_web_acl({
|
|
6923
6992
|
# web_acl_arn: "ResourceArn", # required
|
|
6924
|
-
# resource_type: "APPLICATION_LOAD_BALANCER", # accepts APPLICATION_LOAD_BALANCER, API_GATEWAY, APPSYNC, COGNITO_USER_POOL, APP_RUNNER_SERVICE
|
|
6993
|
+
# resource_type: "APPLICATION_LOAD_BALANCER", # accepts APPLICATION_LOAD_BALANCER, API_GATEWAY, APPSYNC, COGNITO_USER_POOL, APP_RUNNER_SERVICE, VERIFIED_ACCESS_INSTANCE
|
|
6925
6994
|
# })
|
|
6926
6995
|
#
|
|
6927
6996
|
# @example Response structure
|
|
@@ -6945,7 +7014,8 @@ module Aws::WAFV2
|
|
|
6945
7014
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
6946
7015
|
# a regional application. A regional application can be an Application
|
|
6947
7016
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
6948
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
7017
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
7018
|
+
# Amazon Web Services Verified Access instance.
|
|
6949
7019
|
#
|
|
6950
7020
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
6951
7021
|
# Virginia) as follows:
|
|
@@ -7064,7 +7134,8 @@ module Aws::WAFV2
|
|
|
7064
7134
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
7065
7135
|
# a regional application. A regional application can be an Application
|
|
7066
7136
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
7067
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
7137
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
7138
|
+
# Amazon Web Services Verified Access instance.
|
|
7068
7139
|
#
|
|
7069
7140
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
7070
7141
|
# Virginia) as follows:
|
|
@@ -7341,7 +7412,8 @@ module Aws::WAFV2
|
|
|
7341
7412
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
7342
7413
|
# a regional application. A regional application can be an Application
|
|
7343
7414
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
7344
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
7415
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
7416
|
+
# Amazon Web Services Verified Access instance.
|
|
7345
7417
|
#
|
|
7346
7418
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
7347
7419
|
# Virginia) as follows:
|
|
@@ -7579,7 +7651,8 @@ module Aws::WAFV2
|
|
|
7579
7651
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
7580
7652
|
# a regional application. A regional application can be an Application
|
|
7581
7653
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
7582
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
7654
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
7655
|
+
# Amazon Web Services Verified Access instance.
|
|
7583
7656
|
#
|
|
7584
7657
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
7585
7658
|
# Virginia) as follows:
|
|
@@ -7704,7 +7777,8 @@ module Aws::WAFV2
|
|
|
7704
7777
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
7705
7778
|
# a regional application. A regional application can be an Application
|
|
7706
7779
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
7707
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
7780
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
7781
|
+
# Amazon Web Services Verified Access instance.
|
|
7708
7782
|
#
|
|
7709
7783
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
7710
7784
|
# Virginia) as follows:
|
|
@@ -7810,7 +7884,8 @@ module Aws::WAFV2
|
|
|
7810
7884
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
7811
7885
|
# a regional application. A regional application can be an Application
|
|
7812
7886
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
7813
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
7887
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
7888
|
+
# Amazon Web Services Verified Access instance.
|
|
7814
7889
|
#
|
|
7815
7890
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
7816
7891
|
# Virginia) as follows:
|
|
@@ -7916,7 +7991,8 @@ module Aws::WAFV2
|
|
|
7916
7991
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
7917
7992
|
# a regional application. A regional application can be an Application
|
|
7918
7993
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
7919
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
7994
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
7995
|
+
# Amazon Web Services Verified Access instance.
|
|
7920
7996
|
#
|
|
7921
7997
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
7922
7998
|
# Virginia) as follows:
|
|
@@ -8732,7 +8808,8 @@ module Aws::WAFV2
|
|
|
8732
8808
|
# can associate a web ACL with one or more Amazon Web Services resources
|
|
8733
8809
|
# to protect. The resources can be an Amazon CloudFront distribution, an
|
|
8734
8810
|
# Amazon API Gateway REST API, an Application Load Balancer, an AppSync
|
|
8735
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
8811
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
8812
|
+
# Amazon Web Services Verified Access instance.
|
|
8736
8813
|
#
|
|
8737
8814
|
# @option params [required, String] :name
|
|
8738
8815
|
# The name of the web ACL. You cannot change the name of a web ACL after
|
|
@@ -8742,7 +8819,8 @@ module Aws::WAFV2
|
|
|
8742
8819
|
# Specifies whether this is for an Amazon CloudFront distribution or for
|
|
8743
8820
|
# a regional application. A regional application can be an Application
|
|
8744
8821
|
# Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync
|
|
8745
|
-
# GraphQL API, an Amazon Cognito user pool,
|
|
8822
|
+
# GraphQL API, an Amazon Cognito user pool, an App Runner service, or an
|
|
8823
|
+
# Amazon Web Services Verified Access instance.
|
|
8746
8824
|
#
|
|
8747
8825
|
# To work with CloudFront, you must also specify the Region US East (N.
|
|
8748
8826
|
# Virginia) as follows:
|
|
@@ -9620,7 +9698,7 @@ module Aws::WAFV2
|
|
|
9620
9698
|
params: params,
|
|
9621
9699
|
config: config)
|
|
9622
9700
|
context[:gem_name] = 'aws-sdk-wafv2'
|
|
9623
|
-
context[:gem_version] = '1.
|
|
9701
|
+
context[:gem_version] = '1.56.0'
|
|
9624
9702
|
Seahorse::Client::Request.new(handlers, context)
|
|
9625
9703
|
end
|
|
9626
9704
|
|
data/lib/aws-sdk-wafv2/types.rb
CHANGED
|
@@ -12,6 +12,17 @@ module Aws::WAFV2
|
|
|
12
12
|
|
|
13
13
|
# Information for a single API key.
|
|
14
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
|
+
#
|
|
15
26
|
# @!attribute [rw] token_domains
|
|
16
27
|
# The token domains that are defined in this API key.
|
|
17
28
|
# @return [Array<String>]
|
|
@@ -19,14 +30,6 @@ module Aws::WAFV2
|
|
|
19
30
|
# @!attribute [rw] api_key
|
|
20
31
|
# The generated, encrypted API key. You can copy this for use in your
|
|
21
32
|
# JavaScript CAPTCHA integration.
|
|
22
|
-
#
|
|
23
|
-
# For information about how to use this in your CAPTCHA JavaScript
|
|
24
|
-
# integration, see [WAF client application integration][1] in the *WAF
|
|
25
|
-
# Developer Guide*.
|
|
26
|
-
#
|
|
27
|
-
#
|
|
28
|
-
#
|
|
29
|
-
# [1]: https://docs.aws.amazon.com/waf/latest/developerguide/waf-application-integration.html
|
|
30
33
|
# @return [String]
|
|
31
34
|
#
|
|
32
35
|
# @!attribute [rw] creation_timestamp
|
|
@@ -238,6 +241,10 @@ module Aws::WAFV2
|
|
|
238
241
|
# * For an App Runner service:
|
|
239
242
|
# `arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id
|
|
240
243
|
# `
|
|
244
|
+
#
|
|
245
|
+
# * For an Amazon Web Services Verified Access instance:
|
|
246
|
+
# `arn:partition:ec2:region:account-id:verified-access-instance/instance-id
|
|
247
|
+
# `
|
|
241
248
|
# @return [String]
|
|
242
249
|
#
|
|
243
250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/AssociateWebACLRequest AWS API Documentation
|
|
@@ -680,8 +687,8 @@ module Aws::WAFV2
|
|
|
680
687
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
681
688
|
# for a regional application. A regional application can be an
|
|
682
689
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
683
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
684
|
-
# service.
|
|
690
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
691
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
685
692
|
#
|
|
686
693
|
# To work with CloudFront, you must also specify the Region US East
|
|
687
694
|
# (N. Virginia) as follows:
|
|
@@ -860,8 +867,8 @@ module Aws::WAFV2
|
|
|
860
867
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
861
868
|
# for a regional application. A regional application can be an
|
|
862
869
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
863
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
864
|
-
# service.
|
|
870
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
871
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
865
872
|
#
|
|
866
873
|
# To work with CloudFront, you must also specify the Region US East
|
|
867
874
|
# (N. Virginia) as follows:
|
|
@@ -875,6 +882,11 @@ module Aws::WAFV2
|
|
|
875
882
|
# @!attribute [rw] token_domains
|
|
876
883
|
# The client application domains that you want to use this API key
|
|
877
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.
|
|
878
890
|
# @return [Array<String>]
|
|
879
891
|
#
|
|
880
892
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/CreateAPIKeyRequest AWS API Documentation
|
|
@@ -889,14 +901,6 @@ module Aws::WAFV2
|
|
|
889
901
|
# @!attribute [rw] api_key
|
|
890
902
|
# The generated, encrypted API key. You can copy this for use in your
|
|
891
903
|
# JavaScript CAPTCHA integration.
|
|
892
|
-
#
|
|
893
|
-
# For information about how to use this in your CAPTCHA JavaScript
|
|
894
|
-
# integration, see [WAF client application integration][1] in the *WAF
|
|
895
|
-
# Developer Guide*.
|
|
896
|
-
#
|
|
897
|
-
#
|
|
898
|
-
#
|
|
899
|
-
# [1]: https://docs.aws.amazon.com/waf/latest/developerguide/waf-application-integration.html
|
|
900
904
|
# @return [String]
|
|
901
905
|
#
|
|
902
906
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/CreateAPIKeyResponse AWS API Documentation
|
|
@@ -916,8 +920,8 @@ module Aws::WAFV2
|
|
|
916
920
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
917
921
|
# for a regional application. A regional application can be an
|
|
918
922
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
919
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
920
|
-
# service.
|
|
923
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
924
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
921
925
|
#
|
|
922
926
|
# To work with CloudFront, you must also specify the Region US East
|
|
923
927
|
# (N. Virginia) as follows:
|
|
@@ -1023,8 +1027,8 @@ module Aws::WAFV2
|
|
|
1023
1027
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
1024
1028
|
# for a regional application. A regional application can be an
|
|
1025
1029
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
1026
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
1027
|
-
# service.
|
|
1030
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
1031
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
1028
1032
|
#
|
|
1029
1033
|
# To work with CloudFront, you must also specify the Region US East
|
|
1030
1034
|
# (N. Virginia) as follows:
|
|
@@ -1084,8 +1088,8 @@ module Aws::WAFV2
|
|
|
1084
1088
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
1085
1089
|
# for a regional application. A regional application can be an
|
|
1086
1090
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
1087
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
1088
|
-
# service.
|
|
1091
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
1092
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
1089
1093
|
#
|
|
1090
1094
|
# To work with CloudFront, you must also specify the Region US East
|
|
1091
1095
|
# (N. Virginia) as follows:
|
|
@@ -1199,8 +1203,8 @@ module Aws::WAFV2
|
|
|
1199
1203
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
1200
1204
|
# for a regional application. A regional application can be an
|
|
1201
1205
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
1202
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
1203
|
-
# service.
|
|
1206
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
1207
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
1204
1208
|
#
|
|
1205
1209
|
# To work with CloudFront, you must also specify the Region US East
|
|
1206
1210
|
# (N. Virginia) as follows:
|
|
@@ -1563,8 +1567,8 @@ module Aws::WAFV2
|
|
|
1563
1567
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
1564
1568
|
# for a regional application. A regional application can be an
|
|
1565
1569
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
1566
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
1567
|
-
# service.
|
|
1570
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
1571
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
1568
1572
|
#
|
|
1569
1573
|
# To work with CloudFront, you must also specify the Region US East
|
|
1570
1574
|
# (N. Virginia) as follows:
|
|
@@ -1653,8 +1657,8 @@ module Aws::WAFV2
|
|
|
1653
1657
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
1654
1658
|
# for a regional application. A regional application can be an
|
|
1655
1659
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
1656
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
1657
|
-
# service.
|
|
1660
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
1661
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
1658
1662
|
#
|
|
1659
1663
|
# To work with CloudFront, you must also specify the Region US East
|
|
1660
1664
|
# (N. Virginia) as follows:
|
|
@@ -1707,8 +1711,8 @@ module Aws::WAFV2
|
|
|
1707
1711
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
1708
1712
|
# for a regional application. A regional application can be an
|
|
1709
1713
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
1710
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
1711
|
-
# service.
|
|
1714
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
1715
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
1712
1716
|
#
|
|
1713
1717
|
# To work with CloudFront, you must also specify the Region US East
|
|
1714
1718
|
# (N. Virginia) as follows:
|
|
@@ -1761,8 +1765,8 @@ module Aws::WAFV2
|
|
|
1761
1765
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
1762
1766
|
# for a regional application. A regional application can be an
|
|
1763
1767
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
1764
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
1765
|
-
# service.
|
|
1768
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
1769
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
1766
1770
|
#
|
|
1767
1771
|
# To work with CloudFront, you must also specify the Region US East
|
|
1768
1772
|
# (N. Virginia) as follows:
|
|
@@ -1820,8 +1824,8 @@ module Aws::WAFV2
|
|
|
1820
1824
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
1821
1825
|
# for a regional application. A regional application can be an
|
|
1822
1826
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
1823
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
1824
|
-
# service.
|
|
1827
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
1828
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
1825
1829
|
#
|
|
1826
1830
|
# To work with CloudFront, you must also specify the Region US East
|
|
1827
1831
|
# (N. Virginia) as follows:
|
|
@@ -1955,6 +1959,10 @@ module Aws::WAFV2
|
|
|
1955
1959
|
# * For an App Runner service:
|
|
1956
1960
|
# `arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id
|
|
1957
1961
|
# `
|
|
1962
|
+
#
|
|
1963
|
+
# * For an Amazon Web Services Verified Access instance:
|
|
1964
|
+
# `arn:partition:ec2:region:account-id:verified-access-instance/instance-id
|
|
1965
|
+
# `
|
|
1958
1966
|
# @return [String]
|
|
1959
1967
|
#
|
|
1960
1968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/DisassociateWebACLRequest AWS API Documentation
|
|
@@ -2388,8 +2396,8 @@ module Aws::WAFV2
|
|
|
2388
2396
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
2389
2397
|
# for a regional application. A regional application can be an
|
|
2390
2398
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
2391
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
2392
|
-
# service.
|
|
2399
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
2400
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
2393
2401
|
#
|
|
2394
2402
|
# To work with CloudFront, you must also specify the Region US East
|
|
2395
2403
|
# (N. Virginia) as follows:
|
|
@@ -2439,8 +2447,8 @@ module Aws::WAFV2
|
|
|
2439
2447
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
2440
2448
|
# for a regional application. A regional application can be an
|
|
2441
2449
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
2442
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
2443
|
-
# service.
|
|
2450
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
2451
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
2444
2452
|
#
|
|
2445
2453
|
# To work with CloudFront, you must also specify the Region US East
|
|
2446
2454
|
# (N. Virginia) as follows:
|
|
@@ -2528,8 +2536,8 @@ module Aws::WAFV2
|
|
|
2528
2536
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
2529
2537
|
# for a regional application. A regional application can be an
|
|
2530
2538
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
2531
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
2532
|
-
# service.
|
|
2539
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
2540
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
2533
2541
|
#
|
|
2534
2542
|
# To work with CloudFront, you must also specify the Region US East
|
|
2535
2543
|
# (N. Virginia) as follows:
|
|
@@ -2641,8 +2649,8 @@ module Aws::WAFV2
|
|
|
2641
2649
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
2642
2650
|
# for a regional application. A regional application can be an
|
|
2643
2651
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
2644
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
2645
|
-
# service.
|
|
2652
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
2653
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
2646
2654
|
#
|
|
2647
2655
|
# To work with CloudFront, you must also specify the Region US East
|
|
2648
2656
|
# (N. Virginia) as follows:
|
|
@@ -2715,8 +2723,8 @@ module Aws::WAFV2
|
|
|
2715
2723
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
2716
2724
|
# for a regional application. A regional application can be an
|
|
2717
2725
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
2718
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
2719
|
-
# service.
|
|
2726
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
2727
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
2720
2728
|
#
|
|
2721
2729
|
# To work with CloudFront, you must also specify the Region US East
|
|
2722
2730
|
# (N. Virginia) as follows:
|
|
@@ -2776,8 +2784,8 @@ module Aws::WAFV2
|
|
|
2776
2784
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
2777
2785
|
# for a regional application. A regional application can be an
|
|
2778
2786
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
2779
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
2780
|
-
# service.
|
|
2787
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
2788
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
2781
2789
|
#
|
|
2782
2790
|
# To work with CloudFront, you must also specify the Region US East
|
|
2783
2791
|
# (N. Virginia) as follows:
|
|
@@ -2847,8 +2855,8 @@ module Aws::WAFV2
|
|
|
2847
2855
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
2848
2856
|
# for a regional application. A regional application can be an
|
|
2849
2857
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
2850
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
2851
|
-
# service.
|
|
2858
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
2859
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
2852
2860
|
#
|
|
2853
2861
|
# To work with CloudFront, you must also specify the Region US East
|
|
2854
2862
|
# (N. Virginia) as follows:
|
|
@@ -2944,6 +2952,10 @@ module Aws::WAFV2
|
|
|
2944
2952
|
# * For an App Runner service:
|
|
2945
2953
|
# `arn:partition:apprunner:region:account-id:service/apprunner-service-name/apprunner-service-id
|
|
2946
2954
|
# `
|
|
2955
|
+
#
|
|
2956
|
+
# * For an Amazon Web Services Verified Access instance:
|
|
2957
|
+
# `arn:partition:ec2:region:account-id:verified-access-instance/instance-id
|
|
2958
|
+
# `
|
|
2947
2959
|
# @return [String]
|
|
2948
2960
|
#
|
|
2949
2961
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/GetWebACLForResourceRequest AWS API Documentation
|
|
@@ -2976,8 +2988,8 @@ module Aws::WAFV2
|
|
|
2976
2988
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
2977
2989
|
# for a regional application. A regional application can be an
|
|
2978
2990
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
2979
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
2980
|
-
# service.
|
|
2991
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
2992
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
2981
2993
|
#
|
|
2982
2994
|
# To work with CloudFront, you must also specify the Region US East
|
|
2983
2995
|
# (N. Virginia) as follows:
|
|
@@ -3731,8 +3743,8 @@ module Aws::WAFV2
|
|
|
3731
3743
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
3732
3744
|
# for a regional application. A regional application can be an
|
|
3733
3745
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
3734
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
3735
|
-
# service.
|
|
3746
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
3747
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
3736
3748
|
#
|
|
3737
3749
|
# To work with CloudFront, you must also specify the Region US East
|
|
3738
3750
|
# (N. Virginia) as follows:
|
|
@@ -3784,14 +3796,6 @@ module Aws::WAFV2
|
|
|
3784
3796
|
# @!attribute [rw] application_integration_url
|
|
3785
3797
|
# The CAPTCHA application integration URL, for use in your JavaScript
|
|
3786
3798
|
# implementation.
|
|
3787
|
-
#
|
|
3788
|
-
# For information about how to use this in your CAPTCHA JavaScript
|
|
3789
|
-
# integration, see [WAF client application integration][1] in the *WAF
|
|
3790
|
-
# Developer Guide*.
|
|
3791
|
-
#
|
|
3792
|
-
#
|
|
3793
|
-
#
|
|
3794
|
-
# [1]: https://docs.aws.amazon.com/waf/latest/developerguide/waf-application-integration.html
|
|
3795
3799
|
# @return [String]
|
|
3796
3800
|
#
|
|
3797
3801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListAPIKeysResponse AWS API Documentation
|
|
@@ -3818,8 +3822,8 @@ module Aws::WAFV2
|
|
|
3818
3822
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
3819
3823
|
# for a regional application. A regional application can be an
|
|
3820
3824
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
3821
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
3822
|
-
# service.
|
|
3825
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
3826
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
3823
3827
|
#
|
|
3824
3828
|
# To work with CloudFront, you must also specify the Region US East
|
|
3825
3829
|
# (N. Virginia) as follows:
|
|
@@ -3889,8 +3893,8 @@ module Aws::WAFV2
|
|
|
3889
3893
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
3890
3894
|
# for a regional application. A regional application can be an
|
|
3891
3895
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
3892
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
3893
|
-
# service.
|
|
3896
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
3897
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
3894
3898
|
#
|
|
3895
3899
|
# To work with CloudFront, you must also specify the Region US East
|
|
3896
3900
|
# (N. Virginia) as follows:
|
|
@@ -3952,8 +3956,8 @@ module Aws::WAFV2
|
|
|
3952
3956
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
3953
3957
|
# for a regional application. A regional application can be an
|
|
3954
3958
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
3955
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
3956
|
-
# service.
|
|
3959
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
3960
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
3957
3961
|
#
|
|
3958
3962
|
# To work with CloudFront, you must also specify the Region US East
|
|
3959
3963
|
# (N. Virginia) as follows:
|
|
@@ -4015,8 +4019,8 @@ module Aws::WAFV2
|
|
|
4015
4019
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
4016
4020
|
# for a regional application. A regional application can be an
|
|
4017
4021
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
4018
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
4019
|
-
# service.
|
|
4022
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
4023
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
4020
4024
|
#
|
|
4021
4025
|
# To work with CloudFront, you must also specify the Region US East
|
|
4022
4026
|
# (N. Virginia) as follows:
|
|
@@ -4078,8 +4082,8 @@ module Aws::WAFV2
|
|
|
4078
4082
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
4079
4083
|
# for a regional application. A regional application can be an
|
|
4080
4084
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
4081
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
4082
|
-
# service.
|
|
4085
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
4086
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
4083
4087
|
#
|
|
4084
4088
|
# To work with CloudFront, you must also specify the Region US East
|
|
4085
4089
|
# (N. Virginia) as follows:
|
|
@@ -4193,8 +4197,8 @@ module Aws::WAFV2
|
|
|
4193
4197
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
4194
4198
|
# for a regional application. A regional application can be an
|
|
4195
4199
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
4196
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
4197
|
-
# service.
|
|
4200
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
4201
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
4198
4202
|
#
|
|
4199
4203
|
# To work with CloudFront, you must also specify the Region US East
|
|
4200
4204
|
# (N. Virginia) as follows:
|
|
@@ -4260,7 +4264,8 @@ module Aws::WAFV2
|
|
|
4260
4264
|
# Used for web ACLs that are scoped for regional applications. A
|
|
4261
4265
|
# regional application can be an Application Load Balancer (ALB), an
|
|
4262
4266
|
# Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon
|
|
4263
|
-
# Cognito user pool,
|
|
4267
|
+
# Cognito user pool, an App Runner service, or an Amazon Web Services
|
|
4268
|
+
# Verified Access instance.
|
|
4264
4269
|
#
|
|
4265
4270
|
# <note markdown="1"> If you don't provide a resource type, the call uses the resource
|
|
4266
4271
|
# type `APPLICATION_LOAD_BALANCER`.
|
|
@@ -4296,8 +4301,8 @@ module Aws::WAFV2
|
|
|
4296
4301
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
4297
4302
|
# for a regional application. A regional application can be an
|
|
4298
4303
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
4299
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
4300
|
-
# service.
|
|
4304
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
4305
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
4301
4306
|
#
|
|
4302
4307
|
# To work with CloudFront, you must also specify the Region US East
|
|
4303
4308
|
# (N. Virginia) as follows:
|
|
@@ -4411,8 +4416,8 @@ module Aws::WAFV2
|
|
|
4411
4416
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
4412
4417
|
# for a regional application. A regional application can be an
|
|
4413
4418
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
4414
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
4415
|
-
# service.
|
|
4419
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
4420
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
4416
4421
|
#
|
|
4417
4422
|
# To work with CloudFront, you must also specify the Region US East
|
|
4418
4423
|
# (N. Virginia) as follows:
|
|
@@ -5262,8 +5267,8 @@ module Aws::WAFV2
|
|
|
5262
5267
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
5263
5268
|
# for a regional application. A regional application can be an
|
|
5264
5269
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
5265
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
5266
|
-
# service.
|
|
5270
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
5271
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
5267
5272
|
#
|
|
5268
5273
|
# To work with CloudFront, you must also specify the Region US East
|
|
5269
5274
|
# (N. Virginia) as follows:
|
|
@@ -7240,8 +7245,8 @@ module Aws::WAFV2
|
|
|
7240
7245
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
7241
7246
|
# for a regional application. A regional application can be an
|
|
7242
7247
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
7243
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
7244
|
-
# service.
|
|
7248
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
7249
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
7245
7250
|
#
|
|
7246
7251
|
# To work with CloudFront, you must also specify the Region US East
|
|
7247
7252
|
# (N. Virginia) as follows:
|
|
@@ -7359,8 +7364,8 @@ module Aws::WAFV2
|
|
|
7359
7364
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
7360
7365
|
# for a regional application. A regional application can be an
|
|
7361
7366
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
7362
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
7363
|
-
# service.
|
|
7367
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
7368
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
7364
7369
|
#
|
|
7365
7370
|
# To work with CloudFront, you must also specify the Region US East
|
|
7366
7371
|
# (N. Virginia) as follows:
|
|
@@ -7458,8 +7463,8 @@ module Aws::WAFV2
|
|
|
7458
7463
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
7459
7464
|
# for a regional application. A regional application can be an
|
|
7460
7465
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
7461
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
7462
|
-
# service.
|
|
7466
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
7467
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
7463
7468
|
#
|
|
7464
7469
|
# To work with CloudFront, you must also specify the Region US East
|
|
7465
7470
|
# (N. Virginia) as follows:
|
|
@@ -7531,8 +7536,8 @@ module Aws::WAFV2
|
|
|
7531
7536
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
7532
7537
|
# for a regional application. A regional application can be an
|
|
7533
7538
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
7534
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
7535
|
-
# service.
|
|
7539
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
7540
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
7536
7541
|
#
|
|
7537
7542
|
# To work with CloudFront, you must also specify the Region US East
|
|
7538
7543
|
# (N. Virginia) as follows:
|
|
@@ -7635,8 +7640,8 @@ module Aws::WAFV2
|
|
|
7635
7640
|
# Specifies whether this is for an Amazon CloudFront distribution or
|
|
7636
7641
|
# for a regional application. A regional application can be an
|
|
7637
7642
|
# Application Load Balancer (ALB), an Amazon API Gateway REST API, an
|
|
7638
|
-
# AppSync GraphQL API, an Amazon Cognito user pool,
|
|
7639
|
-
# service.
|
|
7643
|
+
# AppSync GraphQL API, an Amazon Cognito user pool, an App Runner
|
|
7644
|
+
# service, or an Amazon Web Services Verified Access instance.
|
|
7640
7645
|
#
|
|
7641
7646
|
# To work with CloudFront, you must also specify the Region US East
|
|
7642
7647
|
# (N. Virginia) as follows:
|
|
@@ -8235,7 +8240,8 @@ module Aws::WAFV2
|
|
|
8235
8240
|
# can associate a web ACL with one or more Amazon Web Services resources
|
|
8236
8241
|
# to protect. The resources can be an Amazon CloudFront distribution, an
|
|
8237
8242
|
# Amazon API Gateway REST API, an Application Load Balancer, an AppSync
|
|
8238
|
-
# 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.
|
|
8239
8245
|
#
|
|
8240
8246
|
# @!attribute [rw] name
|
|
8241
8247
|
# The name of the web ACL. You cannot change the name of a web ACL
|
data/lib/aws-sdk-wafv2.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-wafv2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.56.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-04-
|
|
11
|
+
date: 2023-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|