aws-sdk-wafv2 1.70.0 → 1.71.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 709fa74d545a9bd5a3313ce44f8e5d2598cbcf703eb04f1cc41e28cd60125506
4
- data.tar.gz: bb19fdda06d4593e0cb4423c85f934918d6b6176cf789cfb4a5f7180ce91b279
3
+ metadata.gz: 8e00844559f62d3387cf55af655844eb473e4b8d134a25f3fcbdee6d9b072d86
4
+ data.tar.gz: d7c3714c5b20ade977f2c47fa619ef9bea79546a3da83ef62ed859b19f24e627
5
5
  SHA512:
6
- metadata.gz: ba7f965bdadb365aabcf1763dd783dedc8c95d0e76d3674962e28452a598dcf2777c24bed0c862e903f649052b60fb61db8b3f71106c81bd28d16da612af5059
7
- data.tar.gz: b255ec9c6c0c478e56f92d62708273fc2ff0e5988ebb606d2fc4cbb1246b3c40bcd9a9a0d1b4d5a31901171ecaee1d4be0e31a012ffe95393e1306a77ffe19fa
6
+ metadata.gz: 73d56cd51cc562735ce5c627059b683f1dd121fd3de2d45b321ebc40447ba192dceca247ec83b100f5a380e9fdafa691935f09a98297a6de3116fbc7a4eff81b
7
+ data.tar.gz: d8824365f71c77f8245c903abcad4f13ad000d67b52ea5e73bd7d217ee574a88db024a11094040036bf194185b27bcd3a162332d524027b68ff2ba5bdb989ec6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.71.0 (2023-09-28)
5
+ ------------------
6
+
7
+ * Feature - Correct and improve the documentation for the FieldToMatch option JA3 fingerprint.
8
+
4
9
  1.70.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.70.0
1
+ 1.71.0
@@ -8922,7 +8922,7 @@ module Aws::WAFV2
8922
8922
  params: params,
8923
8923
  config: config)
8924
8924
  context[:gem_name] = 'aws-sdk-wafv2'
8925
- context[:gem_version] = '1.70.0'
8925
+ context[:gem_version] = '1.71.0'
8926
8926
  Seahorse::Client::Request.new(handlers, context)
8927
8927
  end
8928
8928
 
@@ -542,9 +542,17 @@ module Aws::WAFV2
542
542
  # * `UriPath`: The value that you want WAF to search for in the URI
543
543
  # path, for example, `/images/daily-ad.jpg`.
544
544
  #
545
- # * `JA3Fingerprint`: The string to match against the web request's
546
- # JA3 fingerprint header. The header contains a hash fingerprint of
547
- # the TLS Client Hello packet for the request.
545
+ # * `JA3Fingerprint`: Match against the request's JA3 fingerprint.
546
+ # The JA3 fingerprint is a 32-character hash derived from the TLS
547
+ # Client Hello of an incoming request. This fingerprint serves as a
548
+ # unique identifier for the client's TLS configuration. You can use
549
+ # this choice only with a string match `ByteMatchStatement` with the
550
+ # `PositionalConstraint` set to `EXACTLY`.
551
+ #
552
+ # You can obtain the JA3 fingerprint for client requests from the
553
+ # web ACL logs. If WAF is able to calculate the fingerprint, it
554
+ # includes it in the logs. For information about the logging fields,
555
+ # see [Log fields][1] in the *WAF Developer Guide*.
548
556
  #
549
557
  # * `HeaderOrder`: The comma-separated list of header names to match
550
558
  # for. WAF creates a string that contains the ordered list of header
@@ -569,6 +577,10 @@ module Aws::WAFV2
569
577
  #
570
578
  # The value that you want WAF to search for. The SDK automatically
571
579
  # base64 encodes the value.
580
+ #
581
+ #
582
+ #
583
+ # [1]: https://docs.aws.amazon.com/waf/latest/developerguide/logging-fields.html
572
584
  # @return [String]
573
585
  #
574
586
  # @!attribute [rw] field_to_match
@@ -2397,15 +2409,32 @@ module Aws::WAFV2
2397
2409
  # @return [Types::HeaderOrder]
2398
2410
  #
2399
2411
  # @!attribute [rw] ja3_fingerprint
2400
- # Match against the request's JA3 fingerprint header. The header
2401
- # contains a hash fingerprint of the TLS Client Hello packet for the
2402
- # request.
2412
+ # Match against the request's JA3 fingerprint. The JA3 fingerprint is
2413
+ # a 32-character hash derived from the TLS Client Hello of an incoming
2414
+ # request. This fingerprint serves as a unique identifier for the
2415
+ # client's TLS configuration. WAF calculates and logs this
2416
+ # fingerprint for each request that has enough TLS Client Hello
2417
+ # information for the calculation. Almost all web requests include
2418
+ # this information.
2403
2419
  #
2404
2420
  # <note markdown="1"> You can use this choice only with a string match
2405
2421
  # `ByteMatchStatement` with the `PositionalConstraint` set to
2406
2422
  # `EXACTLY`.
2407
2423
  #
2408
2424
  # </note>
2425
+ #
2426
+ # You can obtain the JA3 fingerprint for client requests from the web
2427
+ # ACL logs. If WAF is able to calculate the fingerprint, it includes
2428
+ # it in the logs. For information about the logging fields, see [Log
2429
+ # fields][1] in the *WAF Developer Guide*.
2430
+ #
2431
+ # Provide the JA3 fingerprint string from the logs in your string
2432
+ # match statement specification, to match with any future requests
2433
+ # that have the same TLS configuration.
2434
+ #
2435
+ #
2436
+ #
2437
+ # [1]: https://docs.aws.amazon.com/waf/latest/developerguide/logging-fields.html
2409
2438
  # @return [Types::JA3Fingerprint]
2410
2439
  #
2411
2440
  # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/FieldToMatch AWS API Documentation
@@ -3832,15 +3861,31 @@ module Aws::WAFV2
3832
3861
  include Aws::Structure
3833
3862
  end
3834
3863
 
3835
- # Match against the request's JA3 fingerprint header. The header
3836
- # contains a hash fingerprint of the TLS Client Hello packet for the
3837
- # request.
3864
+ # Match against the request's JA3 fingerprint. The JA3 fingerprint is a
3865
+ # 32-character hash derived from the TLS Client Hello of an incoming
3866
+ # request. This fingerprint serves as a unique identifier for the
3867
+ # client's TLS configuration. WAF calculates and logs this fingerprint
3868
+ # for each request that has enough TLS Client Hello information for the
3869
+ # calculation. Almost all web requests include this information.
3838
3870
  #
3839
3871
  # <note markdown="1"> You can use this choice only with a string match `ByteMatchStatement`
3840
3872
  # with the `PositionalConstraint` set to `EXACTLY`.
3841
3873
  #
3842
3874
  # </note>
3843
3875
  #
3876
+ # You can obtain the JA3 fingerprint for client requests from the web
3877
+ # ACL logs. If WAF is able to calculate the fingerprint, it includes it
3878
+ # in the logs. For information about the logging fields, see [Log
3879
+ # fields][1] in the *WAF Developer Guide*.
3880
+ #
3881
+ # Provide the JA3 fingerprint string from the logs in your string match
3882
+ # statement specification, to match with any future requests that have
3883
+ # the same TLS configuration.
3884
+ #
3885
+ #
3886
+ #
3887
+ # [1]: https://docs.aws.amazon.com/waf/latest/developerguide/logging-fields.html
3888
+ #
3844
3889
  # @!attribute [rw] fallback_behavior
3845
3890
  # The match status to assign to the web request if the request
3846
3891
  # doesn't have a JA3 fingerprint.
data/lib/aws-sdk-wafv2.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-wafv2/customizations'
52
52
  # @!group service
53
53
  module Aws::WAFV2
54
54
 
55
- GEM_VERSION = '1.70.0'
55
+ GEM_VERSION = '1.71.0'
56
56
 
57
57
  end
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.70.0
4
+ version: 1.71.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-09-27 00:00:00.000000000 Z
11
+ date: 2023-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core