aws-sdk-rtbfabric 1.9.0 → 1.10.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: 2ddb62786fa8712b507190bde2e8ea3bf19d040f2b1e26c002cb63f83154125c
4
- data.tar.gz: ebeec92f52ff481ed3e314023488370eb1d52909602afbcf183a0a6a96443f91
3
+ metadata.gz: 93e573be3aeabb9e8b7070044c037c99fe7f671c08a528782c07371458a9b4ee
4
+ data.tar.gz: bec91e4792cdb6a468887318ae104c96a887e69591c1190fbe93bf2e2a82fe21
5
5
  SHA512:
6
- metadata.gz: 2138639f6fdd6c2e8622f4f5e3486dc799d19170ba3bbc02dc06e2b82995fa10f0e151abdc95ee267632d517c6f60ab102cacac528464d8b78babaf3a39eb77a
7
- data.tar.gz: c4372bd2f2c00cecded4bfc4ac7191da6a521fb43f8e85726c3c8eded3c4f97191a4596d637de6bab3dbc4af1eb5e617bac58cffe3eb464e62a64877be3f2de3
6
+ metadata.gz: e5c926ebb71b911be7c6ba8ddd5e0796c68a4f0a01d5235c4e8a0c5d0adbcf9ca3dcfb2af93e8454626d092bbfd3f5b3aeed21937e5bbec0990e6b14e4ffed67
7
+ data.tar.gz: bee2ce3b6e221a4afeb0290ab38fcf37bf7e78efa359acf4dd77aa53b0ff6dd3e5427a57773e948524f93657d4d9eeb94678d29c11c1ef6892d0d5e55326351f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2026-04-10)
5
+ ------------------
6
+
7
+ * Feature - Adds optional health check configuration for Responder Gateways with ASG Managed Endpoints. When provided, RTB Fabric continuously probes customers' instance IPs and routes traffic only to healthy ones, reducing errors during deployments, scaling events, and instance failures.
8
+
4
9
  1.9.0 (2026-04-07)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.10.0
@@ -1187,6 +1187,16 @@ module Aws::RTBFabric
1187
1187
  # auto_scaling_groups: {
1188
1188
  # auto_scaling_group_names: ["AutoScalingGroupName"], # required
1189
1189
  # role_arn: "AutoScalingGroupsConfigurationRoleArnString", # required
1190
+ # health_check_config: {
1191
+ # port: 1, # required
1192
+ # path: "HealthCheckConfigPathString", # required
1193
+ # protocol: "HTTP", # accepts HTTP, HTTPS
1194
+ # timeout_ms: 1,
1195
+ # interval_seconds: 1,
1196
+ # status_code_matcher: "StatusCodeMatcher",
1197
+ # healthy_threshold_count: 1,
1198
+ # unhealthy_threshold_count: 1,
1199
+ # },
1190
1200
  # },
1191
1201
  # eks_endpoints: {
1192
1202
  # endpoints_resource_name: "KubernetesEndpointsResourceName", # required
@@ -2021,6 +2031,14 @@ module Aws::RTBFabric
2021
2031
  # resp.managed_endpoint_configuration.auto_scaling_groups.auto_scaling_group_names #=> Array
2022
2032
  # resp.managed_endpoint_configuration.auto_scaling_groups.auto_scaling_group_names[0] #=> String
2023
2033
  # resp.managed_endpoint_configuration.auto_scaling_groups.role_arn #=> String
2034
+ # resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.port #=> Integer
2035
+ # resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.path #=> String
2036
+ # resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.protocol #=> String, one of "HTTP", "HTTPS"
2037
+ # resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.timeout_ms #=> Integer
2038
+ # resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.interval_seconds #=> Integer
2039
+ # resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.status_code_matcher #=> String
2040
+ # resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.healthy_threshold_count #=> Integer
2041
+ # resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.unhealthy_threshold_count #=> Integer
2024
2042
  # resp.managed_endpoint_configuration.eks_endpoints.endpoints_resource_name #=> String
2025
2043
  # resp.managed_endpoint_configuration.eks_endpoints.endpoints_resource_namespace #=> String
2026
2044
  # resp.managed_endpoint_configuration.eks_endpoints.cluster_api_server_endpoint_uri #=> String
@@ -2928,6 +2946,16 @@ module Aws::RTBFabric
2928
2946
  # auto_scaling_groups: {
2929
2947
  # auto_scaling_group_names: ["AutoScalingGroupName"], # required
2930
2948
  # role_arn: "AutoScalingGroupsConfigurationRoleArnString", # required
2949
+ # health_check_config: {
2950
+ # port: 1, # required
2951
+ # path: "HealthCheckConfigPathString", # required
2952
+ # protocol: "HTTP", # accepts HTTP, HTTPS
2953
+ # timeout_ms: 1,
2954
+ # interval_seconds: 1,
2955
+ # status_code_matcher: "StatusCodeMatcher",
2956
+ # healthy_threshold_count: 1,
2957
+ # unhealthy_threshold_count: 1,
2958
+ # },
2931
2959
  # },
2932
2960
  # eks_endpoints: {
2933
2961
  # endpoints_resource_name: "KubernetesEndpointsResourceName", # required
@@ -2975,7 +3003,7 @@ module Aws::RTBFabric
2975
3003
  tracer: tracer
2976
3004
  )
2977
3005
  context[:gem_name] = 'aws-sdk-rtbfabric'
2978
- context[:gem_version] = '1.9.0'
3006
+ context[:gem_version] = '1.10.0'
2979
3007
  Seahorse::Client::Request.new(handlers, context)
2980
3008
  end
2981
3009
 
@@ -89,6 +89,13 @@ module Aws::RTBFabric
89
89
  GetResponderGatewayResponseSecurityGroupIdsList = Shapes::ListShape.new(name: 'GetResponderGatewayResponseSecurityGroupIdsList')
90
90
  GetResponderGatewayResponseSubnetIdsList = Shapes::ListShape.new(name: 'GetResponderGatewayResponseSubnetIdsList')
91
91
  HeaderTagAction = Shapes::StructureShape.new(name: 'HeaderTagAction')
92
+ HealthCheckConfig = Shapes::StructureShape.new(name: 'HealthCheckConfig')
93
+ HealthCheckConfigHealthyThresholdCountInteger = Shapes::IntegerShape.new(name: 'HealthCheckConfigHealthyThresholdCountInteger')
94
+ HealthCheckConfigIntervalSecondsInteger = Shapes::IntegerShape.new(name: 'HealthCheckConfigIntervalSecondsInteger')
95
+ HealthCheckConfigPathString = Shapes::StringShape.new(name: 'HealthCheckConfigPathString')
96
+ HealthCheckConfigPortInteger = Shapes::IntegerShape.new(name: 'HealthCheckConfigPortInteger')
97
+ HealthCheckConfigTimeoutMsInteger = Shapes::IntegerShape.new(name: 'HealthCheckConfigTimeoutMsInteger')
98
+ HealthCheckConfigUnhealthyThresholdCountInteger = Shapes::IntegerShape.new(name: 'HealthCheckConfigUnhealthyThresholdCountInteger')
92
99
  Integer = Shapes::IntegerShape.new(name: 'Integer')
93
100
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
94
101
  KubernetesClusterName = Shapes::StringShape.new(name: 'KubernetesClusterName')
@@ -147,6 +154,7 @@ module Aws::RTBFabric
147
154
  RtbTaggableResourceArn = Shapes::StringShape.new(name: 'RtbTaggableResourceArn')
148
155
  SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
149
156
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
157
+ StatusCodeMatcher = Shapes::StringShape.new(name: 'StatusCodeMatcher')
150
158
  String = Shapes::StringShape.new(name: 'String')
151
159
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
152
160
  TagKey = Shapes::StringShape.new(name: 'TagKey')
@@ -213,6 +221,7 @@ module Aws::RTBFabric
213
221
 
214
222
  AutoScalingGroupsConfiguration.add_member(:auto_scaling_group_names, Shapes::ShapeRef.new(shape: AutoScalingGroupNameList, required: true, location_name: "autoScalingGroupNames"))
215
223
  AutoScalingGroupsConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: AutoScalingGroupsConfigurationRoleArnString, required: true, location_name: "roleArn"))
224
+ AutoScalingGroupsConfiguration.add_member(:health_check_config, Shapes::ShapeRef.new(shape: HealthCheckConfig, location_name: "healthCheckConfig"))
216
225
  AutoScalingGroupsConfiguration.struct_class = Types::AutoScalingGroupsConfiguration
217
226
 
218
227
  CertificateAuthorityCertificates.member = Shapes::ShapeRef.new(shape: Base64EncodedCertificateChain)
@@ -486,6 +495,16 @@ module Aws::RTBFabric
486
495
  HeaderTagAction.add_member(:value, Shapes::ShapeRef.new(shape: String, required: true, location_name: "value"))
487
496
  HeaderTagAction.struct_class = Types::HeaderTagAction
488
497
 
498
+ HealthCheckConfig.add_member(:port, Shapes::ShapeRef.new(shape: HealthCheckConfigPortInteger, required: true, location_name: "port"))
499
+ HealthCheckConfig.add_member(:path, Shapes::ShapeRef.new(shape: HealthCheckConfigPathString, required: true, location_name: "path"))
500
+ HealthCheckConfig.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "protocol"))
501
+ HealthCheckConfig.add_member(:timeout_ms, Shapes::ShapeRef.new(shape: HealthCheckConfigTimeoutMsInteger, location_name: "timeoutMs"))
502
+ HealthCheckConfig.add_member(:interval_seconds, Shapes::ShapeRef.new(shape: HealthCheckConfigIntervalSecondsInteger, location_name: "intervalSeconds"))
503
+ HealthCheckConfig.add_member(:status_code_matcher, Shapes::ShapeRef.new(shape: StatusCodeMatcher, location_name: "statusCodeMatcher"))
504
+ HealthCheckConfig.add_member(:healthy_threshold_count, Shapes::ShapeRef.new(shape: HealthCheckConfigHealthyThresholdCountInteger, location_name: "healthyThresholdCount"))
505
+ HealthCheckConfig.add_member(:unhealthy_threshold_count, Shapes::ShapeRef.new(shape: HealthCheckConfigUnhealthyThresholdCountInteger, location_name: "unhealthyThresholdCount"))
506
+ HealthCheckConfig.struct_class = Types::HealthCheckConfig
507
+
489
508
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
490
509
  InternalServerException.struct_class = Types::InternalServerException
491
510
 
@@ -162,11 +162,17 @@ module Aws::RTBFabric
162
162
  # The role ARN of the auto scaling group.
163
163
  # @return [String]
164
164
  #
165
+ # @!attribute [rw] health_check_config
166
+ # The health check configuration for the Auto Scaling group managed
167
+ # endpoint.
168
+ # @return [Types::HealthCheckConfig]
169
+ #
165
170
  # @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/AutoScalingGroupsConfiguration AWS API Documentation
166
171
  #
167
172
  class AutoScalingGroupsConfiguration < Struct.new(
168
173
  :auto_scaling_group_names,
169
- :role_arn)
174
+ :role_arn,
175
+ :health_check_config)
170
176
  SENSITIVE = []
171
177
  include Aws::Structure
172
178
  end
@@ -1315,6 +1321,65 @@ module Aws::RTBFabric
1315
1321
  include Aws::Structure
1316
1322
  end
1317
1323
 
1324
+ # The health check configuration for a managed endpoint. Defines how the
1325
+ # service probes instances in the Auto Scaling group to determine their
1326
+ # health status.
1327
+ #
1328
+ # @!attribute [rw] port
1329
+ # The port to use for health check probes. Valid range is 80 to 65535.
1330
+ # @return [Integer]
1331
+ #
1332
+ # @!attribute [rw] path
1333
+ # The destination path for the health check request. Must start with
1334
+ # `/`.
1335
+ # @return [String]
1336
+ #
1337
+ # @!attribute [rw] protocol
1338
+ # The protocol to use for health check probes.
1339
+ # @return [String]
1340
+ #
1341
+ # @!attribute [rw] timeout_ms
1342
+ # The timeout for each health check probe, in milliseconds. Valid
1343
+ # range is 100 to 5000.
1344
+ # @return [Integer]
1345
+ #
1346
+ # @!attribute [rw] interval_seconds
1347
+ # The interval between health check probes, in seconds. Valid range is
1348
+ # 5 to 60.
1349
+ # @return [Integer]
1350
+ #
1351
+ # @!attribute [rw] status_code_matcher
1352
+ # The expected HTTP status code or status code pattern from healthy
1353
+ # instances. Supports a single code (for example, `200`), a range (for
1354
+ # example, `200-299`), or a comma-separated list (for example,
1355
+ # `200,204`).
1356
+ # @return [String]
1357
+ #
1358
+ # @!attribute [rw] healthy_threshold_count
1359
+ # The number of consecutive successful health checks required before
1360
+ # an instance is considered healthy. Valid range is 2 to 10.
1361
+ # @return [Integer]
1362
+ #
1363
+ # @!attribute [rw] unhealthy_threshold_count
1364
+ # The number of consecutive failed health checks required before an
1365
+ # instance is considered unhealthy. Valid range is 2 to 10.
1366
+ # @return [Integer]
1367
+ #
1368
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/HealthCheckConfig AWS API Documentation
1369
+ #
1370
+ class HealthCheckConfig < Struct.new(
1371
+ :port,
1372
+ :path,
1373
+ :protocol,
1374
+ :timeout_ms,
1375
+ :interval_seconds,
1376
+ :status_code_matcher,
1377
+ :healthy_threshold_count,
1378
+ :unhealthy_threshold_count)
1379
+ SENSITIVE = []
1380
+ include Aws::Structure
1381
+ end
1382
+
1318
1383
  # The request could not be completed because of an internal server
1319
1384
  # error. Try your call again.
1320
1385
  #
@@ -55,7 +55,7 @@ module Aws::RTBFabric
55
55
  autoload :EndpointProvider, 'aws-sdk-rtbfabric/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-rtbfabric/endpoints'
57
57
 
58
- GEM_VERSION = '1.9.0'
58
+ GEM_VERSION = '1.10.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -274,7 +274,17 @@ module Aws
274
274
  ?managed_endpoint_configuration: {
275
275
  auto_scaling_groups: {
276
276
  auto_scaling_group_names: Array[::String],
277
- role_arn: ::String
277
+ role_arn: ::String,
278
+ health_check_config: {
279
+ port: ::Integer,
280
+ path: ::String,
281
+ protocol: ("HTTP" | "HTTPS")?,
282
+ timeout_ms: ::Integer?,
283
+ interval_seconds: ::Integer?,
284
+ status_code_matcher: ::String?,
285
+ healthy_threshold_count: ::Integer?,
286
+ unhealthy_threshold_count: ::Integer?
287
+ }?
278
288
  }?,
279
289
  eks_endpoints: {
280
290
  endpoints_resource_name: ::String,
@@ -665,7 +675,17 @@ module Aws
665
675
  ?managed_endpoint_configuration: {
666
676
  auto_scaling_groups: {
667
677
  auto_scaling_group_names: Array[::String],
668
- role_arn: ::String
678
+ role_arn: ::String,
679
+ health_check_config: {
680
+ port: ::Integer,
681
+ path: ::String,
682
+ protocol: ("HTTP" | "HTTPS")?,
683
+ timeout_ms: ::Integer?,
684
+ interval_seconds: ::Integer?,
685
+ status_code_matcher: ::String?,
686
+ healthy_threshold_count: ::Integer?,
687
+ unhealthy_threshold_count: ::Integer?
688
+ }?
669
689
  }?,
670
690
  eks_endpoints: {
671
691
  endpoints_resource_name: ::String,
data/sig/types.rbs CHANGED
@@ -55,6 +55,7 @@ module Aws::RTBFabric
55
55
  class AutoScalingGroupsConfiguration
56
56
  attr_accessor auto_scaling_group_names: ::Array[::String]
57
57
  attr_accessor role_arn: ::String
58
+ attr_accessor health_check_config: Types::HealthCheckConfig
58
59
  SENSITIVE: []
59
60
  end
60
61
 
@@ -371,6 +372,18 @@ module Aws::RTBFabric
371
372
  SENSITIVE: []
372
373
  end
373
374
 
375
+ class HealthCheckConfig
376
+ attr_accessor port: ::Integer
377
+ attr_accessor path: ::String
378
+ attr_accessor protocol: ("HTTP" | "HTTPS")
379
+ attr_accessor timeout_ms: ::Integer
380
+ attr_accessor interval_seconds: ::Integer
381
+ attr_accessor status_code_matcher: ::String
382
+ attr_accessor healthy_threshold_count: ::Integer
383
+ attr_accessor unhealthy_threshold_count: ::Integer
384
+ SENSITIVE: []
385
+ end
386
+
374
387
  class InternalServerException
375
388
  attr_accessor message: ::String
376
389
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rtbfabric
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services