aws-sdk-iot 1.164.0 → 1.165.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: ef093222debc73570b80d619f6def976666b6dff00bde8804a850b80642ab4af
4
- data.tar.gz: 8d6688ae605446de2928ae26ff43d59f0375299418f017bd2de75b67744552b6
3
+ metadata.gz: 56c765aa83b7ba7ee4c84873fff4e5206c4e03046a22fad13e0e6b54631c8140
4
+ data.tar.gz: 415508fb95354ec0a1cc940f6b5d7f9fd5b466c201b854c6f038815652b78187
5
5
  SHA512:
6
- metadata.gz: 84db9de1f500393878f75c608bfaf57569c6c042212c6f482a0301f4129be0e2296a608d9531b596287a2694048c0a7cb966c4082ca53f003f8aec208769f27b
7
- data.tar.gz: ba720282ebcf3d11fc4c56ea633fefc69dd298c06a371fc6a3e5f16bf38854f0624a0c6221b372108709abcae223ab2fb4678acc10af161e1f6a475b85067970
6
+ metadata.gz: 3fced37fd285f316249000e2bd34496916a1be4b4986b712fbe22b9b9a063f031bd74c72d95d9ae7402fe63197904fff0dfa46e6ecd13284c464141739e51ac4
7
+ data.tar.gz: ff56056c76d7747dcc350303f6f3c09f24af85f8a08ecf504439adf9cdf7de7e814947bbbf0f0d93175c3c3384ddf19252f11efa0bf7ea3d20938f8e7de4ff27
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.165.0 (2026-05-01)
5
+ ------------------
6
+
7
+ * Feature - AWS IoT HTTP rule actions now support cross-topic batching, combining messages from different MQTT topics into single HTTP requests.
8
+
4
9
  1.164.0 (2026-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.164.0
1
+ 1.165.0
@@ -4105,6 +4105,7 @@ module Aws::IoT
4105
4105
  # max_batch_open_ms: 1,
4106
4106
  # max_batch_size: 1,
4107
4107
  # max_batch_size_bytes: 1,
4108
+ # batch_across_topics: false,
4108
4109
  # },
4109
4110
  # },
4110
4111
  # kafka: {
@@ -4320,6 +4321,7 @@ module Aws::IoT
4320
4321
  # max_batch_open_ms: 1,
4321
4322
  # max_batch_size: 1,
4322
4323
  # max_batch_size_bytes: 1,
4324
+ # batch_across_topics: false,
4323
4325
  # },
4324
4326
  # },
4325
4327
  # kafka: {
@@ -8811,6 +8813,7 @@ module Aws::IoT
8811
8813
  # resp.rule.actions[0].http.batch_config.max_batch_open_ms #=> Integer
8812
8814
  # resp.rule.actions[0].http.batch_config.max_batch_size #=> Integer
8813
8815
  # resp.rule.actions[0].http.batch_config.max_batch_size_bytes #=> Integer
8816
+ # resp.rule.actions[0].http.batch_config.batch_across_topics #=> Boolean
8814
8817
  # resp.rule.actions[0].kafka.destination_arn #=> String
8815
8818
  # resp.rule.actions[0].kafka.topic #=> String
8816
8819
  # resp.rule.actions[0].kafka.key #=> String
@@ -8940,6 +8943,7 @@ module Aws::IoT
8940
8943
  # resp.rule.error_action.http.batch_config.max_batch_open_ms #=> Integer
8941
8944
  # resp.rule.error_action.http.batch_config.max_batch_size #=> Integer
8942
8945
  # resp.rule.error_action.http.batch_config.max_batch_size_bytes #=> Integer
8946
+ # resp.rule.error_action.http.batch_config.batch_across_topics #=> Boolean
8943
8947
  # resp.rule.error_action.kafka.destination_arn #=> String
8944
8948
  # resp.rule.error_action.kafka.topic #=> String
8945
8949
  # resp.rule.error_action.kafka.key #=> String
@@ -13527,6 +13531,7 @@ module Aws::IoT
13527
13531
  # max_batch_open_ms: 1,
13528
13532
  # max_batch_size: 1,
13529
13533
  # max_batch_size_bytes: 1,
13534
+ # batch_across_topics: false,
13530
13535
  # },
13531
13536
  # },
13532
13537
  # kafka: {
@@ -13742,6 +13747,7 @@ module Aws::IoT
13742
13747
  # max_batch_open_ms: 1,
13743
13748
  # max_batch_size: 1,
13744
13749
  # max_batch_size_bytes: 1,
13750
+ # batch_across_topics: false,
13745
13751
  # },
13746
13752
  # },
13747
13753
  # kafka: {
@@ -16658,7 +16664,7 @@ module Aws::IoT
16658
16664
  tracer: tracer
16659
16665
  )
16660
16666
  context[:gem_name] = 'aws-sdk-iot'
16661
- context[:gem_version] = '1.164.0'
16667
+ context[:gem_version] = '1.165.0'
16662
16668
  Seahorse::Client::Request.new(handlers, context)
16663
16669
  end
16664
16670
 
@@ -150,6 +150,7 @@ module Aws::IoT
150
150
  AwsJobTimeoutConfig = Shapes::StructureShape.new(name: 'AwsJobTimeoutConfig')
151
151
  AwsJobTimeoutInProgressTimeoutInMinutes = Shapes::IntegerShape.new(name: 'AwsJobTimeoutInProgressTimeoutInMinutes')
152
152
  AwsJsonSubstitutionCommandPreprocessorConfig = Shapes::StructureShape.new(name: 'AwsJsonSubstitutionCommandPreprocessorConfig')
153
+ BatchAcrossTopics = Shapes::BooleanShape.new(name: 'BatchAcrossTopics')
153
154
  BatchConfig = Shapes::StructureShape.new(name: 'BatchConfig')
154
155
  BatchMode = Shapes::BooleanShape.new(name: 'BatchMode')
155
156
  BeforeSubstitutionFlag = Shapes::BooleanShape.new(name: 'BeforeSubstitutionFlag')
@@ -1846,6 +1847,7 @@ module Aws::IoT
1846
1847
  BatchConfig.add_member(:max_batch_open_ms, Shapes::ShapeRef.new(shape: MaxBatchOpenMs, location_name: "maxBatchOpenMs"))
1847
1848
  BatchConfig.add_member(:max_batch_size, Shapes::ShapeRef.new(shape: MaxBatchSize, location_name: "maxBatchSize"))
1848
1849
  BatchConfig.add_member(:max_batch_size_bytes, Shapes::ShapeRef.new(shape: MaxBatchSizeBytes, location_name: "maxBatchSizeBytes"))
1850
+ BatchConfig.add_member(:batch_across_topics, Shapes::ShapeRef.new(shape: BatchAcrossTopics, location_name: "batchAcrossTopics"))
1849
1851
  BatchConfig.struct_class = Types::BatchConfig
1850
1852
 
1851
1853
  Behavior.add_member(:name, Shapes::ShapeRef.new(shape: BehaviorName, required: true, location_name: "name"))
@@ -1391,10 +1391,17 @@ module Aws::IoT
1391
1391
  # Maximum size of a message batch, in bytes.
1392
1392
  # @return [Integer]
1393
1393
  #
1394
+ # @!attribute [rw] batch_across_topics
1395
+ # Whether to allow batching messages from different MQTT topics into a
1396
+ # single HTTP request. By default, only messages from the same topic
1397
+ # are batched together. The default value is `false`.
1398
+ # @return [Boolean]
1399
+ #
1394
1400
  class BatchConfig < Struct.new(
1395
1401
  :max_batch_open_ms,
1396
1402
  :max_batch_size,
1397
- :max_batch_size_bytes)
1403
+ :max_batch_size_bytes,
1404
+ :batch_across_topics)
1398
1405
  SENSITIVE = []
1399
1406
  include Aws::Structure
1400
1407
  end
data/lib/aws-sdk-iot.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::IoT
54
54
  autoload :EndpointProvider, 'aws-sdk-iot/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-iot/endpoints'
56
56
 
57
- GEM_VERSION = '1.164.0'
57
+ GEM_VERSION = '1.165.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1395,7 +1395,8 @@ module Aws
1395
1395
  batch_config: {
1396
1396
  max_batch_open_ms: ::Integer?,
1397
1397
  max_batch_size: ::Integer?,
1398
- max_batch_size_bytes: ::Integer?
1398
+ max_batch_size_bytes: ::Integer?,
1399
+ batch_across_topics: bool?
1399
1400
  }?
1400
1401
  }?,
1401
1402
  kafka: {
@@ -1608,7 +1609,8 @@ module Aws
1608
1609
  batch_config: {
1609
1610
  max_batch_open_ms: ::Integer?,
1610
1611
  max_batch_size: ::Integer?,
1611
- max_batch_size_bytes: ::Integer?
1612
+ max_batch_size_bytes: ::Integer?,
1613
+ batch_across_topics: bool?
1612
1614
  }?
1613
1615
  }?,
1614
1616
  kafka: {
@@ -4143,7 +4145,8 @@ module Aws
4143
4145
  batch_config: {
4144
4146
  max_batch_open_ms: ::Integer?,
4145
4147
  max_batch_size: ::Integer?,
4146
- max_batch_size_bytes: ::Integer?
4148
+ max_batch_size_bytes: ::Integer?,
4149
+ batch_across_topics: bool?
4147
4150
  }?
4148
4151
  }?,
4149
4152
  kafka: {
@@ -4356,7 +4359,8 @@ module Aws
4356
4359
  batch_config: {
4357
4360
  max_batch_open_ms: ::Integer?,
4358
4361
  max_batch_size: ::Integer?,
4359
- max_batch_size_bytes: ::Integer?
4362
+ max_batch_size_bytes: ::Integer?,
4363
+ batch_across_topics: bool?
4360
4364
  }?
4361
4365
  }?,
4362
4366
  kafka: {
data/sig/types.rbs CHANGED
@@ -377,6 +377,7 @@ module Aws::IoT
377
377
  attr_accessor max_batch_open_ms: ::Integer
378
378
  attr_accessor max_batch_size: ::Integer
379
379
  attr_accessor max_batch_size_bytes: ::Integer
380
+ attr_accessor batch_across_topics: bool
380
381
  SENSITIVE: []
381
382
  end
382
383
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iot
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.164.0
4
+ version: 1.165.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services