aws-sdk-elasticloadbalancingv2 1.81.0 → 1.82.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: fc5f95123e70f5f4099ccab6e9a5494a3dba31e327333bd6dc1932cb58142b2b
4
- data.tar.gz: 396c180e04eff4e9faa8fb637799be703793c846019f22dcdc46b5213ae349ec
3
+ metadata.gz: 36d909b9b23256884bc26bddafe347ba7c3dfb16d0e00284e6153ccd6123c7ad
4
+ data.tar.gz: 63202f0eab4ba398fab80bbb7db0c4bdfd4c994c76eacaf8fdb545263b104d34
5
5
  SHA512:
6
- metadata.gz: e876922598936a38d1d6ce51d32fae448be7a598bcb3621127d14e242e5e5b272c6c7239abeaf8ad83de461922d6198072a16fbd8f6adc0a72398df0ee6de1bf
7
- data.tar.gz: 2277734a869db3b46f540f0bd1733b60058d915e1a36b019bece73b2e2fc307c4b75fffba2a32baa20cf5da44e7fb6b9839b6a9bd114a61267062b9bd70e9789
6
+ metadata.gz: da94a977d782fa8f420b76da6ba561510bbfaad3cdcaab4c0f9849e3e0498f76e0d0abe57eee143694249a889354f1d2c0fd88d72d26195c3a12cc93b46585ff
7
+ data.tar.gz: fb0b7e32c43fc1510e56510e525fc8a76ddd6a63f121612d5e0ec4b90011ea51899bd8e23dbe3e1e152308a2e78431c34cab2e25ee4ec59667159b2e0d38410f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.82.0 (2022-11-17)
5
+ ------------------
6
+
7
+ * Feature - Provides new target group attributes to turn on/off cross zone load balancing and configure target group health for Network Load Balancers and Application Load Balancers. Provides improvements to health check configuration for Network Load Balancers.
8
+
4
9
  1.81.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.81.0
1
+ 1.82.0
@@ -1413,39 +1413,39 @@ module Aws::ElasticLoadBalancingV2
1413
1413
  #
1414
1414
  # @option params [Integer] :health_check_interval_seconds
1415
1415
  # The approximate amount of time, in seconds, between health checks of
1416
- # an individual target. If the target group protocol is HTTP or HTTPS,
1417
- # the default is 30 seconds. If the target group protocol is TCP, TLS,
1418
- # UDP, or TCP\_UDP, the supported values are 10 and 30 seconds and the
1419
- # default is 30 seconds. If the target group protocol is GENEVE, the
1420
- # default is 10 seconds. If the target type is `lambda`, the default is
1421
- # 35 seconds.
1416
+ # an individual target. The range is 5-300. If the target group protocol
1417
+ # is TCP, TLS, UDP, TCP\_UDP, HTTP or HTTPS, the default is 30 seconds.
1418
+ # If the target group protocol is GENEVE, the default is 10 seconds. If
1419
+ # the target type is `lambda`, the default is 35 seconds.
1422
1420
  #
1423
1421
  # @option params [Integer] :health_check_timeout_seconds
1424
1422
  # The amount of time, in seconds, during which no response from a target
1425
- # means a failed health check. For target groups with a protocol of
1426
- # HTTP, HTTPS, or GENEVE, the default is 5 seconds. For target groups
1427
- # with a protocol of TCP or TLS, this value must be 6 seconds for HTTP
1428
- # health checks and 10 seconds for TCP and HTTPS health checks. If the
1429
- # target type is `lambda`, the default is 30 seconds.
1423
+ # means a failed health check. The range is 2–120 seconds. For target
1424
+ # groups with a protocol of HTTP, the default is 6 seconds. For target
1425
+ # groups with a protocol of TCP, TLS or HTTPS, the default is 10
1426
+ # seconds. For target groups with a protocol of GENEVE, the default is 5
1427
+ # seconds. If the target type is `lambda`, the default is 30 seconds.
1430
1428
  #
1431
1429
  # @option params [Integer] :healthy_threshold_count
1432
- # The number of consecutive health checks successes required before
1433
- # considering an unhealthy target healthy. For target groups with a
1434
- # protocol of HTTP or HTTPS, the default is 5. For target groups with a
1435
- # protocol of TCP, TLS, or GENEVE, the default is 3. If the target type
1436
- # is `lambda`, the default is 5.
1430
+ # The number of consecutive health check successes required before
1431
+ # considering a target healthy. The range is 2-10. If the target group
1432
+ # protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the default is 5.
1433
+ # For target groups with a protocol of GENEVE, the default is 3. If the
1434
+ # target type is `lambda`, the default is 5.
1437
1435
  #
1438
1436
  # @option params [Integer] :unhealthy_threshold_count
1439
1437
  # The number of consecutive health check failures required before
1440
- # considering a target unhealthy. If the target group protocol is HTTP
1441
- # or HTTPS, the default is 2. If the target group protocol is TCP or
1442
- # TLS, this value must be the same as the healthy threshold count. If
1443
- # the target group protocol is GENEVE, the default is 3. If the target
1444
- # type is `lambda`, the default is 2.
1438
+ # considering a target unhealthy. The range is 2-10. If the target group
1439
+ # protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the default is 2.
1440
+ # For target groups with a protocol of GENEVE, the default is 3. If the
1441
+ # target type is `lambda`, the default is 5.
1445
1442
  #
1446
1443
  # @option params [Types::Matcher] :matcher
1447
1444
  # \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
1448
- # checking for a successful response from a target.
1445
+ # checking for a successful response from a target. For target groups
1446
+ # with a protocol of TCP, TCP\_UDP, UDP or TLS the range is 200-599. For
1447
+ # target groups with a protocol of HTTP or HTTPS, the range is 200-499.
1448
+ # For target groups with a protocol of GENEVE, the range is 200-399.
1449
1449
  #
1450
1450
  # @option params [String] :target_type
1451
1451
  # The type of target that you must specify when registering targets with
@@ -3576,10 +3576,6 @@ module Aws::ElasticLoadBalancingV2
3576
3576
  # Modifies the health checks used when evaluating the health state of
3577
3577
  # the targets in the specified target group.
3578
3578
  #
3579
- # If the protocol of the target group is TCP, TLS, UDP, or TCP\_UDP, you
3580
- # can't modify the health check protocol, interval, timeout, or success
3581
- # codes.
3582
- #
3583
3579
  # @option params [required, String] :target_group_arn
3584
3580
  # The Amazon Resource Name (ARN) of the target group.
3585
3581
  #
@@ -3612,8 +3608,7 @@ module Aws::ElasticLoadBalancingV2
3612
3608
  #
3613
3609
  # @option params [Integer] :health_check_interval_seconds
3614
3610
  # The approximate amount of time, in seconds, between health checks of
3615
- # an individual target. For TCP health checks, the supported values are
3616
- # 10 or 30 seconds.
3611
+ # an individual target.
3617
3612
  #
3618
3613
  # @option params [Integer] :health_check_timeout_seconds
3619
3614
  # \[HTTP/HTTPS health checks\] The amount of time, in seconds, during
@@ -3625,13 +3620,14 @@ module Aws::ElasticLoadBalancingV2
3625
3620
  #
3626
3621
  # @option params [Integer] :unhealthy_threshold_count
3627
3622
  # The number of consecutive health check failures required before
3628
- # considering the target unhealthy. For target groups with a protocol of
3629
- # TCP or TLS, this value must be the same as the healthy threshold
3630
- # count.
3623
+ # considering the target unhealthy.
3631
3624
  #
3632
3625
  # @option params [Types::Matcher] :matcher
3633
3626
  # \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
3634
- # checking for a successful response from a target.
3627
+ # checking for a successful response from a target. For target groups
3628
+ # with a protocol of TCP, TCP\_UDP, UDP or TLS the range is 200-599. For
3629
+ # target groups with a protocol of HTTP or HTTPS, the range is 200-499.
3630
+ # For target groups with a protocol of GENEVE, the range is 200-399.
3635
3631
  #
3636
3632
  # @return [Types::ModifyTargetGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3637
3633
  #
@@ -4330,7 +4326,7 @@ module Aws::ElasticLoadBalancingV2
4330
4326
  params: params,
4331
4327
  config: config)
4332
4328
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
4333
- context[:gem_version] = '1.81.0'
4329
+ context[:gem_version] = '1.82.0'
4334
4330
  Seahorse::Client::Request.new(handlers, context)
4335
4331
  end
4336
4332
 
@@ -1112,44 +1112,46 @@ module Aws::ElasticLoadBalancingV2
1112
1112
  #
1113
1113
  # @!attribute [rw] health_check_interval_seconds
1114
1114
  # The approximate amount of time, in seconds, between health checks of
1115
- # an individual target. If the target group protocol is HTTP or HTTPS,
1116
- # the default is 30 seconds. If the target group protocol is TCP, TLS,
1117
- # UDP, or TCP\_UDP, the supported values are 10 and 30 seconds and the
1118
- # default is 30 seconds. If the target group protocol is GENEVE, the
1119
- # default is 10 seconds. If the target type is `lambda`, the default
1120
- # is 35 seconds.
1115
+ # an individual target. The range is 5-300. If the target group
1116
+ # protocol is TCP, TLS, UDP, TCP\_UDP, HTTP or HTTPS, the default is
1117
+ # 30 seconds. If the target group protocol is GENEVE, the default is
1118
+ # 10 seconds. If the target type is `lambda`, the default is 35
1119
+ # seconds.
1121
1120
  # @return [Integer]
1122
1121
  #
1123
1122
  # @!attribute [rw] health_check_timeout_seconds
1124
1123
  # The amount of time, in seconds, during which no response from a
1125
- # target means a failed health check. For target groups with a
1126
- # protocol of HTTP, HTTPS, or GENEVE, the default is 5 seconds. For
1127
- # target groups with a protocol of TCP or TLS, this value must be 6
1128
- # seconds for HTTP health checks and 10 seconds for TCP and HTTPS
1129
- # health checks. If the target type is `lambda`, the default is 30
1124
+ # target means a failed health check. The range is 2–120 seconds. For
1125
+ # target groups with a protocol of HTTP, the default is 6 seconds. For
1126
+ # target groups with a protocol of TCP, TLS or HTTPS, the default is
1127
+ # 10 seconds. For target groups with a protocol of GENEVE, the default
1128
+ # is 5 seconds. If the target type is `lambda`, the default is 30
1130
1129
  # seconds.
1131
1130
  # @return [Integer]
1132
1131
  #
1133
1132
  # @!attribute [rw] healthy_threshold_count
1134
- # The number of consecutive health checks successes required before
1135
- # considering an unhealthy target healthy. For target groups with a
1136
- # protocol of HTTP or HTTPS, the default is 5. For target groups with
1137
- # a protocol of TCP, TLS, or GENEVE, the default is 3. If the target
1138
- # type is `lambda`, the default is 5.
1133
+ # The number of consecutive health check successes required before
1134
+ # considering a target healthy. The range is 2-10. If the target group
1135
+ # protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the default is
1136
+ # 5. For target groups with a protocol of GENEVE, the default is 3. If
1137
+ # the target type is `lambda`, the default is 5.
1139
1138
  # @return [Integer]
1140
1139
  #
1141
1140
  # @!attribute [rw] unhealthy_threshold_count
1142
1141
  # The number of consecutive health check failures required before
1143
- # considering a target unhealthy. If the target group protocol is HTTP
1144
- # or HTTPS, the default is 2. If the target group protocol is TCP or
1145
- # TLS, this value must be the same as the healthy threshold count. If
1146
- # the target group protocol is GENEVE, the default is 3. If the target
1147
- # type is `lambda`, the default is 2.
1142
+ # considering a target unhealthy. The range is 2-10. If the target
1143
+ # group protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the
1144
+ # default is 2. For target groups with a protocol of GENEVE, the
1145
+ # default is 3. If the target type is `lambda`, the default is 5.
1148
1146
  # @return [Integer]
1149
1147
  #
1150
1148
  # @!attribute [rw] matcher
1151
1149
  # \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
1152
- # checking for a successful response from a target.
1150
+ # checking for a successful response from a target. For target groups
1151
+ # with a protocol of TCP, TCP\_UDP, UDP or TLS the range is 200-599.
1152
+ # For target groups with a protocol of HTTP or HTTPS, the range is
1153
+ # 200-499. For target groups with a protocol of GENEVE, the range is
1154
+ # 200-399.
1153
1155
  # @return [Types::Matcher]
1154
1156
  #
1155
1157
  # @!attribute [rw] target_type
@@ -1944,8 +1946,8 @@ module Aws::ElasticLoadBalancingV2
1944
1946
  # }
1945
1947
  #
1946
1948
  # @!attribute [rw] target_groups
1947
- # One or more target groups. For Network Load Balancers, you can
1948
- # specify a single target group.
1949
+ # The target groups. For Network Load Balancers, you can specify a
1950
+ # single target group.
1949
1951
  # @return [Array<Types::TargetGroupTuple>]
1950
1952
  #
1951
1953
  # @!attribute [rw] target_group_stickiness_config
@@ -1978,10 +1980,10 @@ module Aws::ElasticLoadBalancingV2
1978
1980
  # }
1979
1981
  #
1980
1982
  # @!attribute [rw] values
1981
- # One or more host names. The maximum size of each name is 128
1982
- # characters. The comparison is case insensitive. The following
1983
- # wildcard characters are supported: * (matches 0 or more characters)
1984
- # and ? (matches exactly 1 character).
1983
+ # The host names. The maximum size of each name is 128 characters. The
1984
+ # comparison is case insensitive. The following wildcard characters
1985
+ # are supported: * (matches 0 or more characters) and ? (matches
1986
+ # exactly 1 character).
1985
1987
  #
1986
1988
  # If you specify multiple strings, the condition is satisfied if one
1987
1989
  # of the strings matches the host name.
@@ -2018,8 +2020,8 @@ module Aws::ElasticLoadBalancingV2
2018
2020
  # @return [String]
2019
2021
  #
2020
2022
  # @!attribute [rw] values
2021
- # One or more strings to compare against the value of the HTTP header.
2022
- # The maximum size of each string is 128 characters. The comparison
2023
+ # The strings to compare against the value of the HTTP header. The
2024
+ # maximum size of each string is 128 characters. The comparison
2023
2025
  # strings are case insensitive. The following wildcard characters are
2024
2026
  # supported: * (matches 0 or more characters) and ? (matches exactly
2025
2027
  # 1 character).
@@ -2366,13 +2368,17 @@ module Aws::ElasticLoadBalancingV2
2366
2368
  # @!attribute [rw] key
2367
2369
  # The name of the attribute.
2368
2370
  #
2369
- # The following attribute is supported by all load balancers:
2371
+ # The following attributes are supported by all load balancers:
2370
2372
  #
2371
2373
  # * `deletion_protection.enabled` - Indicates whether deletion
2372
2374
  # protection is enabled. The value is `true` or `false`. The default
2373
2375
  # is `false`.
2374
2376
  #
2375
- # ^
2377
+ # * `load_balancing.cross_zone.enabled` - Indicates whether cross-zone
2378
+ # load balancing is enabled. The possible values are `true` and
2379
+ # `false`. The default for Network Load Balancers and Gateway Load
2380
+ # Balancers is `false`. The default for Application Load Balancers
2381
+ # is `true`, and cannot be changed.
2376
2382
  #
2377
2383
  # The following attributes are supported by both Application Load
2378
2384
  # Balancers and Network Load Balancers:
@@ -2460,15 +2466,6 @@ module Aws::ElasticLoadBalancingV2
2460
2466
  # load balancer to route requests to targets if it is unable to
2461
2467
  # forward the request to Amazon Web Services WAF. The possible
2462
2468
  # values are `true` and `false`. The default is `false`.
2463
- #
2464
- # The following attribute is supported by Network Load Balancers and
2465
- # Gateway Load Balancers:
2466
- #
2467
- # * `load_balancing.cross_zone.enabled` - Indicates whether cross-zone
2468
- # load balancing is enabled. The possible values are `true` and
2469
- # `false`. The default is `false`.
2470
- #
2471
- # ^
2472
2469
  # @return [String]
2473
2470
  #
2474
2471
  # @!attribute [rw] value
@@ -2528,12 +2525,16 @@ module Aws::ElasticLoadBalancingV2
2528
2525
  #
2529
2526
  # @!attribute [rw] http_code
2530
2527
  # For Application Load Balancers, you can specify values between 200
2531
- # and 499, and the default value is 200. You can specify multiple
2528
+ # and 499, with the default value being 200. You can specify multiple
2532
2529
  # values (for example, "200,202") or a range of values (for example,
2533
2530
  # "200-299").
2534
2531
  #
2535
- # For Network Load Balancers and Gateway Load Balancers, this must be
2536
- # "200399".
2532
+ # For Network Load Balancers, you can specify values between 200 and
2533
+ # 599, with the default value being 200-399. You can specify multiple
2534
+ # values (for example, "200,202") or a range of values (for example,
2535
+ # "200-299").
2536
+ #
2537
+ # For Gateway Load Balancers, this must be "200–399".
2537
2538
  #
2538
2539
  # Note that when using shorthand syntax, some values such as commas
2539
2540
  # need to be escaped.
@@ -2993,8 +2994,7 @@ module Aws::ElasticLoadBalancingV2
2993
2994
  #
2994
2995
  # @!attribute [rw] health_check_interval_seconds
2995
2996
  # The approximate amount of time, in seconds, between health checks of
2996
- # an individual target. For TCP health checks, the supported values
2997
- # are 10 or 30 seconds.
2997
+ # an individual target.
2998
2998
  # @return [Integer]
2999
2999
  #
3000
3000
  # @!attribute [rw] health_check_timeout_seconds
@@ -3009,14 +3009,16 @@ module Aws::ElasticLoadBalancingV2
3009
3009
  #
3010
3010
  # @!attribute [rw] unhealthy_threshold_count
3011
3011
  # The number of consecutive health check failures required before
3012
- # considering the target unhealthy. For target groups with a protocol
3013
- # of TCP or TLS, this value must be the same as the healthy threshold
3014
- # count.
3012
+ # considering the target unhealthy.
3015
3013
  # @return [Integer]
3016
3014
  #
3017
3015
  # @!attribute [rw] matcher
3018
3016
  # \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
3019
- # checking for a successful response from a target.
3017
+ # checking for a successful response from a target. For target groups
3018
+ # with a protocol of TCP, TCP\_UDP, UDP or TLS the range is 200-599.
3019
+ # For target groups with a protocol of HTTP or HTTPS, the range is
3020
+ # 200-499. For target groups with a protocol of GENEVE, the range is
3021
+ # 200-399.
3020
3022
  # @return [Types::Matcher]
3021
3023
  #
3022
3024
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTargetGroupInput AWS API Documentation
@@ -3064,9 +3066,9 @@ module Aws::ElasticLoadBalancingV2
3064
3066
  # }
3065
3067
  #
3066
3068
  # @!attribute [rw] values
3067
- # One or more path patterns to compare against the request URL. The
3068
- # maximum size of each string is 128 characters. The comparison is
3069
- # case sensitive. The following wildcard characters are supported: *
3069
+ # The path patterns to compare against the request URL. The maximum
3070
+ # size of each string is 128 characters. The comparison is case
3071
+ # sensitive. The following wildcard characters are supported: *
3070
3072
  # (matches 0 or more characters) and ? (matches exactly 1 character).
3071
3073
  #
3072
3074
  # If you specify multiple strings, the condition is satisfied if one
@@ -3110,8 +3112,8 @@ module Aws::ElasticLoadBalancingV2
3110
3112
  # }
3111
3113
  #
3112
3114
  # @!attribute [rw] values
3113
- # One or more key/value pairs or values to find in the query string.
3114
- # The maximum size of each string is 128 characters. The comparison is
3115
+ # The key/value pairs or values to find in the query string. The
3116
+ # maximum size of each string is 128 characters. The comparison is
3115
3117
  # case insensitive. The following wildcard characters are supported:
3116
3118
  # * (matches 0 or more characters) and ? (matches exactly 1
3117
3119
  # character). To search for a literal '*' or '?' character in a
@@ -3788,8 +3790,8 @@ module Aws::ElasticLoadBalancingV2
3788
3790
  # }
3789
3791
  #
3790
3792
  # @!attribute [rw] values
3791
- # One or more source IP addresses, in CIDR format. You can use both
3792
- # IPv4 and IPv6 addresses. Wildcards are not supported.
3793
+ # The source IP addresses, in CIDR format. You can use both IPv4 and
3794
+ # IPv6 addresses. Wildcards are not supported.
3793
3795
  #
3794
3796
  # If you specify multiple addresses, the condition is satisfied if the
3795
3797
  # source IP address of the request matches one of the CIDR blocks.
@@ -3961,6 +3963,11 @@ module Aws::ElasticLoadBalancingV2
3961
3963
  # Availability Zone or from all enabled Availability Zones for the
3962
3964
  # load balancer.
3963
3965
  #
3966
+ # For Application Load Balancer target groups, the specified
3967
+ # Availability Zone value is only applicable when cross-zone load
3968
+ # balancing is off. Otherwise the parameter is ignored and treated as
3969
+ # `all`.
3970
+ #
3964
3971
  # This parameter is not supported if the target type of the target
3965
3972
  # group is `instance` or `alb`.
3966
3973
  #
@@ -3969,9 +3976,10 @@ module Aws::ElasticLoadBalancingV2
3969
3976
  # detected and this parameter is optional. If the IP address is
3970
3977
  # outside the VPC, this parameter is required.
3971
3978
  #
3972
- # With an Application Load Balancer, if the target type is `ip` and
3973
- # the IP address is outside the VPC for the target group, the only
3974
- # supported value is `all`.
3979
+ # For Application Load Balancer target groups with cross-zone load
3980
+ # balancing off, if the target type is `ip` and the IP address is
3981
+ # outside of the VPC for the target group, this should be an
3982
+ # Availability Zone inside the VPC for the target group.
3975
3983
  #
3976
3984
  # If the target type is `lambda`, this parameter is optional and the
3977
3985
  # only supported value is `all`.
@@ -4121,7 +4129,7 @@ module Aws::ElasticLoadBalancingV2
4121
4129
  # @!attribute [rw] key
4122
4130
  # The name of the attribute.
4123
4131
  #
4124
- # The following attribute is supported by all load balancers:
4132
+ # The following attributes are supported by all load balancers:
4125
4133
  #
4126
4134
  # * `deregistration_delay.timeout_seconds` - The amount of time, in
4127
4135
  # seconds, for Elastic Load Balancing to wait before changing the
@@ -4129,11 +4137,6 @@ module Aws::ElasticLoadBalancingV2
4129
4137
  # range is 0-3600 seconds. The default value is 300 seconds. If the
4130
4138
  # target is a Lambda function, this attribute is not supported.
4131
4139
  #
4132
- # ^
4133
- #
4134
- # The following attributes are supported by Application Load
4135
- # Balancers, Network Load Balancers, and Gateway Load Balancers:
4136
- #
4137
4140
  # * `stickiness.enabled` - Indicates whether target stickiness is
4138
4141
  # enabled. The value is `true` or `false`. The default is `false`.
4139
4142
  #
@@ -4147,6 +4150,40 @@ module Aws::ElasticLoadBalancingV2
4147
4150
  # * `source_ip_dest_ip` and `source_ip_dest_ip_proto` for Gateway
4148
4151
  # Load Balancers.
4149
4152
  #
4153
+ # The following attributes are supported by Application Load Balancers
4154
+ # and Network Load Balancers:
4155
+ #
4156
+ # * `load_balancing.cross_zone.enabled` - Indicates whether cross zone
4157
+ # load balancing is enabled. The value is `true`, `false` or
4158
+ # `use_load_balancer_configuration`. The default is
4159
+ # `use_load_balancer_configuration`.
4160
+ #
4161
+ # * `target_group_health.dns_failover.minimum_healthy_targets.count` -
4162
+ # The minimum number of targets that must be healthy. If the number
4163
+ # of healthy targets is below this value, mark the zone as unhealthy
4164
+ # in DNS, so that traffic is routed only to healthy zones. The
4165
+ # possible values are `off` or an integer from 1 to the maximum
4166
+ # number of targets. The default is `off`.
4167
+ #
4168
+ # * `target_group_health.dns_failover.minimum_healthy_targets.percentage`
4169
+ # - The minimum percentage of targets that must be healthy. If the
4170
+ # percentage of healthy targets is below this value, mark the zone
4171
+ # as unhealthy in DNS, so that traffic is routed only to healthy
4172
+ # zones. The possible values are `off` or an integer from 1 to 100.
4173
+ # The default is `off`.
4174
+ #
4175
+ # * `target_group_health.unhealthy_state_routing.minimum_healthy_targets.count`
4176
+ # - The minimum number of targets that must be healthy. If the
4177
+ # number of healthy targets is below this value, send traffic to all
4178
+ # targets, including unhealthy targets. The possible values are 1 to
4179
+ # the maximum number of targets. The default is 1.
4180
+ #
4181
+ # * `target_group_health.unhealthy_state_routing.minimum_healthy_targets.percentage`
4182
+ # - The minimum percentage of targets that must be healthy. If the
4183
+ # percentage of healthy targets is below this value, send traffic to
4184
+ # all targets, including unhealthy targets. The possible values are
4185
+ # `off` or an integer from 1 to 100. The default is `off`.
4186
+ #
4150
4187
  # The following attributes are supported only if the load balancer is
4151
4188
  # an Application Load Balancer and the target is an instance or an IP
4152
4189
  # address:
@@ -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.81.0'
56
+ GEM_VERSION = '1.82.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.81.0
4
+ version: 1.82.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2022-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core