aws-sdk-elasticloadbalancingv2 1.142.0 → 1.144.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: 404373b3c0d2ab620f93f929d9550538f308328565bc2bba0fea83caf9f4d03b
4
- data.tar.gz: 4c5a72ddcfc0d8c0eb7cd8b6df38bab571d64dbe801cef66e3f0638d80148e2f
3
+ metadata.gz: fa78693e17db5b10393cc44534d72ed8b46122f99a5a080337978b47c9478f42
4
+ data.tar.gz: d88ca4902910f330560ac0c1d732d4ded29013c83675864d041ae8af285357ff
5
5
  SHA512:
6
- metadata.gz: 48506224731ff60f6c03ce2c50ade001f733c217631263bbb1ddcacd5a6c208a92e591c1f9ddc9333eae616cb8103cf3188a4411d0ce6831e144c6e51f4720fa
7
- data.tar.gz: d55eb10fad6d8508afb246cc6cd08a614a2fa6df5a1ee2278e1051fd28ecef0dc72146846012dabebb87c8b10544e3ba64a1c2c91c6badd0ea5eee4a246089be
6
+ metadata.gz: e5540a1dbd207f592546bb708add444a8a3cd642bb9d12b72d17d43b93c6b8823eb1577a5876714b763a9bc73407684107196c3e2a6a5d8329ee462bf8ea1f5b
7
+ data.tar.gz: 022e2fe6270ec1dac3961a4d8525bf6992a9abf2b4aa6699d1a36cb362cdb17a153e468eb627a5279dce71b79a33472841c6aea6fb2590ddbfe164ee24c97467
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.144.0 (2025-11-20)
5
+ ------------------
6
+
7
+ * Feature - This release adds the target optimizer feature in ALB, enabling strict concurrency enforcement on targets.
8
+
9
+ 1.143.0 (2025-11-13)
10
+ ------------------
11
+
12
+ * Feature - QUIC and TCP_QUIC protocol support for Network Load Balancer (NLB). This capability enables customers to forward QUIC traffic to their targets with ultra-low latency while maintaining session stickiness using QUIC Connection IDs.
13
+
4
14
  1.142.0 (2025-11-12)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.142.0
1
+ 1.144.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
@@ -809,7 +809,7 @@ module Aws::ElasticLoadBalancingV2
809
809
  #
810
810
  # resp = client.create_listener({
811
811
  # load_balancer_arn: "LoadBalancerArn", # required
812
- # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
812
+ # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
813
813
  # port: 1,
814
814
  # ssl_policy: "SslPolicyName",
815
815
  # certificates: [
@@ -911,7 +911,7 @@ module Aws::ElasticLoadBalancingV2
911
911
  # resp.listeners[0].listener_arn #=> String
912
912
  # resp.listeners[0].load_balancer_arn #=> String
913
913
  # resp.listeners[0].port #=> Integer
914
- # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
914
+ # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
915
915
  # resp.listeners[0].certificates #=> Array
916
916
  # resp.listeners[0].certificates[0].certificate_arn #=> String
917
917
  # resp.listeners[0].certificates[0].is_default #=> Boolean
@@ -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>
@@ -1787,11 +1794,11 @@ module Aws::ElasticLoadBalancingV2
1787
1794
  #
1788
1795
  # resp = client.create_target_group({
1789
1796
  # name: "TargetGroupName", # required
1790
- # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
1797
+ # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
1791
1798
  # protocol_version: "ProtocolVersion",
1792
1799
  # port: 1,
1793
1800
  # vpc_id: "VpcId",
1794
- # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
1801
+ # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
1795
1802
  # health_check_port: "HealthCheckPort",
1796
1803
  # health_check_enabled: false,
1797
1804
  # health_check_path: "Path",
@@ -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
@@ -1818,10 +1826,10 @@ module Aws::ElasticLoadBalancingV2
1818
1826
  # resp.target_groups #=> Array
1819
1827
  # resp.target_groups[0].target_group_arn #=> String
1820
1828
  # resp.target_groups[0].target_group_name #=> String
1821
- # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
1829
+ # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
1822
1830
  # resp.target_groups[0].port #=> Integer
1823
1831
  # resp.target_groups[0].vpc_id #=> String
1824
- # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
1832
+ # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
1825
1833
  # resp.target_groups[0].health_check_port #=> String
1826
1834
  # resp.target_groups[0].health_check_enabled #=> Boolean
1827
1835
  # resp.target_groups[0].health_check_interval_seconds #=> Integer
@@ -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
  #
@@ -2178,6 +2187,7 @@ module Aws::ElasticLoadBalancingV2
2178
2187
  # id: "TargetId", # required
2179
2188
  # port: 1,
2180
2189
  # availability_zone: "ZoneName",
2190
+ # quic_server_id: "QuicServerId",
2181
2191
  # },
2182
2192
  # ],
2183
2193
  # })
@@ -2453,7 +2463,7 @@ module Aws::ElasticLoadBalancingV2
2453
2463
  # resp.listeners[0].listener_arn #=> String
2454
2464
  # resp.listeners[0].load_balancer_arn #=> String
2455
2465
  # resp.listeners[0].port #=> Integer
2456
- # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
2466
+ # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
2457
2467
  # resp.listeners[0].certificates #=> Array
2458
2468
  # resp.listeners[0].certificates[0].certificate_arn #=> String
2459
2469
  # resp.listeners[0].certificates[0].is_default #=> Boolean
@@ -3282,10 +3292,10 @@ module Aws::ElasticLoadBalancingV2
3282
3292
  # resp.target_groups #=> Array
3283
3293
  # resp.target_groups[0].target_group_arn #=> String
3284
3294
  # resp.target_groups[0].target_group_name #=> String
3285
- # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
3295
+ # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
3286
3296
  # resp.target_groups[0].port #=> Integer
3287
3297
  # resp.target_groups[0].vpc_id #=> String
3288
- # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
3298
+ # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
3289
3299
  # resp.target_groups[0].health_check_port #=> String
3290
3300
  # resp.target_groups[0].health_check_enabled #=> Boolean
3291
3301
  # resp.target_groups[0].health_check_interval_seconds #=> Integer
@@ -3300,6 +3310,7 @@ module Aws::ElasticLoadBalancingV2
3300
3310
  # resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
3301
3311
  # resp.target_groups[0].protocol_version #=> String
3302
3312
  # resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
3313
+ # resp.target_groups[0].target_control_port #=> Integer
3303
3314
  # resp.next_marker #=> String
3304
3315
  #
3305
3316
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTargetGroups AWS API Documentation
@@ -3402,6 +3413,7 @@ module Aws::ElasticLoadBalancingV2
3402
3413
  # id: "TargetId", # required
3403
3414
  # port: 1,
3404
3415
  # availability_zone: "ZoneName",
3416
+ # quic_server_id: "QuicServerId",
3405
3417
  # },
3406
3418
  # ],
3407
3419
  # include: ["AnomalyDetection"], # accepts AnomalyDetection, All
@@ -3413,6 +3425,7 @@ module Aws::ElasticLoadBalancingV2
3413
3425
  # resp.target_health_descriptions[0].target.id #=> String
3414
3426
  # resp.target_health_descriptions[0].target.port #=> Integer
3415
3427
  # resp.target_health_descriptions[0].target.availability_zone #=> String
3428
+ # resp.target_health_descriptions[0].target.quic_server_id #=> String
3416
3429
  # resp.target_health_descriptions[0].health_check_port #=> String
3417
3430
  # resp.target_health_descriptions[0].target_health.state #=> String, one of "initial", "healthy", "unhealthy", "unhealthy.draining", "unused", "draining", "unavailable"
3418
3431
  # resp.target_health_descriptions[0].target_health.reason #=> String, one of "Elb.RegistrationInProgress", "Elb.InitialHealthChecking", "Target.ResponseCodeMismatch", "Target.Timeout", "Target.FailedHealthChecks", "Target.NotRegistered", "Target.NotInUse", "Target.DeregistrationInProgress", "Target.InvalidState", "Target.IpUnusable", "Target.HealthCheckDisabled", "Elb.InternalError"
@@ -3796,10 +3809,10 @@ module Aws::ElasticLoadBalancingV2
3796
3809
  # @option params [String] :protocol
3797
3810
  # The protocol for connections from clients to the load balancer.
3798
3811
  # Application Load Balancers support the HTTP and HTTPS protocols.
3799
- # Network Load Balancers support the TCP, TLS, UDP, and TCP\_UDP
3800
- # protocols. You can’t change the protocol to UDP or TCP\_UDP if
3801
- # dual-stack mode is enabled. You can't specify a protocol for a
3802
- # 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.
3803
3816
  #
3804
3817
  # @option params [String] :ssl_policy
3805
3818
  # \[HTTPS and TLS listeners\] The security policy that defines which
@@ -3927,7 +3940,7 @@ module Aws::ElasticLoadBalancingV2
3927
3940
  # resp = client.modify_listener({
3928
3941
  # listener_arn: "ListenerArn", # required
3929
3942
  # port: 1,
3930
- # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
3943
+ # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
3931
3944
  # ssl_policy: "SslPolicyName",
3932
3945
  # certificates: [
3933
3946
  # {
@@ -4022,7 +4035,7 @@ module Aws::ElasticLoadBalancingV2
4022
4035
  # resp.listeners[0].listener_arn #=> String
4023
4036
  # resp.listeners[0].load_balancer_arn #=> String
4024
4037
  # resp.listeners[0].port #=> Integer
4025
- # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
4038
+ # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
4026
4039
  # resp.listeners[0].certificates #=> Array
4027
4040
  # resp.listeners[0].certificates[0].certificate_arn #=> String
4028
4041
  # resp.listeners[0].certificates[0].is_default #=> Boolean
@@ -4619,8 +4632,8 @@ module Aws::ElasticLoadBalancingV2
4619
4632
  # The TCP protocol is not supported for health checks if the protocol of
4620
4633
  # the target group is HTTP or HTTPS. It is supported for health checks
4621
4634
  # only if the protocol of the target group is TCP, TLS, UDP, or
4622
- # TCP\_UDP. The GENEVE, TLS, UDP, and TCP\_UDP protocols are not
4623
- # 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.
4624
4637
  #
4625
4638
  # @option params [String] :health_check_port
4626
4639
  # The port the load balancer uses when performing health checks on
@@ -4710,7 +4723,7 @@ module Aws::ElasticLoadBalancingV2
4710
4723
  #
4711
4724
  # resp = client.modify_target_group({
4712
4725
  # target_group_arn: "TargetGroupArn", # required
4713
- # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
4726
+ # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
4714
4727
  # health_check_port: "HealthCheckPort",
4715
4728
  # health_check_path: "Path",
4716
4729
  # health_check_enabled: false,
@@ -4729,10 +4742,10 @@ module Aws::ElasticLoadBalancingV2
4729
4742
  # resp.target_groups #=> Array
4730
4743
  # resp.target_groups[0].target_group_arn #=> String
4731
4744
  # resp.target_groups[0].target_group_name #=> String
4732
- # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
4745
+ # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
4733
4746
  # resp.target_groups[0].port #=> Integer
4734
4747
  # resp.target_groups[0].vpc_id #=> String
4735
- # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
4748
+ # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
4736
4749
  # resp.target_groups[0].health_check_port #=> String
4737
4750
  # resp.target_groups[0].health_check_enabled #=> Boolean
4738
4751
  # resp.target_groups[0].health_check_interval_seconds #=> Integer
@@ -4747,6 +4760,7 @@ module Aws::ElasticLoadBalancingV2
4747
4760
  # resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
4748
4761
  # resp.target_groups[0].protocol_version #=> String
4749
4762
  # resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
4763
+ # resp.target_groups[0].target_control_port #=> Integer
4750
4764
  #
4751
4765
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTargetGroup AWS API Documentation
4752
4766
  #
@@ -4957,6 +4971,7 @@ module Aws::ElasticLoadBalancingV2
4957
4971
  # id: "TargetId", # required
4958
4972
  # port: 1,
4959
4973
  # availability_zone: "ZoneName",
4974
+ # quic_server_id: "QuicServerId",
4960
4975
  # },
4961
4976
  # ],
4962
4977
  # })
@@ -5515,7 +5530,7 @@ module Aws::ElasticLoadBalancingV2
5515
5530
  tracer: tracer
5516
5531
  )
5517
5532
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
5518
- context[:gem_version] = '1.142.0'
5533
+ context[:gem_version] = '1.144.0'
5519
5534
  Seahorse::Client::Request.new(handlers, context)
5520
5535
  end
5521
5536
 
@@ -279,6 +279,7 @@ module Aws::ElasticLoadBalancingV2
279
279
  QueryStringConditionConfig = Shapes::StructureShape.new(name: 'QueryStringConditionConfig')
280
280
  QueryStringKeyValuePair = Shapes::StructureShape.new(name: 'QueryStringKeyValuePair')
281
281
  QueryStringKeyValuePairList = Shapes::ListShape.new(name: 'QueryStringKeyValuePairList')
282
+ QuicServerId = Shapes::StringShape.new(name: 'QuicServerId')
282
283
  RedirectActionConfig = Shapes::StructureShape.new(name: 'RedirectActionConfig')
283
284
  RedirectActionHost = Shapes::StringShape.new(name: 'RedirectActionHost')
284
285
  RedirectActionPath = Shapes::StringShape.new(name: 'RedirectActionPath')
@@ -363,6 +364,7 @@ module Aws::ElasticLoadBalancingV2
363
364
  TagValue = Shapes::StringShape.new(name: 'TagValue')
364
365
  TargetAdministrativeOverrideReasonEnum = Shapes::StringShape.new(name: 'TargetAdministrativeOverrideReasonEnum')
365
366
  TargetAdministrativeOverrideStateEnum = Shapes::StringShape.new(name: 'TargetAdministrativeOverrideStateEnum')
367
+ TargetControlPort = Shapes::IntegerShape.new(name: 'TargetControlPort')
366
368
  TargetDescription = Shapes::StructureShape.new(name: 'TargetDescription')
367
369
  TargetDescriptions = Shapes::ListShape.new(name: 'TargetDescriptions')
368
370
  TargetGroup = Shapes::StructureShape.new(name: 'TargetGroup')
@@ -602,6 +604,7 @@ module Aws::ElasticLoadBalancingV2
602
604
  CreateTargetGroupInput.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
603
605
  CreateTargetGroupInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
604
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"))
605
608
  CreateTargetGroupInput.struct_class = Types::CreateTargetGroupInput
606
609
 
607
610
  CreateTargetGroupOutput.add_member(:target_groups, Shapes::ShapeRef.new(shape: TargetGroups, location_name: "TargetGroups"))
@@ -1276,6 +1279,7 @@ module Aws::ElasticLoadBalancingV2
1276
1279
  TargetDescription.add_member(:id, Shapes::ShapeRef.new(shape: TargetId, required: true, location_name: "Id"))
1277
1280
  TargetDescription.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "Port"))
1278
1281
  TargetDescription.add_member(:availability_zone, Shapes::ShapeRef.new(shape: ZoneName, location_name: "AvailabilityZone"))
1282
+ TargetDescription.add_member(:quic_server_id, Shapes::ShapeRef.new(shape: QuicServerId, location_name: "QuicServerId"))
1279
1283
  TargetDescription.struct_class = Types::TargetDescription
1280
1284
 
1281
1285
  TargetDescriptions.member = Shapes::ShapeRef.new(shape: TargetDescription)
@@ -1298,6 +1302,7 @@ module Aws::ElasticLoadBalancingV2
1298
1302
  TargetGroup.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
1299
1303
  TargetGroup.add_member(:protocol_version, Shapes::ShapeRef.new(shape: ProtocolVersion, location_name: "ProtocolVersion"))
1300
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"))
1301
1306
  TargetGroup.struct_class = Types::TargetGroup
1302
1307
 
1303
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
@@ -2956,10 +2966,10 @@ module Aws::ElasticLoadBalancingV2
2956
2966
  # @!attribute [rw] protocol
2957
2967
  # The protocol for connections from clients to the load balancer.
2958
2968
  # 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.
2969
+ # Network Load Balancers support the TCP, TLS, UDP, TCP\_UDP, QUIC,
2970
+ # and TCP\_QUIC protocols. You can’t change the protocol to UDP,
2971
+ # TCP\_UDP, QUIC, or TCP\_QUIC if dual-stack mode is enabled. You
2972
+ # can't specify a protocol for a Gateway Load Balancer.
2963
2973
  # @return [String]
2964
2974
  #
2965
2975
  # @!attribute [rw] ssl_policy
@@ -3157,8 +3167,8 @@ module Aws::ElasticLoadBalancingV2
3157
3167
  # TCP. The TCP protocol is not supported for health checks if the
3158
3168
  # protocol of the target group is HTTP or HTTPS. It is supported for
3159
3169
  # 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.
3170
+ # UDP, or TCP\_UDP. The GENEVE, TLS, UDP, TCP\_UDP, QUIC, and
3171
+ # TCP\_QUIC protocols are not supported for health checks.
3162
3172
  # @return [String]
3163
3173
  #
3164
3174
  # @!attribute [rw] health_check_port
@@ -4284,12 +4294,25 @@ module Aws::ElasticLoadBalancingV2
4284
4294
  # only supported value is `all`.
4285
4295
  # @return [String]
4286
4296
  #
4297
+ # @!attribute [rw] quic_server_id
4298
+ # The server ID for the targets. This value is required if the
4299
+ # protocol is `QUIC` or `TCP_QUIC` and can't be used with other
4300
+ # protocols.
4301
+ #
4302
+ # The ID consists of the `0x` prefix followed by 16 hexadecimal
4303
+ # characters. Any letters must be lowercase. The value must be unique
4304
+ # at the listener level. You can't modify the server ID for a
4305
+ # registered target. You must deregister the target and then provide a
4306
+ # new server ID when you register the target again.
4307
+ # @return [String]
4308
+ #
4287
4309
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetDescription AWS API Documentation
4288
4310
  #
4289
4311
  class TargetDescription < Struct.new(
4290
4312
  :id,
4291
4313
  :port,
4292
- :availability_zone)
4314
+ :availability_zone,
4315
+ :quic_server_id)
4293
4316
  SENSITIVE = []
4294
4317
  include Aws::Structure
4295
4318
  end
@@ -4382,6 +4405,12 @@ module Aws::ElasticLoadBalancingV2
4382
4405
  # The IP address type. The default value is `ipv4`.
4383
4406
  # @return [String]
4384
4407
  #
4408
+ # @!attribute [rw] target_control_port
4409
+ # The port on which the target control agent and application load
4410
+ # balancer exchange management traffic for the target optimizer
4411
+ # feature.
4412
+ # @return [Integer]
4413
+ #
4385
4414
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetGroup AWS API Documentation
4386
4415
  #
4387
4416
  class TargetGroup < Struct.new(
@@ -4402,7 +4431,8 @@ module Aws::ElasticLoadBalancingV2
4402
4431
  :load_balancer_arns,
4403
4432
  :target_type,
4404
4433
  :protocol_version,
4405
- :ip_address_type)
4434
+ :ip_address_type,
4435
+ :target_control_port)
4406
4436
  SENSITIVE = []
4407
4437
  include Aws::Structure
4408
4438
  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.142.0'
58
+ GEM_VERSION = '1.144.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -134,7 +134,7 @@ module Aws
134
134
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticLoadBalancingV2/Client.html#create_listener-instance_method
135
135
  def create_listener: (
136
136
  load_balancer_arn: ::String,
137
- ?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE"),
137
+ ?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC"),
138
138
  ?port: ::Integer,
139
139
  ?ssl_policy: ::String,
140
140
  ?certificates: Array[
@@ -408,11 +408,11 @@ module Aws
408
408
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticLoadBalancingV2/Client.html#create_target_group-instance_method
409
409
  def create_target_group: (
410
410
  name: ::String,
411
- ?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE"),
411
+ ?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC"),
412
412
  ?protocol_version: ::String,
413
413
  ?port: ::Integer,
414
414
  ?vpc_id: ::String,
415
- ?health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE"),
415
+ ?health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC"),
416
416
  ?health_check_port: ::String,
417
417
  ?health_check_enabled: bool,
418
418
  ?health_check_path: ::String,
@@ -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
 
@@ -519,7 +520,8 @@ module Aws
519
520
  {
520
521
  id: ::String,
521
522
  port: ::Integer?,
522
- availability_zone: ::String?
523
+ availability_zone: ::String?,
524
+ quic_server_id: ::String?
523
525
  },
524
526
  ]
525
527
  ) -> _DeregisterTargetsResponseSuccess
@@ -685,7 +687,8 @@ module Aws
685
687
  {
686
688
  id: ::String,
687
689
  port: ::Integer?,
688
- availability_zone: ::String?
690
+ availability_zone: ::String?,
691
+ quic_server_id: ::String?
689
692
  },
690
693
  ],
691
694
  ?include: Array[("AnomalyDetection" | "All")]
@@ -803,7 +806,7 @@ module Aws
803
806
  def modify_listener: (
804
807
  listener_arn: ::String,
805
808
  ?port: ::Integer,
806
- ?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE"),
809
+ ?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC"),
807
810
  ?ssl_policy: ::String,
808
811
  ?certificates: Array[
809
812
  {
@@ -1061,7 +1064,7 @@ module Aws
1061
1064
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticLoadBalancingV2/Client.html#modify_target_group-instance_method
1062
1065
  def modify_target_group: (
1063
1066
  target_group_arn: ::String,
1064
- ?health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE"),
1067
+ ?health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC"),
1065
1068
  ?health_check_port: ::String,
1066
1069
  ?health_check_path: ::String,
1067
1070
  ?health_check_enabled: bool,
@@ -1115,7 +1118,8 @@ module Aws
1115
1118
  {
1116
1119
  id: ::String,
1117
1120
  port: ::Integer?,
1118
- availability_zone: ::String?
1121
+ availability_zone: ::String?,
1122
+ quic_server_id: ::String?
1119
1123
  },
1120
1124
  ]
1121
1125
  ) -> _RegisterTargetsResponseSuccess
@@ -1247,7 +1251,8 @@ module Aws
1247
1251
  {
1248
1252
  id: ::String,
1249
1253
  port: ::Integer?,
1250
- availability_zone: ::String?
1254
+ availability_zone: ::String?,
1255
+ quic_server_id: ::String?
1251
1256
  },
1252
1257
  ],
1253
1258
  ?include: Array[("AnomalyDetection" | "All")]
@@ -1259,7 +1264,8 @@ module Aws
1259
1264
  {
1260
1265
  id: ::String,
1261
1266
  port: ::Integer?,
1262
- availability_zone: ::String?
1267
+ availability_zone: ::String?,
1268
+ quic_server_id: ::String?
1263
1269
  },
1264
1270
  ],
1265
1271
  ?include: Array[("AnomalyDetection" | "All")]
data/sig/types.rbs CHANGED
@@ -146,7 +146,7 @@ module Aws::ElasticLoadBalancingV2
146
146
 
147
147
  class CreateListenerInput
148
148
  attr_accessor load_balancer_arn: ::String
149
- attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
149
+ attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
150
150
  attr_accessor port: ::Integer
151
151
  attr_accessor ssl_policy: ::String
152
152
  attr_accessor certificates: ::Array[Types::Certificate]
@@ -199,11 +199,11 @@ module Aws::ElasticLoadBalancingV2
199
199
 
200
200
  class CreateTargetGroupInput
201
201
  attr_accessor name: ::String
202
- attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
202
+ attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
203
203
  attr_accessor protocol_version: ::String
204
204
  attr_accessor port: ::Integer
205
205
  attr_accessor vpc_id: ::String
206
- attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
206
+ attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
207
207
  attr_accessor health_check_port: ::String
208
208
  attr_accessor health_check_enabled: bool
209
209
  attr_accessor health_check_path: ::String
@@ -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
 
@@ -652,7 +653,7 @@ module Aws::ElasticLoadBalancingV2
652
653
  attr_accessor listener_arn: ::String
653
654
  attr_accessor load_balancer_arn: ::String
654
655
  attr_accessor port: ::Integer
655
- attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
656
+ attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
656
657
  attr_accessor certificates: ::Array[Types::Certificate]
657
658
  attr_accessor ssl_policy: ::String
658
659
  attr_accessor default_actions: ::Array[Types::Action]
@@ -765,7 +766,7 @@ module Aws::ElasticLoadBalancingV2
765
766
  class ModifyListenerInput
766
767
  attr_accessor listener_arn: ::String
767
768
  attr_accessor port: ::Integer
768
- attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
769
+ attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
769
770
  attr_accessor ssl_policy: ::String
770
771
  attr_accessor certificates: ::Array[Types::Certificate]
771
772
  attr_accessor default_actions: ::Array[Types::Action]
@@ -817,7 +818,7 @@ module Aws::ElasticLoadBalancingV2
817
818
 
818
819
  class ModifyTargetGroupInput
819
820
  attr_accessor target_group_arn: ::String
820
- attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
821
+ attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
821
822
  attr_accessor health_check_port: ::String
822
823
  attr_accessor health_check_path: ::String
823
824
  attr_accessor health_check_enabled: bool
@@ -1087,16 +1088,17 @@ module Aws::ElasticLoadBalancingV2
1087
1088
  attr_accessor id: ::String
1088
1089
  attr_accessor port: ::Integer
1089
1090
  attr_accessor availability_zone: ::String
1091
+ attr_accessor quic_server_id: ::String
1090
1092
  SENSITIVE: []
1091
1093
  end
1092
1094
 
1093
1095
  class TargetGroup
1094
1096
  attr_accessor target_group_arn: ::String
1095
1097
  attr_accessor target_group_name: ::String
1096
- attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
1098
+ attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
1097
1099
  attr_accessor port: ::Integer
1098
1100
  attr_accessor vpc_id: ::String
1099
- attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
1101
+ attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
1100
1102
  attr_accessor health_check_port: ::String
1101
1103
  attr_accessor health_check_enabled: bool
1102
1104
  attr_accessor health_check_interval_seconds: ::Integer
@@ -1109,6 +1111,7 @@ module Aws::ElasticLoadBalancingV2
1109
1111
  attr_accessor target_type: ("instance" | "ip" | "lambda" | "alb")
1110
1112
  attr_accessor protocol_version: ::String
1111
1113
  attr_accessor ip_address_type: ("ipv4" | "ipv6")
1114
+ attr_accessor target_control_port: ::Integer
1112
1115
  SENSITIVE: []
1113
1116
  end
1114
1117
 
data/sig/waiters.rbs CHANGED
@@ -58,7 +58,8 @@ module Aws
58
58
  {
59
59
  id: ::String,
60
60
  port: ::Integer?,
61
- availability_zone: ::String?
61
+ availability_zone: ::String?,
62
+ quic_server_id: ::String?
62
63
  },
63
64
  ],
64
65
  ?include: Array[("AnomalyDetection" | "All")]
@@ -76,7 +77,8 @@ module Aws
76
77
  {
77
78
  id: ::String,
78
79
  port: ::Integer?,
79
- availability_zone: ::String?
80
+ availability_zone: ::String?,
81
+ quic_server_id: ::String?
80
82
  },
81
83
  ],
82
84
  ?include: Array[("AnomalyDetection" | "All")]
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.142.0
4
+ version: 1.144.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services