aws-sdk-wafv2 1.104.0 → 1.106.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 +165 -49
- data/lib/aws-sdk-wafv2/client_api.rb +9 -3
- data/lib/aws-sdk-wafv2/types.rb +164 -41
- data/lib/aws-sdk-wafv2.rb +1 -1
- data/sig/client.rbs +99 -5
- data/sig/types.rbs +8 -1
- metadata +2 -2
@@ -404,6 +404,7 @@ module Aws::WAFV2
|
|
404
404
|
UpdateRuleGroupResponse = Shapes::StructureShape.new(name: 'UpdateRuleGroupResponse')
|
405
405
|
UpdateWebACLRequest = Shapes::StructureShape.new(name: 'UpdateWebACLRequest')
|
406
406
|
UpdateWebACLResponse = Shapes::StructureShape.new(name: 'UpdateWebACLResponse')
|
407
|
+
UriFragment = Shapes::StructureShape.new(name: 'UriFragment')
|
407
408
|
UriPath = Shapes::StructureShape.new(name: 'UriPath')
|
408
409
|
UsernameField = Shapes::StructureShape.new(name: 'UsernameField')
|
409
410
|
VendorName = Shapes::StringShape.new(name: 'VendorName')
|
@@ -759,6 +760,7 @@ module Aws::WAFV2
|
|
759
760
|
FieldToMatch.add_member(:header_order, Shapes::ShapeRef.new(shape: HeaderOrder, location_name: "HeaderOrder"))
|
760
761
|
FieldToMatch.add_member(:ja3_fingerprint, Shapes::ShapeRef.new(shape: JA3Fingerprint, location_name: "JA3Fingerprint"))
|
761
762
|
FieldToMatch.add_member(:ja4_fingerprint, Shapes::ShapeRef.new(shape: JA4Fingerprint, location_name: "JA4Fingerprint"))
|
763
|
+
FieldToMatch.add_member(:uri_fragment, Shapes::ShapeRef.new(shape: UriFragment, location_name: "UriFragment"))
|
762
764
|
FieldToMatch.struct_class = Types::FieldToMatch
|
763
765
|
|
764
766
|
FieldToProtect.add_member(:field_type, Shapes::ShapeRef.new(shape: FieldToProtectType, required: true, location_name: "FieldType"))
|
@@ -897,9 +899,10 @@ module Aws::WAFV2
|
|
897
899
|
GetWebACLForResourceResponse.add_member(:web_acl, Shapes::ShapeRef.new(shape: WebACL, location_name: "WebACL"))
|
898
900
|
GetWebACLForResourceResponse.struct_class = Types::GetWebACLForResourceResponse
|
899
901
|
|
900
|
-
GetWebACLRequest.add_member(:name, Shapes::ShapeRef.new(shape: EntityName,
|
901
|
-
GetWebACLRequest.add_member(:scope, Shapes::ShapeRef.new(shape: Scope,
|
902
|
-
GetWebACLRequest.add_member(:id, Shapes::ShapeRef.new(shape: EntityId,
|
902
|
+
GetWebACLRequest.add_member(:name, Shapes::ShapeRef.new(shape: EntityName, location_name: "Name"))
|
903
|
+
GetWebACLRequest.add_member(:scope, Shapes::ShapeRef.new(shape: Scope, location_name: "Scope"))
|
904
|
+
GetWebACLRequest.add_member(:id, Shapes::ShapeRef.new(shape: EntityId, location_name: "Id"))
|
905
|
+
GetWebACLRequest.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "ARN"))
|
903
906
|
GetWebACLRequest.struct_class = Types::GetWebACLRequest
|
904
907
|
|
905
908
|
GetWebACLResponse.add_member(:web_acl, Shapes::ShapeRef.new(shape: WebACL, location_name: "WebACL"))
|
@@ -1633,6 +1636,9 @@ module Aws::WAFV2
|
|
1633
1636
|
UpdateWebACLResponse.add_member(:next_lock_token, Shapes::ShapeRef.new(shape: LockToken, location_name: "NextLockToken"))
|
1634
1637
|
UpdateWebACLResponse.struct_class = Types::UpdateWebACLResponse
|
1635
1638
|
|
1639
|
+
UriFragment.add_member(:fallback_behavior, Shapes::ShapeRef.new(shape: FallbackBehavior, location_name: "FallbackBehavior"))
|
1640
|
+
UriFragment.struct_class = Types::UriFragment
|
1641
|
+
|
1636
1642
|
UriPath.struct_class = Types::UriPath
|
1637
1643
|
|
1638
1644
|
UsernameField.add_member(:identifier, Shapes::ShapeRef.new(shape: FieldIdentifier, required: true, location_name: "Identifier"))
|
data/lib/aws-sdk-wafv2/types.rb
CHANGED
@@ -394,6 +394,9 @@ module Aws::WAFV2
|
|
394
394
|
# * For an Amazon Web Services Verified Access instance:
|
395
395
|
# `arn:partition:ec2:region:account-id:verified-access-instance/instance-id
|
396
396
|
# `
|
397
|
+
#
|
398
|
+
# * For an Amplify application:
|
399
|
+
# `arn:partition:amplify:region:account-id:apps/app-id `
|
397
400
|
# @return [String]
|
398
401
|
#
|
399
402
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/AssociateWebACLRequest AWS API Documentation
|
@@ -512,6 +515,8 @@ module Aws::WAFV2
|
|
512
515
|
# you can increase the limit for each resource type in the web ACL
|
513
516
|
# `AssociationConfig`, for additional processing fees.
|
514
517
|
#
|
518
|
+
# * For Amplify, use the CloudFront limit.
|
519
|
+
#
|
515
520
|
# The options for oversize handling are the following:
|
516
521
|
#
|
517
522
|
# * `CONTINUE` - Inspect the available body contents normally,
|
@@ -875,7 +880,8 @@ module Aws::WAFV2
|
|
875
880
|
|
876
881
|
# @!attribute [rw] scope
|
877
882
|
# Specifies whether this is for a global resource type, such as a
|
878
|
-
# Amazon CloudFront distribution.
|
883
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
884
|
+
# `CLOUDFRONT`.
|
879
885
|
#
|
880
886
|
# To work with CloudFront, you must also specify the Region US East
|
881
887
|
# (N. Virginia) as follows:
|
@@ -1059,7 +1065,8 @@ module Aws::WAFV2
|
|
1059
1065
|
|
1060
1066
|
# @!attribute [rw] scope
|
1061
1067
|
# Specifies whether this is for a global resource type, such as a
|
1062
|
-
# Amazon CloudFront distribution.
|
1068
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
1069
|
+
# `CLOUDFRONT`.
|
1063
1070
|
#
|
1064
1071
|
# To work with CloudFront, you must also specify the Region US East
|
1065
1072
|
# (N. Virginia) as follows:
|
@@ -1109,7 +1116,8 @@ module Aws::WAFV2
|
|
1109
1116
|
#
|
1110
1117
|
# @!attribute [rw] scope
|
1111
1118
|
# Specifies whether this is for a global resource type, such as a
|
1112
|
-
# Amazon CloudFront distribution.
|
1119
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
1120
|
+
# `CLOUDFRONT`.
|
1113
1121
|
#
|
1114
1122
|
# To work with CloudFront, you must also specify the Region US East
|
1115
1123
|
# (N. Virginia) as follows:
|
@@ -1210,7 +1218,8 @@ module Aws::WAFV2
|
|
1210
1218
|
#
|
1211
1219
|
# @!attribute [rw] scope
|
1212
1220
|
# Specifies whether this is for a global resource type, such as a
|
1213
|
-
# Amazon CloudFront distribution.
|
1221
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
1222
|
+
# `CLOUDFRONT`.
|
1214
1223
|
#
|
1215
1224
|
# To work with CloudFront, you must also specify the Region US East
|
1216
1225
|
# (N. Virginia) as follows:
|
@@ -1268,7 +1277,8 @@ module Aws::WAFV2
|
|
1268
1277
|
#
|
1269
1278
|
# @!attribute [rw] scope
|
1270
1279
|
# Specifies whether this is for a global resource type, such as a
|
1271
|
-
# Amazon CloudFront distribution.
|
1280
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
1281
|
+
# `CLOUDFRONT`.
|
1272
1282
|
#
|
1273
1283
|
# To work with CloudFront, you must also specify the Region US East
|
1274
1284
|
# (N. Virginia) as follows:
|
@@ -1380,7 +1390,8 @@ module Aws::WAFV2
|
|
1380
1390
|
#
|
1381
1391
|
# @!attribute [rw] scope
|
1382
1392
|
# Specifies whether this is for a global resource type, such as a
|
1383
|
-
# Amazon CloudFront distribution.
|
1393
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
1394
|
+
# `CLOUDFRONT`.
|
1384
1395
|
#
|
1385
1396
|
# To work with CloudFront, you must also specify the Region US East
|
1386
1397
|
# (N. Virginia) as follows:
|
@@ -1794,7 +1805,8 @@ module Aws::WAFV2
|
|
1794
1805
|
|
1795
1806
|
# @!attribute [rw] scope
|
1796
1807
|
# Specifies whether this is for a global resource type, such as a
|
1797
|
-
# Amazon CloudFront distribution.
|
1808
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
1809
|
+
# `CLOUDFRONT`.
|
1798
1810
|
#
|
1799
1811
|
# To work with CloudFront, you must also specify the Region US East
|
1800
1812
|
# (N. Virginia) as follows:
|
@@ -1874,7 +1886,8 @@ module Aws::WAFV2
|
|
1874
1886
|
#
|
1875
1887
|
# @!attribute [rw] scope
|
1876
1888
|
# Specifies whether this is for a global resource type, such as a
|
1877
|
-
# Amazon CloudFront distribution.
|
1889
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
1890
|
+
# `CLOUDFRONT`.
|
1878
1891
|
#
|
1879
1892
|
# To work with CloudFront, you must also specify the Region US East
|
1880
1893
|
# (N. Virginia) as follows:
|
@@ -1988,7 +2001,8 @@ module Aws::WAFV2
|
|
1988
2001
|
#
|
1989
2002
|
# @!attribute [rw] scope
|
1990
2003
|
# Specifies whether this is for a global resource type, such as a
|
1991
|
-
# Amazon CloudFront distribution.
|
2004
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
2005
|
+
# `CLOUDFRONT`.
|
1992
2006
|
#
|
1993
2007
|
# To work with CloudFront, you must also specify the Region US East
|
1994
2008
|
# (N. Virginia) as follows:
|
@@ -2039,7 +2053,8 @@ module Aws::WAFV2
|
|
2039
2053
|
#
|
2040
2054
|
# @!attribute [rw] scope
|
2041
2055
|
# Specifies whether this is for a global resource type, such as a
|
2042
|
-
# Amazon CloudFront distribution.
|
2056
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
2057
|
+
# `CLOUDFRONT`.
|
2043
2058
|
#
|
2044
2059
|
# To work with CloudFront, you must also specify the Region US East
|
2045
2060
|
# (N. Virginia) as follows:
|
@@ -2090,7 +2105,8 @@ module Aws::WAFV2
|
|
2090
2105
|
#
|
2091
2106
|
# @!attribute [rw] scope
|
2092
2107
|
# Specifies whether this is for a global resource type, such as a
|
2093
|
-
# Amazon CloudFront distribution.
|
2108
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
2109
|
+
# `CLOUDFRONT`.
|
2094
2110
|
#
|
2095
2111
|
# To work with CloudFront, you must also specify the Region US East
|
2096
2112
|
# (N. Virginia) as follows:
|
@@ -2136,7 +2152,8 @@ module Aws::WAFV2
|
|
2136
2152
|
|
2137
2153
|
# @!attribute [rw] scope
|
2138
2154
|
# Specifies whether this is for a global resource type, such as a
|
2139
|
-
# Amazon CloudFront distribution.
|
2155
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
2156
|
+
# `CLOUDFRONT`.
|
2140
2157
|
#
|
2141
2158
|
# To work with CloudFront, you must also specify the Region US East
|
2142
2159
|
# (N. Virginia) as follows:
|
@@ -2175,7 +2192,8 @@ module Aws::WAFV2
|
|
2175
2192
|
#
|
2176
2193
|
# @!attribute [rw] scope
|
2177
2194
|
# Specifies whether this is for a global resource type, such as a
|
2178
|
-
# Amazon CloudFront distribution.
|
2195
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
2196
|
+
# `CLOUDFRONT`.
|
2179
2197
|
#
|
2180
2198
|
# To work with CloudFront, you must also specify the Region US East
|
2181
2199
|
# (N. Virginia) as follows:
|
@@ -2220,7 +2238,8 @@ module Aws::WAFV2
|
|
2220
2238
|
#
|
2221
2239
|
# @!attribute [rw] scope
|
2222
2240
|
# Specifies whether this is for a global resource type, such as a
|
2223
|
-
# Amazon CloudFront distribution.
|
2241
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
2242
|
+
# `CLOUDFRONT`.
|
2224
2243
|
#
|
2225
2244
|
# To work with CloudFront, you must also specify the Region US East
|
2226
2245
|
# (N. Virginia) as follows:
|
@@ -2359,6 +2378,9 @@ module Aws::WAFV2
|
|
2359
2378
|
# * For an Amazon Web Services Verified Access instance:
|
2360
2379
|
# `arn:partition:ec2:region:account-id:verified-access-instance/instance-id
|
2361
2380
|
# `
|
2381
|
+
#
|
2382
|
+
# * For an Amplify application:
|
2383
|
+
# `arn:partition:amplify:region:account-id:apps/app-id `
|
2362
2384
|
# @return [String]
|
2363
2385
|
#
|
2364
2386
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/DisassociateWebACLRequest AWS API Documentation
|
@@ -2520,6 +2542,8 @@ module Aws::WAFV2
|
|
2520
2542
|
# you can increase the limit for each resource type in the web ACL
|
2521
2543
|
# `AssociationConfig`, for additional processing fees.
|
2522
2544
|
#
|
2545
|
+
# * For Amplify, use the CloudFront limit.
|
2546
|
+
#
|
2523
2547
|
# For information about how to handle oversized request bodies, see
|
2524
2548
|
# the `Body` object configuration.
|
2525
2549
|
# @return [Types::Body]
|
@@ -2549,6 +2573,8 @@ module Aws::WAFV2
|
|
2549
2573
|
# you can increase the limit for each resource type in the web ACL
|
2550
2574
|
# `AssociationConfig`, for additional processing fees.
|
2551
2575
|
#
|
2576
|
+
# * For Amplify, use the CloudFront limit.
|
2577
|
+
#
|
2552
2578
|
# For information about how to handle oversized request bodies, see
|
2553
2579
|
# the `JsonBody` object configuration.
|
2554
2580
|
# @return [Types::JsonBody]
|
@@ -2648,6 +2674,19 @@ module Aws::WAFV2
|
|
2648
2674
|
# [1]: https://docs.aws.amazon.com/waf/latest/developerguide/logging-fields.html
|
2649
2675
|
# @return [Types::JA4Fingerprint]
|
2650
2676
|
#
|
2677
|
+
# @!attribute [rw] uri_fragment
|
2678
|
+
# Inspect fragments of the request URI. You must configure scope and
|
2679
|
+
# pattern matching filters in the `UriFragment` object, to define the
|
2680
|
+
# fragment of a URI that WAF inspects.
|
2681
|
+
#
|
2682
|
+
# Only the first 8 KB (8192 bytes) of a request's URI fragments and
|
2683
|
+
# only the first 200 URI fragments are forwarded to WAF for inspection
|
2684
|
+
# by the underlying host service. You must configure how to handle any
|
2685
|
+
# oversize URI fragment content in the `UriFragment` object. WAF
|
2686
|
+
# applies the pattern matching filters to the cookies that it receives
|
2687
|
+
# from the underlying host service.
|
2688
|
+
# @return [Types::UriFragment]
|
2689
|
+
#
|
2651
2690
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/FieldToMatch AWS API Documentation
|
2652
2691
|
#
|
2653
2692
|
class FieldToMatch < Struct.new(
|
@@ -2663,7 +2702,8 @@ module Aws::WAFV2
|
|
2663
2702
|
:cookies,
|
2664
2703
|
:header_order,
|
2665
2704
|
:ja3_fingerprint,
|
2666
|
-
:ja4_fingerprint
|
2705
|
+
:ja4_fingerprint,
|
2706
|
+
:uri_fragment)
|
2667
2707
|
SENSITIVE = []
|
2668
2708
|
include Aws::Structure
|
2669
2709
|
end
|
@@ -2957,7 +2997,8 @@ module Aws::WAFV2
|
|
2957
2997
|
|
2958
2998
|
# @!attribute [rw] scope
|
2959
2999
|
# Specifies whether this is for a global resource type, such as a
|
2960
|
-
# Amazon CloudFront distribution.
|
3000
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
3001
|
+
# `CLOUDFRONT`.
|
2961
3002
|
#
|
2962
3003
|
# To work with CloudFront, you must also specify the Region US East
|
2963
3004
|
# (N. Virginia) as follows:
|
@@ -3005,7 +3046,8 @@ module Aws::WAFV2
|
|
3005
3046
|
#
|
3006
3047
|
# @!attribute [rw] scope
|
3007
3048
|
# Specifies whether this is for a global resource type, such as a
|
3008
|
-
# Amazon CloudFront distribution.
|
3049
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
3050
|
+
# `CLOUDFRONT`.
|
3009
3051
|
#
|
3010
3052
|
# To work with CloudFront, you must also specify the Region US East
|
3011
3053
|
# (N. Virginia) as follows:
|
@@ -3118,7 +3160,8 @@ module Aws::WAFV2
|
|
3118
3160
|
#
|
3119
3161
|
# @!attribute [rw] scope
|
3120
3162
|
# Specifies whether this is for a global resource type, such as a
|
3121
|
-
# Amazon CloudFront distribution.
|
3163
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
3164
|
+
# `CLOUDFRONT`.
|
3122
3165
|
#
|
3123
3166
|
# To work with CloudFront, you must also specify the Region US East
|
3124
3167
|
# (N. Virginia) as follows:
|
@@ -3228,7 +3271,8 @@ module Aws::WAFV2
|
|
3228
3271
|
|
3229
3272
|
# @!attribute [rw] scope
|
3230
3273
|
# Specifies whether this is for a global resource type, such as a
|
3231
|
-
# Amazon CloudFront distribution.
|
3274
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
3275
|
+
# `CLOUDFRONT`.
|
3232
3276
|
#
|
3233
3277
|
# To work with CloudFront, you must also specify the Region US East
|
3234
3278
|
# (N. Virginia) as follows:
|
@@ -3299,7 +3343,8 @@ module Aws::WAFV2
|
|
3299
3343
|
#
|
3300
3344
|
# @!attribute [rw] scope
|
3301
3345
|
# Specifies whether this is for a global resource type, such as a
|
3302
|
-
# Amazon CloudFront distribution.
|
3346
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
3347
|
+
# `CLOUDFRONT`.
|
3303
3348
|
#
|
3304
3349
|
# To work with CloudFront, you must also specify the Region US East
|
3305
3350
|
# (N. Virginia) as follows:
|
@@ -3357,7 +3402,8 @@ module Aws::WAFV2
|
|
3357
3402
|
#
|
3358
3403
|
# @!attribute [rw] scope
|
3359
3404
|
# Specifies whether this is for a global resource type, such as a
|
3360
|
-
# Amazon CloudFront distribution.
|
3405
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
3406
|
+
# `CLOUDFRONT`.
|
3361
3407
|
#
|
3362
3408
|
# To work with CloudFront, you must also specify the Region US East
|
3363
3409
|
# (N. Virginia) as follows:
|
@@ -3425,7 +3471,8 @@ module Aws::WAFV2
|
|
3425
3471
|
#
|
3426
3472
|
# @!attribute [rw] scope
|
3427
3473
|
# Specifies whether this is for a global resource type, such as a
|
3428
|
-
# Amazon CloudFront distribution.
|
3474
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
3475
|
+
# `CLOUDFRONT`.
|
3429
3476
|
#
|
3430
3477
|
# To work with CloudFront, you must also specify the Region US East
|
3431
3478
|
# (N. Virginia) as follows:
|
@@ -3525,6 +3572,9 @@ module Aws::WAFV2
|
|
3525
3572
|
# * For an Amazon Web Services Verified Access instance:
|
3526
3573
|
# `arn:partition:ec2:region:account-id:verified-access-instance/instance-id
|
3527
3574
|
# `
|
3575
|
+
#
|
3576
|
+
# * For an Amplify application:
|
3577
|
+
# `arn:partition:amplify:region:account-id:apps/app-id `
|
3528
3578
|
# @return [String]
|
3529
3579
|
#
|
3530
3580
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/GetWebACLForResourceRequest AWS API Documentation
|
@@ -3555,7 +3605,8 @@ module Aws::WAFV2
|
|
3555
3605
|
#
|
3556
3606
|
# @!attribute [rw] scope
|
3557
3607
|
# Specifies whether this is for a global resource type, such as a
|
3558
|
-
# Amazon CloudFront distribution.
|
3608
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
3609
|
+
# `CLOUDFRONT`.
|
3559
3610
|
#
|
3560
3611
|
# To work with CloudFront, you must also specify the Region US East
|
3561
3612
|
# (N. Virginia) as follows:
|
@@ -3572,12 +3623,18 @@ module Aws::WAFV2
|
|
3572
3623
|
# like update and delete.
|
3573
3624
|
# @return [String]
|
3574
3625
|
#
|
3626
|
+
# @!attribute [rw] arn
|
3627
|
+
# The Amazon Resource Name (ARN) of the web ACL that you want to
|
3628
|
+
# retrieve.
|
3629
|
+
# @return [String]
|
3630
|
+
#
|
3575
3631
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/GetWebACLRequest AWS API Documentation
|
3576
3632
|
#
|
3577
3633
|
class GetWebACLRequest < Struct.new(
|
3578
3634
|
:name,
|
3579
3635
|
:scope,
|
3580
|
-
:id
|
3636
|
+
:id,
|
3637
|
+
:arn)
|
3581
3638
|
SENSITIVE = []
|
3582
3639
|
include Aws::Structure
|
3583
3640
|
end
|
@@ -4285,6 +4342,8 @@ module Aws::WAFV2
|
|
4285
4342
|
# you can increase the limit for each resource type in the web ACL
|
4286
4343
|
# `AssociationConfig`, for additional processing fees.
|
4287
4344
|
#
|
4345
|
+
# * For Amplify, use the CloudFront limit.
|
4346
|
+
#
|
4288
4347
|
# The options for oversize handling are the following:
|
4289
4348
|
#
|
4290
4349
|
# * `CONTINUE` - Inspect the available body contents normally,
|
@@ -4458,7 +4517,8 @@ module Aws::WAFV2
|
|
4458
4517
|
|
4459
4518
|
# @!attribute [rw] scope
|
4460
4519
|
# Specifies whether this is for a global resource type, such as a
|
4461
|
-
# Amazon CloudFront distribution.
|
4520
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
4521
|
+
# `CLOUDFRONT`.
|
4462
4522
|
#
|
4463
4523
|
# To work with CloudFront, you must also specify the Region US East
|
4464
4524
|
# (N. Virginia) as follows:
|
@@ -4534,7 +4594,8 @@ module Aws::WAFV2
|
|
4534
4594
|
#
|
4535
4595
|
# @!attribute [rw] scope
|
4536
4596
|
# Specifies whether this is for a global resource type, such as a
|
4537
|
-
# Amazon CloudFront distribution.
|
4597
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
4598
|
+
# `CLOUDFRONT`.
|
4538
4599
|
#
|
4539
4600
|
# To work with CloudFront, you must also specify the Region US East
|
4540
4601
|
# (N. Virginia) as follows:
|
@@ -4602,7 +4663,8 @@ module Aws::WAFV2
|
|
4602
4663
|
|
4603
4664
|
# @!attribute [rw] scope
|
4604
4665
|
# Specifies whether this is for a global resource type, such as a
|
4605
|
-
# Amazon CloudFront distribution.
|
4666
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
4667
|
+
# `CLOUDFRONT`.
|
4606
4668
|
#
|
4607
4669
|
# To work with CloudFront, you must also specify the Region US East
|
4608
4670
|
# (N. Virginia) as follows:
|
@@ -4662,7 +4724,8 @@ module Aws::WAFV2
|
|
4662
4724
|
|
4663
4725
|
# @!attribute [rw] scope
|
4664
4726
|
# Specifies whether this is for a global resource type, such as a
|
4665
|
-
# Amazon CloudFront distribution.
|
4727
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
4728
|
+
# `CLOUDFRONT`.
|
4666
4729
|
#
|
4667
4730
|
# To work with CloudFront, you must also specify the Region US East
|
4668
4731
|
# (N. Virginia) as follows:
|
@@ -4722,7 +4785,8 @@ module Aws::WAFV2
|
|
4722
4785
|
|
4723
4786
|
# @!attribute [rw] scope
|
4724
4787
|
# Specifies whether this is for a global resource type, such as a
|
4725
|
-
# Amazon CloudFront distribution.
|
4788
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
4789
|
+
# `CLOUDFRONT`.
|
4726
4790
|
#
|
4727
4791
|
# To work with CloudFront, you must also specify the Region US East
|
4728
4792
|
# (N. Virginia) as follows:
|
@@ -4801,7 +4865,8 @@ module Aws::WAFV2
|
|
4801
4865
|
|
4802
4866
|
# @!attribute [rw] scope
|
4803
4867
|
# Specifies whether this is for a global resource type, such as a
|
4804
|
-
# Amazon CloudFront distribution.
|
4868
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
4869
|
+
# `CLOUDFRONT`.
|
4805
4870
|
#
|
4806
4871
|
# To work with CloudFront, you must also specify the Region US East
|
4807
4872
|
# (N. Virginia) as follows:
|
@@ -4913,7 +4978,8 @@ module Aws::WAFV2
|
|
4913
4978
|
|
4914
4979
|
# @!attribute [rw] scope
|
4915
4980
|
# Specifies whether this is for a global resource type, such as a
|
4916
|
-
# Amazon CloudFront distribution.
|
4981
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
4982
|
+
# `CLOUDFRONT`.
|
4917
4983
|
#
|
4918
4984
|
# To work with CloudFront, you must also specify the Region US East
|
4919
4985
|
# (N. Virginia) as follows:
|
@@ -5019,7 +5085,8 @@ module Aws::WAFV2
|
|
5019
5085
|
|
5020
5086
|
# @!attribute [rw] scope
|
5021
5087
|
# Specifies whether this is for a global resource type, such as a
|
5022
|
-
# Amazon CloudFront distribution.
|
5088
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
5089
|
+
# `CLOUDFRONT`.
|
5023
5090
|
#
|
5024
5091
|
# To work with CloudFront, you must also specify the Region US East
|
5025
5092
|
# (N. Virginia) as follows:
|
@@ -5131,7 +5198,8 @@ module Aws::WAFV2
|
|
5131
5198
|
|
5132
5199
|
# @!attribute [rw] scope
|
5133
5200
|
# Specifies whether this is for a global resource type, such as a
|
5134
|
-
# Amazon CloudFront distribution.
|
5201
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
5202
|
+
# `CLOUDFRONT`.
|
5135
5203
|
#
|
5136
5204
|
# To work with CloudFront, you must also specify the Region US East
|
5137
5205
|
# (N. Virginia) as follows:
|
@@ -6228,7 +6296,8 @@ module Aws::WAFV2
|
|
6228
6296
|
#
|
6229
6297
|
# @!attribute [rw] scope
|
6230
6298
|
# Specifies whether this is for a global resource type, such as a
|
6231
|
-
# Amazon CloudFront distribution.
|
6299
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
6300
|
+
# `CLOUDFRONT`.
|
6232
6301
|
#
|
6233
6302
|
# To work with CloudFront, you must also specify the Region US East
|
6234
6303
|
# (N. Virginia) as follows:
|
@@ -8928,7 +8997,8 @@ module Aws::WAFV2
|
|
8928
8997
|
#
|
8929
8998
|
# @!attribute [rw] scope
|
8930
8999
|
# Specifies whether this is for a global resource type, such as a
|
8931
|
-
# Amazon CloudFront distribution.
|
9000
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
9001
|
+
# `CLOUDFRONT`.
|
8932
9002
|
#
|
8933
9003
|
# To work with CloudFront, you must also specify the Region US East
|
8934
9004
|
# (N. Virginia) as follows:
|
@@ -9041,7 +9111,8 @@ module Aws::WAFV2
|
|
9041
9111
|
#
|
9042
9112
|
# @!attribute [rw] scope
|
9043
9113
|
# Specifies whether this is for a global resource type, such as a
|
9044
|
-
# Amazon CloudFront distribution.
|
9114
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
9115
|
+
# `CLOUDFRONT`.
|
9045
9116
|
#
|
9046
9117
|
# To work with CloudFront, you must also specify the Region US East
|
9047
9118
|
# (N. Virginia) as follows:
|
@@ -9137,7 +9208,8 @@ module Aws::WAFV2
|
|
9137
9208
|
#
|
9138
9209
|
# @!attribute [rw] scope
|
9139
9210
|
# Specifies whether this is for a global resource type, such as a
|
9140
|
-
# Amazon CloudFront distribution.
|
9211
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
9212
|
+
# `CLOUDFRONT`.
|
9141
9213
|
#
|
9142
9214
|
# To work with CloudFront, you must also specify the Region US East
|
9143
9215
|
# (N. Virginia) as follows:
|
@@ -9207,7 +9279,8 @@ module Aws::WAFV2
|
|
9207
9279
|
#
|
9208
9280
|
# @!attribute [rw] scope
|
9209
9281
|
# Specifies whether this is for a global resource type, such as a
|
9210
|
-
# Amazon CloudFront distribution.
|
9282
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
9283
|
+
# `CLOUDFRONT`.
|
9211
9284
|
#
|
9212
9285
|
# To work with CloudFront, you must also specify the Region US East
|
9213
9286
|
# (N. Virginia) as follows:
|
@@ -9308,7 +9381,8 @@ module Aws::WAFV2
|
|
9308
9381
|
#
|
9309
9382
|
# @!attribute [rw] scope
|
9310
9383
|
# Specifies whether this is for a global resource type, such as a
|
9311
|
-
# Amazon CloudFront distribution.
|
9384
|
+
# Amazon CloudFront distribution. For an Amplify application, use
|
9385
|
+
# `CLOUDFRONT`.
|
9312
9386
|
#
|
9313
9387
|
# To work with CloudFront, you must also specify the Region US East
|
9314
9388
|
# (N. Virginia) as follows:
|
@@ -9478,6 +9552,55 @@ module Aws::WAFV2
|
|
9478
9552
|
include Aws::Structure
|
9479
9553
|
end
|
9480
9554
|
|
9555
|
+
# Inspect fragments of the request URI. You can specify the parts of the
|
9556
|
+
# URI fragment to inspect and you can narrow the set of URI fragments to
|
9557
|
+
# inspect by including or excluding specific keys.
|
9558
|
+
#
|
9559
|
+
# This is used to indicate the web request component to inspect, in the
|
9560
|
+
# FieldToMatch specification.
|
9561
|
+
#
|
9562
|
+
# Example JSON: `"UriFragment": { "MatchPattern": { "All": {} },
|
9563
|
+
# "MatchScope": "KEY", "OversizeHandling": "MATCH" }`
|
9564
|
+
#
|
9565
|
+
# @!attribute [rw] fallback_behavior
|
9566
|
+
# What WAF should do if it fails to completely parse the JSON body.
|
9567
|
+
# The options are the following:
|
9568
|
+
#
|
9569
|
+
# * `EVALUATE_AS_STRING` - Inspect the body as plain text. WAF applies
|
9570
|
+
# the text transformations and inspection criteria that you defined
|
9571
|
+
# for the JSON inspection to the body text string.
|
9572
|
+
#
|
9573
|
+
# * `MATCH` - Treat the web request as matching the rule statement.
|
9574
|
+
# WAF applies the rule action to the request.
|
9575
|
+
#
|
9576
|
+
# * `NO_MATCH` - Treat the web request as not matching the rule
|
9577
|
+
# statement.
|
9578
|
+
#
|
9579
|
+
# If you don't provide this setting, WAF parses and evaluates the
|
9580
|
+
# content only up to the first parsing failure that it encounters.
|
9581
|
+
#
|
9582
|
+
# Example JSON: `{ "UriFragment": { "FallbackBehavior": "MATCH"} }`
|
9583
|
+
#
|
9584
|
+
# <note markdown="1"> WAF parsing doesn't fully validate the input JSON string, so
|
9585
|
+
# parsing can succeed even for invalid JSON. When parsing succeeds,
|
9586
|
+
# WAF doesn't apply the fallback behavior. For more information, see
|
9587
|
+
# [JSON body][1] in the *WAF Developer Guide*.
|
9588
|
+
#
|
9589
|
+
# </note>
|
9590
|
+
#
|
9591
|
+
#
|
9592
|
+
#
|
9593
|
+
# [1]: https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-statement-fields-list.html#waf-rule-statement-request-component-json-body
|
9594
|
+
# @return [String]
|
9595
|
+
#
|
9596
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/UriFragment AWS API Documentation
|
9597
|
+
#
|
9598
|
+
class UriFragment < Struct.new(
|
9599
|
+
:fallback_behavior)
|
9600
|
+
SENSITIVE = []
|
9601
|
+
include Aws::Structure
|
9602
|
+
end
|
9603
|
+
|
9481
9604
|
# Inspect the path component of the URI of the web request. This is the
|
9482
9605
|
# part of the web request that identifies a resource. For example,
|
9483
9606
|
# `/images/daily-ad.jpg`.
|
@@ -9987,8 +10110,8 @@ module Aws::WAFV2
|
|
9987
10110
|
# one or more Amazon Web Services resources to protect. The resource
|
9988
10111
|
# types include Amazon CloudFront distribution, Amazon API Gateway REST
|
9989
10112
|
# API, Application Load Balancer, AppSync GraphQL API, Amazon Cognito
|
9990
|
-
# user pool, App Runner service, and Amazon Web
|
9991
|
-
# instance.
|
10113
|
+
# user pool, App Runner service, Amplify application, and Amazon Web
|
10114
|
+
# Services Verified Access instance.
|
9992
10115
|
#
|
9993
10116
|
# @!attribute [rw] name
|
9994
10117
|
# The name of the web ACL. You cannot change the name of a web ACL
|