aws-sdk-elasticloadbalancingv2 1.143.0 → 1.145.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e0e653e9ca920908ce2762279958585493bc9bf837a4ceab611d39dfc60d0779
4
- data.tar.gz: f9bbebba9b5b801e8d1e9231052898d028f7c3b6e6daa24c32ac87a6c6d4dccd
3
+ metadata.gz: 6fdc4a1c843afae51853c7d912ef161c138e0d363b764c21d0f6fddbbf780af8
4
+ data.tar.gz: b945f535d52aa6b772c5f0f0f9cda27cdfe270d9c050594cc1ba4ffdcdbc8abf
5
5
  SHA512:
6
- metadata.gz: 595cff92d88c68f18b8516236022cd927d4ac6046e3e8b22f5e559bfb2656dfca900d5153084fd7d0845a77df71fc304e59bfc66254eeed82e91b475e1e14930
7
- data.tar.gz: 00f0ab0d768c052b9ee4d5632bd31e6a4dc6e0895415a576b1dd4658733c91c1a0751b62b6126e0ce2c55268882f2154dfd2d8070bf8584fb81715c78e5d98a1
6
+ metadata.gz: 53855ab489ffdbf6bba13d5c0c03dd83697ae1671accbbb3fed035368d39a1ef4c4ab33f7f549c714a04c3afb238504a44a3a907923c9bf6dce99191b1f42257
7
+ data.tar.gz: 4dc9716b725fed8efcd08f49f73d2bfe8a26ef94563a22e4b1560860b5d87cbbd609b423dc5b810eddf6d398646e2057889ba1362088fc0e751cc0dfbf11b07e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.145.0 (2025-11-21)
5
+ ------------------
6
+
7
+ * Feature - This release adds the health check log feature in ALB, allowing customers to send detailed target health check log data directly to their designated Amazon S3 bucket.
8
+
9
+ 1.144.0 (2025-11-20)
10
+ ------------------
11
+
12
+ * Feature - This release adds the target optimizer feature in ALB, enabling strict concurrency enforcement on targets.
13
+
4
14
  1.143.0 (2025-11-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.143.0
1
+ 1.145.0
@@ -658,9 +658,9 @@ module Aws::ElasticLoadBalancingV2
658
658
  # The protocol for connections from clients to the load balancer. For
659
659
  # Application Load Balancers, the supported protocols are HTTP and
660
660
  # HTTPS. For Network Load Balancers, the supported protocols are TCP,
661
- # TLS, UDP, and TCP\_UDP. You can’t specify the UDP or TCP\_UDP protocol
662
- # if dual-stack mode is enabled. You can't specify a protocol for a
663
- # Gateway Load Balancer.
661
+ # TLS, UDP, TCP\_UDP, QUIC, and TCP\_QUIC. You can’t specify the UDP,
662
+ # TCP\_UDP, QUIC, or TCP\_QUIC protocol if dual-stack mode is enabled.
663
+ # You can't specify a protocol for a Gateway Load Balancer.
664
664
  #
665
665
  # @option params [Integer] :port
666
666
  # The port on which the load balancer is listening. You can't specify a
@@ -1630,10 +1630,11 @@ module Aws::ElasticLoadBalancingV2
1630
1630
  # The protocol to use for routing traffic to the targets. For
1631
1631
  # Application Load Balancers, the supported protocols are HTTP and
1632
1632
  # HTTPS. For Network Load Balancers, the supported protocols are TCP,
1633
- # TLS, UDP, or TCP\_UDP. For Gateway Load Balancers, the supported
1634
- # protocol is GENEVE. A TCP\_UDP listener must be associated with a
1635
- # TCP\_UDP target group. If the target is a Lambda function, this
1636
- # parameter does not apply.
1633
+ # TLS, UDP, TCP\_UDP, QUIC, or TCP\_QUIC. For Gateway Load Balancers,
1634
+ # the supported protocol is GENEVE. A TCP\_UDP listener must be
1635
+ # associated with a TCP\_UDP target group. A TCP\_QUIC listener must be
1636
+ # associated with a TCP\_QUIC target group. If the target is a Lambda
1637
+ # function, this parameter does not apply.
1637
1638
  #
1638
1639
  # @option params [String] :protocol_version
1639
1640
  # \[HTTP/HTTPS protocol\] The protocol version. Specify `GRPC` to send
@@ -1657,15 +1658,15 @@ module Aws::ElasticLoadBalancingV2
1657
1658
  # targets. For Application Load Balancers, the default is HTTP. For
1658
1659
  # Network Load Balancers and Gateway Load Balancers, the default is TCP.
1659
1660
  # The TCP protocol is not supported for health checks if the protocol of
1660
- # the target group is HTTP or HTTPS. The GENEVE, TLS, UDP, and TCP\_UDP
1661
- # protocols are not supported for health checks.
1661
+ # the target group is HTTP or HTTPS. The GENEVE, TLS, UDP, TCP\_UDP,
1662
+ # QUIC, and TCP\_QUIC protocols are not supported for health checks.
1662
1663
  #
1663
1664
  # @option params [String] :health_check_port
1664
1665
  # The port the load balancer uses when performing health checks on
1665
- # targets. If the protocol is HTTP, HTTPS, TCP, TLS, UDP, or TCP\_UDP,
1666
- # the default is `traffic-port`, which is the port on which each target
1667
- # receives traffic from the load balancer. If the protocol is GENEVE,
1668
- # the default is port 80.
1666
+ # targets. If the protocol is HTTP, HTTPS, TCP, TLS, UDP, TCP\_UDP,
1667
+ # QUIC, or TCP\_QUIC the default is `traffic-port`, which is the port on
1668
+ # which each target receives traffic from the load balancer. If the
1669
+ # protocol is GENEVE, the default is port 80.
1669
1670
  #
1670
1671
  # @option params [Boolean] :health_check_enabled
1671
1672
  # Indicates whether health checks are enabled. If the target type is
@@ -1686,9 +1687,10 @@ module Aws::ElasticLoadBalancingV2
1686
1687
  # @option params [Integer] :health_check_interval_seconds
1687
1688
  # The approximate amount of time, in seconds, between health checks of
1688
1689
  # an individual target. The range is 5-300. If the target group protocol
1689
- # is TCP, TLS, UDP, TCP\_UDP, HTTP or HTTPS, the default is 30 seconds.
1690
- # If the target group protocol is GENEVE, the default is 10 seconds. If
1691
- # the target type is `lambda`, the default is 35 seconds.
1690
+ # is TCP, TLS, UDP, TCP\_UDP, QUIC, TCP\_QUIC, HTTP or HTTPS, the
1691
+ # default is 30 seconds. If the target group protocol is GENEVE, the
1692
+ # default is 10 seconds. If the target type is `lambda`, the default is
1693
+ # 35 seconds.
1692
1694
  #
1693
1695
  # @option params [Integer] :health_check_timeout_seconds
1694
1696
  # The amount of time, in seconds, during which no response from a target
@@ -1708,16 +1710,17 @@ module Aws::ElasticLoadBalancingV2
1708
1710
  # @option params [Integer] :unhealthy_threshold_count
1709
1711
  # The number of consecutive health check failures required before
1710
1712
  # considering a target unhealthy. The range is 2-10. If the target group
1711
- # protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the default is 2.
1712
- # For target groups with a protocol of GENEVE, the default is 2. If the
1713
- # target type is `lambda`, the default is 5.
1713
+ # protocol is TCP, TCP\_UDP, UDP, TLS, QUIC, TCP\_QUIC, HTTP or HTTPS,
1714
+ # the default is 2. For target groups with a protocol of GENEVE, the
1715
+ # default is 2. If the target type is `lambda`, the default is 5.
1714
1716
  #
1715
1717
  # @option params [Types::Matcher] :matcher
1716
1718
  # \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
1717
1719
  # checking for a successful response from a target. For target groups
1718
- # with a protocol of TCP, TCP\_UDP, UDP or TLS the range is 200-599. For
1719
- # target groups with a protocol of HTTP or HTTPS, the range is 200-499.
1720
- # For target groups with a protocol of GENEVE, the range is 200-399.
1720
+ # with a protocol of TCP, TCP\_UDP, UDP, QUIC, TCP\_QUIC, or TLS the
1721
+ # range is 200-599. For target groups with a protocol of HTTP or HTTPS,
1722
+ # the range is 200-499. For target groups with a protocol of GENEVE, the
1723
+ # range is 200-399.
1721
1724
  #
1722
1725
  # @option params [String] :target_type
1723
1726
  # The type of target that you must specify when registering targets with
@@ -1743,6 +1746,10 @@ module Aws::ElasticLoadBalancingV2
1743
1746
  # @option params [String] :ip_address_type
1744
1747
  # The IP address type. The default value is `ipv4`.
1745
1748
  #
1749
+ # @option params [Integer] :target_control_port
1750
+ # The port on which the target control agent and application load
1751
+ # balancer exchange management traffic for the target optimizer feature.
1752
+ #
1746
1753
  # @return [Types::CreateTargetGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1747
1754
  #
1748
1755
  # * {Types::CreateTargetGroupOutput#target_groups #target_groups} => Array<Types::TargetGroup>
@@ -1811,6 +1818,7 @@ module Aws::ElasticLoadBalancingV2
1811
1818
  # },
1812
1819
  # ],
1813
1820
  # ip_address_type: "ipv4", # accepts ipv4, ipv6
1821
+ # target_control_port: 1,
1814
1822
  # })
1815
1823
  #
1816
1824
  # @example Response structure
@@ -1836,6 +1844,7 @@ module Aws::ElasticLoadBalancingV2
1836
1844
  # resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
1837
1845
  # resp.target_groups[0].protocol_version #=> String
1838
1846
  # resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
1847
+ # resp.target_groups[0].target_control_port #=> Integer
1839
1848
  #
1840
1849
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTargetGroup AWS API Documentation
1841
1850
  #
@@ -3301,6 +3310,7 @@ module Aws::ElasticLoadBalancingV2
3301
3310
  # resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
3302
3311
  # resp.target_groups[0].protocol_version #=> String
3303
3312
  # resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
3313
+ # resp.target_groups[0].target_control_port #=> Integer
3304
3314
  # resp.next_marker #=> String
3305
3315
  #
3306
3316
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTargetGroups AWS API Documentation
@@ -3799,10 +3809,10 @@ module Aws::ElasticLoadBalancingV2
3799
3809
  # @option params [String] :protocol
3800
3810
  # The protocol for connections from clients to the load balancer.
3801
3811
  # Application Load Balancers support the HTTP and HTTPS protocols.
3802
- # Network Load Balancers support the TCP, TLS, UDP, and TCP\_UDP
3803
- # protocols. You can’t change the protocol to UDP or TCP\_UDP if
3804
- # dual-stack mode is enabled. You can't specify a protocol for a
3805
- # Gateway Load Balancer.
3812
+ # Network Load Balancers support the TCP, TLS, UDP, TCP\_UDP, QUIC, and
3813
+ # TCP\_QUIC protocols. You can’t change the protocol to UDP, TCP\_UDP,
3814
+ # QUIC, or TCP\_QUIC if dual-stack mode is enabled. You can't specify a
3815
+ # protocol for a Gateway Load Balancer.
3806
3816
  #
3807
3817
  # @option params [String] :ssl_policy
3808
3818
  # \[HTTPS and TLS listeners\] The security policy that defines which
@@ -4622,8 +4632,8 @@ module Aws::ElasticLoadBalancingV2
4622
4632
  # The TCP protocol is not supported for health checks if the protocol of
4623
4633
  # the target group is HTTP or HTTPS. It is supported for health checks
4624
4634
  # only if the protocol of the target group is TCP, TLS, UDP, or
4625
- # TCP\_UDP. The GENEVE, TLS, UDP, and TCP\_UDP protocols are not
4626
- # supported for health checks.
4635
+ # TCP\_UDP. The GENEVE, TLS, UDP, TCP\_UDP, QUIC, and TCP\_QUIC
4636
+ # protocols are not supported for health checks.
4627
4637
  #
4628
4638
  # @option params [String] :health_check_port
4629
4639
  # The port the load balancer uses when performing health checks on
@@ -4750,6 +4760,7 @@ module Aws::ElasticLoadBalancingV2
4750
4760
  # resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
4751
4761
  # resp.target_groups[0].protocol_version #=> String
4752
4762
  # resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
4763
+ # resp.target_groups[0].target_control_port #=> Integer
4753
4764
  #
4754
4765
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTargetGroup AWS API Documentation
4755
4766
  #
@@ -5519,7 +5530,7 @@ module Aws::ElasticLoadBalancingV2
5519
5530
  tracer: tracer
5520
5531
  )
5521
5532
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
5522
- context[:gem_version] = '1.143.0'
5533
+ context[:gem_version] = '1.145.0'
5523
5534
  Seahorse::Client::Request.new(handlers, context)
5524
5535
  end
5525
5536
 
@@ -364,6 +364,7 @@ module Aws::ElasticLoadBalancingV2
364
364
  TagValue = Shapes::StringShape.new(name: 'TagValue')
365
365
  TargetAdministrativeOverrideReasonEnum = Shapes::StringShape.new(name: 'TargetAdministrativeOverrideReasonEnum')
366
366
  TargetAdministrativeOverrideStateEnum = Shapes::StringShape.new(name: 'TargetAdministrativeOverrideStateEnum')
367
+ TargetControlPort = Shapes::IntegerShape.new(name: 'TargetControlPort')
367
368
  TargetDescription = Shapes::StructureShape.new(name: 'TargetDescription')
368
369
  TargetDescriptions = Shapes::ListShape.new(name: 'TargetDescriptions')
369
370
  TargetGroup = Shapes::StructureShape.new(name: 'TargetGroup')
@@ -603,6 +604,7 @@ module Aws::ElasticLoadBalancingV2
603
604
  CreateTargetGroupInput.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
604
605
  CreateTargetGroupInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
605
606
  CreateTargetGroupInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: TargetGroupIpAddressTypeEnum, location_name: "IpAddressType"))
607
+ CreateTargetGroupInput.add_member(:target_control_port, Shapes::ShapeRef.new(shape: TargetControlPort, location_name: "TargetControlPort"))
606
608
  CreateTargetGroupInput.struct_class = Types::CreateTargetGroupInput
607
609
 
608
610
  CreateTargetGroupOutput.add_member(:target_groups, Shapes::ShapeRef.new(shape: TargetGroups, location_name: "TargetGroups"))
@@ -1300,6 +1302,7 @@ module Aws::ElasticLoadBalancingV2
1300
1302
  TargetGroup.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
1301
1303
  TargetGroup.add_member(:protocol_version, Shapes::ShapeRef.new(shape: ProtocolVersion, location_name: "ProtocolVersion"))
1302
1304
  TargetGroup.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: TargetGroupIpAddressTypeEnum, location_name: "IpAddressType"))
1305
+ TargetGroup.add_member(:target_control_port, Shapes::ShapeRef.new(shape: TargetControlPort, location_name: "TargetControlPort"))
1303
1306
  TargetGroup.struct_class = Types::TargetGroup
1304
1307
 
1305
1308
  TargetGroupArns.member = Shapes::ShapeRef.new(shape: TargetGroupArn)
@@ -533,9 +533,9 @@ module Aws::ElasticLoadBalancingV2
533
533
  # The protocol for connections from clients to the load balancer. For
534
534
  # Application Load Balancers, the supported protocols are HTTP and
535
535
  # HTTPS. For Network Load Balancers, the supported protocols are TCP,
536
- # TLS, UDP, and TCP\_UDP. You can’t specify the UDP or TCP\_UDP
537
- # protocol if dual-stack mode is enabled. You can't specify a
538
- # protocol for a Gateway Load Balancer.
536
+ # TLS, UDP, TCP\_UDP, QUIC, and TCP\_QUIC. You can’t specify the UDP,
537
+ # TCP\_UDP, QUIC, or TCP\_QUIC protocol if dual-stack mode is enabled.
538
+ # You can't specify a protocol for a Gateway Load Balancer.
539
539
  # @return [String]
540
540
  #
541
541
  # @!attribute [rw] port
@@ -836,10 +836,11 @@ module Aws::ElasticLoadBalancingV2
836
836
  # The protocol to use for routing traffic to the targets. For
837
837
  # Application Load Balancers, the supported protocols are HTTP and
838
838
  # HTTPS. For Network Load Balancers, the supported protocols are TCP,
839
- # TLS, UDP, or TCP\_UDP. For Gateway Load Balancers, the supported
840
- # protocol is GENEVE. A TCP\_UDP listener must be associated with a
841
- # TCP\_UDP target group. If the target is a Lambda function, this
842
- # parameter does not apply.
839
+ # TLS, UDP, TCP\_UDP, QUIC, or TCP\_QUIC. For Gateway Load Balancers,
840
+ # the supported protocol is GENEVE. A TCP\_UDP listener must be
841
+ # associated with a TCP\_UDP target group. A TCP\_QUIC listener must
842
+ # be associated with a TCP\_QUIC target group. If the target is a
843
+ # Lambda function, this parameter does not apply.
843
844
  # @return [String]
844
845
  #
845
846
  # @!attribute [rw] protocol_version
@@ -868,15 +869,16 @@ module Aws::ElasticLoadBalancingV2
868
869
  # Network Load Balancers and Gateway Load Balancers, the default is
869
870
  # TCP. The TCP protocol is not supported for health checks if the
870
871
  # protocol of the target group is HTTP or HTTPS. The GENEVE, TLS, UDP,
871
- # and TCP\_UDP protocols are not supported for health checks.
872
+ # TCP\_UDP, QUIC, and TCP\_QUIC protocols are not supported for health
873
+ # checks.
872
874
  # @return [String]
873
875
  #
874
876
  # @!attribute [rw] health_check_port
875
877
  # The port the load balancer uses when performing health checks on
876
- # targets. If the protocol is HTTP, HTTPS, TCP, TLS, UDP, or TCP\_UDP,
877
- # the default is `traffic-port`, which is the port on which each
878
- # target receives traffic from the load balancer. If the protocol is
879
- # GENEVE, the default is port 80.
878
+ # targets. If the protocol is HTTP, HTTPS, TCP, TLS, UDP, TCP\_UDP,
879
+ # QUIC, or TCP\_QUIC the default is `traffic-port`, which is the port
880
+ # on which each target receives traffic from the load balancer. If the
881
+ # protocol is GENEVE, the default is port 80.
880
882
  # @return [String]
881
883
  #
882
884
  # @!attribute [rw] health_check_enabled
@@ -900,10 +902,10 @@ module Aws::ElasticLoadBalancingV2
900
902
  # @!attribute [rw] health_check_interval_seconds
901
903
  # The approximate amount of time, in seconds, between health checks of
902
904
  # an individual target. The range is 5-300. If the target group
903
- # protocol is TCP, TLS, UDP, TCP\_UDP, HTTP or HTTPS, the default is
904
- # 30 seconds. If the target group protocol is GENEVE, the default is
905
- # 10 seconds. If the target type is `lambda`, the default is 35
906
- # seconds.
905
+ # protocol is TCP, TLS, UDP, TCP\_UDP, QUIC, TCP\_QUIC, HTTP or HTTPS,
906
+ # the default is 30 seconds. If the target group protocol is GENEVE,
907
+ # the default is 10 seconds. If the target type is `lambda`, the
908
+ # default is 35 seconds.
907
909
  # @return [Integer]
908
910
  #
909
911
  # @!attribute [rw] health_check_timeout_seconds
@@ -927,18 +929,19 @@ module Aws::ElasticLoadBalancingV2
927
929
  # @!attribute [rw] unhealthy_threshold_count
928
930
  # The number of consecutive health check failures required before
929
931
  # considering a target unhealthy. The range is 2-10. If the target
930
- # group protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the
931
- # default is 2. For target groups with a protocol of GENEVE, the
932
- # default is 2. If the target type is `lambda`, the default is 5.
932
+ # group protocol is TCP, TCP\_UDP, UDP, TLS, QUIC, TCP\_QUIC, HTTP or
933
+ # HTTPS, the default is 2. For target groups with a protocol of
934
+ # GENEVE, the default is 2. If the target type is `lambda`, the
935
+ # default is 5.
933
936
  # @return [Integer]
934
937
  #
935
938
  # @!attribute [rw] matcher
936
939
  # \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
937
940
  # checking for a successful response from a target. For target groups
938
- # with a protocol of TCP, TCP\_UDP, UDP or TLS the range is 200-599.
939
- # For target groups with a protocol of HTTP or HTTPS, the range is
940
- # 200-499. For target groups with a protocol of GENEVE, the range is
941
- # 200-399.
941
+ # with a protocol of TCP, TCP\_UDP, UDP, QUIC, TCP\_QUIC, or TLS the
942
+ # range is 200-599. For target groups with a protocol of HTTP or
943
+ # HTTPS, the range is 200-499. For target groups with a protocol of
944
+ # GENEVE, the range is 200-399.
942
945
  # @return [Types::Matcher]
943
946
  #
944
947
  # @!attribute [rw] target_type
@@ -968,6 +971,12 @@ module Aws::ElasticLoadBalancingV2
968
971
  # The IP address type. The default value is `ipv4`.
969
972
  # @return [String]
970
973
  #
974
+ # @!attribute [rw] target_control_port
975
+ # The port on which the target control agent and application load
976
+ # balancer exchange management traffic for the target optimizer
977
+ # feature.
978
+ # @return [Integer]
979
+ #
971
980
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTargetGroupInput AWS API Documentation
972
981
  #
973
982
  class CreateTargetGroupInput < Struct.new(
@@ -987,7 +996,8 @@ module Aws::ElasticLoadBalancingV2
987
996
  :matcher,
988
997
  :target_type,
989
998
  :tags,
990
- :ip_address_type)
999
+ :ip_address_type,
1000
+ :target_control_port)
991
1001
  SENSITIVE = []
992
1002
  include Aws::Structure
993
1003
  end
@@ -2661,6 +2671,19 @@ module Aws::ElasticLoadBalancingV2
2661
2671
  # * `connection_logs.s3.prefix` - The prefix for the location in the
2662
2672
  # S3 bucket for the connection logs.
2663
2673
  #
2674
+ # * `health_check_logs.s3.enabled` - Indicates whether health check
2675
+ # logs are enabled. The value is `true` or `false`. The default is
2676
+ # `false`.
2677
+ #
2678
+ # * `health_check_logs.s3.bucket` - The name of the S3 bucket for the
2679
+ # health check logs. This attribute is required if health check logs
2680
+ # are enabled. The bucket must exist in the same region as the load
2681
+ # balancer and have a bucket policy that grants Elastic Load
2682
+ # Balancing permissions to write to the bucket.
2683
+ #
2684
+ # * `health_check_logs.s3.prefix` - The prefix for the location in the
2685
+ # S3 bucket for the health check logs.
2686
+ #
2664
2687
  # * `routing.http.desync_mitigation_mode` - Determines how the load
2665
2688
  # balancer handles requests that might pose a security risk to your
2666
2689
  # application. The possible values are `monitor`, `defensive`, and
@@ -2956,10 +2979,10 @@ module Aws::ElasticLoadBalancingV2
2956
2979
  # @!attribute [rw] protocol
2957
2980
  # The protocol for connections from clients to the load balancer.
2958
2981
  # Application Load Balancers support the HTTP and HTTPS protocols.
2959
- # Network Load Balancers support the TCP, TLS, UDP, and TCP\_UDP
2960
- # protocols. You can’t change the protocol to UDP or TCP\_UDP if
2961
- # dual-stack mode is enabled. You can't specify a protocol for a
2962
- # Gateway Load Balancer.
2982
+ # Network Load Balancers support the TCP, TLS, UDP, TCP\_UDP, QUIC,
2983
+ # and TCP\_QUIC protocols. You can’t change the protocol to UDP,
2984
+ # TCP\_UDP, QUIC, or TCP\_QUIC if dual-stack mode is enabled. You
2985
+ # can't specify a protocol for a Gateway Load Balancer.
2963
2986
  # @return [String]
2964
2987
  #
2965
2988
  # @!attribute [rw] ssl_policy
@@ -3157,8 +3180,8 @@ module Aws::ElasticLoadBalancingV2
3157
3180
  # TCP. The TCP protocol is not supported for health checks if the
3158
3181
  # protocol of the target group is HTTP or HTTPS. It is supported for
3159
3182
  # health checks only if the protocol of the target group is TCP, TLS,
3160
- # UDP, or TCP\_UDP. The GENEVE, TLS, UDP, and TCP\_UDP protocols are
3161
- # not supported for health checks.
3183
+ # UDP, or TCP\_UDP. The GENEVE, TLS, UDP, TCP\_UDP, QUIC, and
3184
+ # TCP\_QUIC protocols are not supported for health checks.
3162
3185
  # @return [String]
3163
3186
  #
3164
3187
  # @!attribute [rw] health_check_port
@@ -4395,6 +4418,12 @@ module Aws::ElasticLoadBalancingV2
4395
4418
  # The IP address type. The default value is `ipv4`.
4396
4419
  # @return [String]
4397
4420
  #
4421
+ # @!attribute [rw] target_control_port
4422
+ # The port on which the target control agent and application load
4423
+ # balancer exchange management traffic for the target optimizer
4424
+ # feature.
4425
+ # @return [Integer]
4426
+ #
4398
4427
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetGroup AWS API Documentation
4399
4428
  #
4400
4429
  class TargetGroup < Struct.new(
@@ -4415,7 +4444,8 @@ module Aws::ElasticLoadBalancingV2
4415
4444
  :load_balancer_arns,
4416
4445
  :target_type,
4417
4446
  :protocol_version,
4418
- :ip_address_type)
4447
+ :ip_address_type,
4448
+ :target_control_port)
4419
4449
  SENSITIVE = []
4420
4450
  include Aws::Structure
4421
4451
  end
@@ -55,7 +55,7 @@ module Aws::ElasticLoadBalancingV2
55
55
  autoload :EndpointProvider, 'aws-sdk-elasticloadbalancingv2/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-elasticloadbalancingv2/endpoints'
57
57
 
58
- GEM_VERSION = '1.143.0'
58
+ GEM_VERSION = '1.145.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -431,7 +431,8 @@ module Aws
431
431
  value: ::String?
432
432
  },
433
433
  ],
434
- ?ip_address_type: ("ipv4" | "ipv6")
434
+ ?ip_address_type: ("ipv4" | "ipv6"),
435
+ ?target_control_port: ::Integer
435
436
  ) -> _CreateTargetGroupResponseSuccess
436
437
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTargetGroupResponseSuccess
437
438
 
data/sig/types.rbs CHANGED
@@ -215,6 +215,7 @@ module Aws::ElasticLoadBalancingV2
215
215
  attr_accessor target_type: ("instance" | "ip" | "lambda" | "alb")
216
216
  attr_accessor tags: ::Array[Types::Tag]
217
217
  attr_accessor ip_address_type: ("ipv4" | "ipv6")
218
+ attr_accessor target_control_port: ::Integer
218
219
  SENSITIVE: []
219
220
  end
220
221
 
@@ -1110,6 +1111,7 @@ module Aws::ElasticLoadBalancingV2
1110
1111
  attr_accessor target_type: ("instance" | "ip" | "lambda" | "alb")
1111
1112
  attr_accessor protocol_version: ::String
1112
1113
  attr_accessor ip_address_type: ("ipv4" | "ipv6")
1114
+ attr_accessor target_control_port: ::Integer
1113
1115
  SENSITIVE: []
1114
1116
  end
1115
1117
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticloadbalancingv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.143.0
4
+ version: 1.145.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.234.0
21
+ version: 3.239.1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.234.0
31
+ version: 3.239.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement