aws-sdk-elasticloadbalancingv2 1.142.0 → 1.143.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: e0e653e9ca920908ce2762279958585493bc9bf837a4ceab611d39dfc60d0779
4
+ data.tar.gz: f9bbebba9b5b801e8d1e9231052898d028f7c3b6e6daa24c32ac87a6c6d4dccd
5
5
  SHA512:
6
- metadata.gz: 48506224731ff60f6c03ce2c50ade001f733c217631263bbb1ddcacd5a6c208a92e591c1f9ddc9333eae616cb8103cf3188a4411d0ce6831e144c6e51f4720fa
7
- data.tar.gz: d55eb10fad6d8508afb246cc6cd08a614a2fa6df5a1ee2278e1051fd28ecef0dc72146846012dabebb87c8b10544e3ba64a1c2c91c6badd0ea5eee4a246089be
6
+ metadata.gz: 595cff92d88c68f18b8516236022cd927d4ac6046e3e8b22f5e559bfb2656dfca900d5153084fd7d0845a77df71fc304e59bfc66254eeed82e91b475e1e14930
7
+ data.tar.gz: 00f0ab0d768c052b9ee4d5632bd31e6a4dc6e0895415a576b1dd4658733c91c1a0751b62b6126e0ce2c55268882f2154dfd2d8070bf8584fb81715c78e5d98a1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.143.0 (2025-11-13)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.142.0 (2025-11-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.142.0
1
+ 1.143.0
@@ -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
@@ -1787,11 +1787,11 @@ module Aws::ElasticLoadBalancingV2
1787
1787
  #
1788
1788
  # resp = client.create_target_group({
1789
1789
  # name: "TargetGroupName", # required
1790
- # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
1790
+ # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
1791
1791
  # protocol_version: "ProtocolVersion",
1792
1792
  # port: 1,
1793
1793
  # vpc_id: "VpcId",
1794
- # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
1794
+ # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
1795
1795
  # health_check_port: "HealthCheckPort",
1796
1796
  # health_check_enabled: false,
1797
1797
  # health_check_path: "Path",
@@ -1818,10 +1818,10 @@ module Aws::ElasticLoadBalancingV2
1818
1818
  # resp.target_groups #=> Array
1819
1819
  # resp.target_groups[0].target_group_arn #=> String
1820
1820
  # 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"
1821
+ # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
1822
1822
  # resp.target_groups[0].port #=> Integer
1823
1823
  # 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"
1824
+ # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
1825
1825
  # resp.target_groups[0].health_check_port #=> String
1826
1826
  # resp.target_groups[0].health_check_enabled #=> Boolean
1827
1827
  # resp.target_groups[0].health_check_interval_seconds #=> Integer
@@ -2178,6 +2178,7 @@ module Aws::ElasticLoadBalancingV2
2178
2178
  # id: "TargetId", # required
2179
2179
  # port: 1,
2180
2180
  # availability_zone: "ZoneName",
2181
+ # quic_server_id: "QuicServerId",
2181
2182
  # },
2182
2183
  # ],
2183
2184
  # })
@@ -2453,7 +2454,7 @@ module Aws::ElasticLoadBalancingV2
2453
2454
  # resp.listeners[0].listener_arn #=> String
2454
2455
  # resp.listeners[0].load_balancer_arn #=> String
2455
2456
  # resp.listeners[0].port #=> Integer
2456
- # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
2457
+ # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
2457
2458
  # resp.listeners[0].certificates #=> Array
2458
2459
  # resp.listeners[0].certificates[0].certificate_arn #=> String
2459
2460
  # resp.listeners[0].certificates[0].is_default #=> Boolean
@@ -3282,10 +3283,10 @@ module Aws::ElasticLoadBalancingV2
3282
3283
  # resp.target_groups #=> Array
3283
3284
  # resp.target_groups[0].target_group_arn #=> String
3284
3285
  # 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"
3286
+ # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
3286
3287
  # resp.target_groups[0].port #=> Integer
3287
3288
  # 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"
3289
+ # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
3289
3290
  # resp.target_groups[0].health_check_port #=> String
3290
3291
  # resp.target_groups[0].health_check_enabled #=> Boolean
3291
3292
  # resp.target_groups[0].health_check_interval_seconds #=> Integer
@@ -3402,6 +3403,7 @@ module Aws::ElasticLoadBalancingV2
3402
3403
  # id: "TargetId", # required
3403
3404
  # port: 1,
3404
3405
  # availability_zone: "ZoneName",
3406
+ # quic_server_id: "QuicServerId",
3405
3407
  # },
3406
3408
  # ],
3407
3409
  # include: ["AnomalyDetection"], # accepts AnomalyDetection, All
@@ -3413,6 +3415,7 @@ module Aws::ElasticLoadBalancingV2
3413
3415
  # resp.target_health_descriptions[0].target.id #=> String
3414
3416
  # resp.target_health_descriptions[0].target.port #=> Integer
3415
3417
  # resp.target_health_descriptions[0].target.availability_zone #=> String
3418
+ # resp.target_health_descriptions[0].target.quic_server_id #=> String
3416
3419
  # resp.target_health_descriptions[0].health_check_port #=> String
3417
3420
  # resp.target_health_descriptions[0].target_health.state #=> String, one of "initial", "healthy", "unhealthy", "unhealthy.draining", "unused", "draining", "unavailable"
3418
3421
  # 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"
@@ -3927,7 +3930,7 @@ module Aws::ElasticLoadBalancingV2
3927
3930
  # resp = client.modify_listener({
3928
3931
  # listener_arn: "ListenerArn", # required
3929
3932
  # port: 1,
3930
- # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
3933
+ # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
3931
3934
  # ssl_policy: "SslPolicyName",
3932
3935
  # certificates: [
3933
3936
  # {
@@ -4022,7 +4025,7 @@ module Aws::ElasticLoadBalancingV2
4022
4025
  # resp.listeners[0].listener_arn #=> String
4023
4026
  # resp.listeners[0].load_balancer_arn #=> String
4024
4027
  # resp.listeners[0].port #=> Integer
4025
- # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
4028
+ # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
4026
4029
  # resp.listeners[0].certificates #=> Array
4027
4030
  # resp.listeners[0].certificates[0].certificate_arn #=> String
4028
4031
  # resp.listeners[0].certificates[0].is_default #=> Boolean
@@ -4710,7 +4713,7 @@ module Aws::ElasticLoadBalancingV2
4710
4713
  #
4711
4714
  # resp = client.modify_target_group({
4712
4715
  # target_group_arn: "TargetGroupArn", # required
4713
- # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
4716
+ # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
4714
4717
  # health_check_port: "HealthCheckPort",
4715
4718
  # health_check_path: "Path",
4716
4719
  # health_check_enabled: false,
@@ -4729,10 +4732,10 @@ module Aws::ElasticLoadBalancingV2
4729
4732
  # resp.target_groups #=> Array
4730
4733
  # resp.target_groups[0].target_group_arn #=> String
4731
4734
  # 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"
4735
+ # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
4733
4736
  # resp.target_groups[0].port #=> Integer
4734
4737
  # 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"
4738
+ # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
4736
4739
  # resp.target_groups[0].health_check_port #=> String
4737
4740
  # resp.target_groups[0].health_check_enabled #=> Boolean
4738
4741
  # resp.target_groups[0].health_check_interval_seconds #=> Integer
@@ -4957,6 +4960,7 @@ module Aws::ElasticLoadBalancingV2
4957
4960
  # id: "TargetId", # required
4958
4961
  # port: 1,
4959
4962
  # availability_zone: "ZoneName",
4963
+ # quic_server_id: "QuicServerId",
4960
4964
  # },
4961
4965
  # ],
4962
4966
  # })
@@ -5515,7 +5519,7 @@ module Aws::ElasticLoadBalancingV2
5515
5519
  tracer: tracer
5516
5520
  )
5517
5521
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
5518
- context[:gem_version] = '1.142.0'
5522
+ context[:gem_version] = '1.143.0'
5519
5523
  Seahorse::Client::Request.new(handlers, context)
5520
5524
  end
5521
5525
 
@@ -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')
@@ -1276,6 +1277,7 @@ module Aws::ElasticLoadBalancingV2
1276
1277
  TargetDescription.add_member(:id, Shapes::ShapeRef.new(shape: TargetId, required: true, location_name: "Id"))
1277
1278
  TargetDescription.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "Port"))
1278
1279
  TargetDescription.add_member(:availability_zone, Shapes::ShapeRef.new(shape: ZoneName, location_name: "AvailabilityZone"))
1280
+ TargetDescription.add_member(:quic_server_id, Shapes::ShapeRef.new(shape: QuicServerId, location_name: "QuicServerId"))
1279
1281
  TargetDescription.struct_class = Types::TargetDescription
1280
1282
 
1281
1283
  TargetDescriptions.member = Shapes::ShapeRef.new(shape: TargetDescription)
@@ -4284,12 +4284,25 @@ module Aws::ElasticLoadBalancingV2
4284
4284
  # only supported value is `all`.
4285
4285
  # @return [String]
4286
4286
  #
4287
+ # @!attribute [rw] quic_server_id
4288
+ # The server ID for the targets. This value is required if the
4289
+ # protocol is `QUIC` or `TCP_QUIC` and can't be used with other
4290
+ # protocols.
4291
+ #
4292
+ # The ID consists of the `0x` prefix followed by 16 hexadecimal
4293
+ # characters. Any letters must be lowercase. The value must be unique
4294
+ # at the listener level. You can't modify the server ID for a
4295
+ # registered target. You must deregister the target and then provide a
4296
+ # new server ID when you register the target again.
4297
+ # @return [String]
4298
+ #
4287
4299
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetDescription AWS API Documentation
4288
4300
  #
4289
4301
  class TargetDescription < Struct.new(
4290
4302
  :id,
4291
4303
  :port,
4292
- :availability_zone)
4304
+ :availability_zone,
4305
+ :quic_server_id)
4293
4306
  SENSITIVE = []
4294
4307
  include Aws::Structure
4295
4308
  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.143.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,
@@ -519,7 +519,8 @@ module Aws
519
519
  {
520
520
  id: ::String,
521
521
  port: ::Integer?,
522
- availability_zone: ::String?
522
+ availability_zone: ::String?,
523
+ quic_server_id: ::String?
523
524
  },
524
525
  ]
525
526
  ) -> _DeregisterTargetsResponseSuccess
@@ -685,7 +686,8 @@ module Aws
685
686
  {
686
687
  id: ::String,
687
688
  port: ::Integer?,
688
- availability_zone: ::String?
689
+ availability_zone: ::String?,
690
+ quic_server_id: ::String?
689
691
  },
690
692
  ],
691
693
  ?include: Array[("AnomalyDetection" | "All")]
@@ -803,7 +805,7 @@ module Aws
803
805
  def modify_listener: (
804
806
  listener_arn: ::String,
805
807
  ?port: ::Integer,
806
- ?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE"),
808
+ ?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC"),
807
809
  ?ssl_policy: ::String,
808
810
  ?certificates: Array[
809
811
  {
@@ -1061,7 +1063,7 @@ module Aws
1061
1063
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticLoadBalancingV2/Client.html#modify_target_group-instance_method
1062
1064
  def modify_target_group: (
1063
1065
  target_group_arn: ::String,
1064
- ?health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE"),
1066
+ ?health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC"),
1065
1067
  ?health_check_port: ::String,
1066
1068
  ?health_check_path: ::String,
1067
1069
  ?health_check_enabled: bool,
@@ -1115,7 +1117,8 @@ module Aws
1115
1117
  {
1116
1118
  id: ::String,
1117
1119
  port: ::Integer?,
1118
- availability_zone: ::String?
1120
+ availability_zone: ::String?,
1121
+ quic_server_id: ::String?
1119
1122
  },
1120
1123
  ]
1121
1124
  ) -> _RegisterTargetsResponseSuccess
@@ -1247,7 +1250,8 @@ module Aws
1247
1250
  {
1248
1251
  id: ::String,
1249
1252
  port: ::Integer?,
1250
- availability_zone: ::String?
1253
+ availability_zone: ::String?,
1254
+ quic_server_id: ::String?
1251
1255
  },
1252
1256
  ],
1253
1257
  ?include: Array[("AnomalyDetection" | "All")]
@@ -1259,7 +1263,8 @@ module Aws
1259
1263
  {
1260
1264
  id: ::String,
1261
1265
  port: ::Integer?,
1262
- availability_zone: ::String?
1266
+ availability_zone: ::String?,
1267
+ quic_server_id: ::String?
1263
1268
  },
1264
1269
  ],
1265
1270
  ?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
@@ -652,7 +652,7 @@ module Aws::ElasticLoadBalancingV2
652
652
  attr_accessor listener_arn: ::String
653
653
  attr_accessor load_balancer_arn: ::String
654
654
  attr_accessor port: ::Integer
655
- attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
655
+ attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
656
656
  attr_accessor certificates: ::Array[Types::Certificate]
657
657
  attr_accessor ssl_policy: ::String
658
658
  attr_accessor default_actions: ::Array[Types::Action]
@@ -765,7 +765,7 @@ module Aws::ElasticLoadBalancingV2
765
765
  class ModifyListenerInput
766
766
  attr_accessor listener_arn: ::String
767
767
  attr_accessor port: ::Integer
768
- attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
768
+ attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
769
769
  attr_accessor ssl_policy: ::String
770
770
  attr_accessor certificates: ::Array[Types::Certificate]
771
771
  attr_accessor default_actions: ::Array[Types::Action]
@@ -817,7 +817,7 @@ module Aws::ElasticLoadBalancingV2
817
817
 
818
818
  class ModifyTargetGroupInput
819
819
  attr_accessor target_group_arn: ::String
820
- attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
820
+ attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
821
821
  attr_accessor health_check_port: ::String
822
822
  attr_accessor health_check_path: ::String
823
823
  attr_accessor health_check_enabled: bool
@@ -1087,16 +1087,17 @@ module Aws::ElasticLoadBalancingV2
1087
1087
  attr_accessor id: ::String
1088
1088
  attr_accessor port: ::Integer
1089
1089
  attr_accessor availability_zone: ::String
1090
+ attr_accessor quic_server_id: ::String
1090
1091
  SENSITIVE: []
1091
1092
  end
1092
1093
 
1093
1094
  class TargetGroup
1094
1095
  attr_accessor target_group_arn: ::String
1095
1096
  attr_accessor target_group_name: ::String
1096
- attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
1097
+ attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
1097
1098
  attr_accessor port: ::Integer
1098
1099
  attr_accessor vpc_id: ::String
1099
- attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
1100
+ attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
1100
1101
  attr_accessor health_check_port: ::String
1101
1102
  attr_accessor health_check_enabled: bool
1102
1103
  attr_accessor health_check_interval_seconds: ::Integer
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.143.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services