aws-sdk-elasticloadbalancingv2 1.90.0 → 1.91.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: 361f5d7d7ee43f340b84a3dfe8f8f755b26769b03631ab794898384278d14945
4
- data.tar.gz: 0507306f3ebc1b7aa58963a401a34edcd5a16ea3ec7143764d3926e21ab082a6
3
+ metadata.gz: c7c8ee60da4bf180df20d3c0c3c025430ead6be78c9c9fba03dd431525767783
4
+ data.tar.gz: b6ad648f5ac8289d6126906ccfcf8d1757db3810bbb4cacfc54f5faa92d603e7
5
5
  SHA512:
6
- metadata.gz: 9af87d68ab226092c08dfdf2866e75ea1842df22bea8a3a924a1d89d8e4162ab461bb9e5b42e594d146ad852f4ac8726bd33debca6cb83b0de12f18371f05296
7
- data.tar.gz: 90d58d7e43b4670ed632b89aee655cd086edee74503dd8b7b080a024f6840cc37d9a351687a627ce038fe15569a5b6b608179c119d64dfbd9d73c18e833fa21b
6
+ metadata.gz: d611108183be46cfb9430d35aa57fd5b4787dd722f1303271bba5fcda2559d9cf4a0b5e51a19b4050df5d4f85600cb79b5ac69f8f51952b3b87e37ebce34ffe5
7
+ data.tar.gz: c6b7b7f622bebfabbad6c27adf3e85dc96084d9f5bba77ee082efdd767f85925a89cfe7d4e495a44f4b049588e282265eed757c22c64644c10af5fccedcd3c9e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.91.0 (2023-09-06)
5
+ ------------------
6
+
7
+ * Feature - This release enables default UDP connection termination and disabling unhealthy target connection termination for Network Load Balancers.
8
+
4
9
  1.90.0 (2023-08-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.90.0
1
+ 1.91.0
@@ -1747,9 +1747,32 @@ module Aws::ElasticLoadBalancingV2
1747
1747
  # After the targets are deregistered, they no longer receive traffic
1748
1748
  # from the load balancer.
1749
1749
  #
1750
+ # The load balancer stops sending requests to targets that are
1751
+ # deregistering, but uses connection draining to ensure that in-flight
1752
+ # traffic completes on the existing connections. This deregistration
1753
+ # delay is configured by default but can be updated for each target
1754
+ # group.
1755
+ #
1756
+ # For more information, see the following:
1757
+ #
1758
+ # * [ Deregistration delay][1] in the *Application Load Balancers User
1759
+ # Guide*
1760
+ #
1761
+ # * [ Deregistration delay][2] in the *Network Load Balancers User
1762
+ # Guide*
1763
+ #
1764
+ # * [ Deregistration delay][3] in the *Gateway Load Balancers User
1765
+ # Guide*
1766
+ #
1750
1767
  # Note: If the specified target does not exist, the action returns
1751
1768
  # successfully.
1752
1769
  #
1770
+ #
1771
+ #
1772
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-target-groups.html#deregistration-delay
1773
+ # [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html#deregistration-delay
1774
+ # [3]: https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/target-groups.html#deregistration-delay
1775
+ #
1753
1776
  # @option params [required, String] :target_group_arn
1754
1777
  # The Amazon Resource Name (ARN) of the target group.
1755
1778
  #
@@ -4362,7 +4385,7 @@ module Aws::ElasticLoadBalancingV2
4362
4385
  params: params,
4363
4386
  config: config)
4364
4387
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
4365
- context[:gem_version] = '1.90.0'
4388
+ context[:gem_version] = '1.91.0'
4366
4389
  Seahorse::Client::Request.new(handlers, context)
4367
4390
  end
4368
4391
 
@@ -3274,7 +3274,8 @@ module Aws::ElasticLoadBalancingV2
3274
3274
  #
3275
3275
  # * `deregistration_delay.connection_termination.enabled` - Indicates
3276
3276
  # whether the load balancer terminates connections at the end of the
3277
- # deregistration timeout. The value is `true` or `false`. The
3277
+ # deregistration timeout. The value is `true` or `false`. For new
3278
+ # UDP/TCP\_UDP target groups the default is `true`. Otherwise, the
3278
3279
  # default is `false`.
3279
3280
  #
3280
3281
  # * `preserve_client_ip.enabled` - Indicates whether client IP
@@ -3288,6 +3289,11 @@ module Aws::ElasticLoadBalancingV2
3288
3289
  # version 2 is enabled. The value is `true` or `false`. The default
3289
3290
  # is `false`.
3290
3291
  #
3292
+ # * `target_health_state.unhealthy.connection_termination.enabled` -
3293
+ # Indicates whether the load balancer terminates connections to
3294
+ # unhealthy targets. The value is `true` or `false`. The default is
3295
+ # `true`.
3296
+ #
3291
3297
  # The following attributes are supported only by Gateway Load
3292
3298
  # Balancers:
3293
3299
  #
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-elasticloadbalancingv2/customizations'
53
53
  # @!group service
54
54
  module Aws::ElasticLoadBalancingV2
55
55
 
56
- GEM_VERSION = '1.90.0'
56
+ GEM_VERSION = '1.91.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticloadbalancingv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.90.0
4
+ version: 1.91.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-08-10 00:00:00.000000000 Z
11
+ date: 2023-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core