aws-sdk-kinesis 1.91.0 → 1.93.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: d1e34426c44a4ce854921e54df13e6c6385ba4ef35fe40b60dd6f694ecac12b6
4
- data.tar.gz: 30648627d2cb5b8b263abb8e112e10ad430f0dbf9dbed11ecd6a46ea6740c063
3
+ metadata.gz: c8ebeb133cfbc99b64921556a0cb40dcbe657f6d621dd44df38cbaf978766a97
4
+ data.tar.gz: 0e6a2da85245c8df87b1c0f7f9689e865a16fbf8e7804f5e410c719605f04284
5
5
  SHA512:
6
- metadata.gz: 706993a2fcad531a516fd329badec84a0bac0afe713945bf512127f48493f71f683998957322b2709ebbdf0c3cb7f84edb60a883576973d0fc7cc680b9148dee
7
- data.tar.gz: 1748fe2127434e34100acfa1eab8f00e826277bc915ac473ac1e2cbc14de7562a32c10b7675957dcba56e99229847b7dfe5b6cfe353d39c7ddf4a4f852827e0e
6
+ metadata.gz: ef13eb7909167329d39d9ddc782ce3623952e2b8fb323e2b39e6e2ca0d72cf203fa82cf8b0a3bb59239cd43df4038031783c29d788e1f86cf4af53b311b59006
7
+ data.tar.gz: 81f7881f1868724eb67d9ed1bd25baa2936db2debfe9925efabcf846637f078bb31aa03251567b74014afa546f7576863c24fe54353b022f23b648c2a087d219
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.93.0 (2025-11-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.92.0 (2025-11-20)
10
+ ------------------
11
+
12
+ * Feature - Kinesis Data Streams now supports up to 50 Enhance Fan-out consumers for On-demand Advantage Streams. On-demand Standard and Provisioned streams will continue with the existing limit of 20 consumers for Enhanced Fan-out.
13
+
4
14
  1.91.0 (2025-11-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.93.0
@@ -745,7 +745,7 @@ module Aws::Kinesis
745
745
  tracer: tracer
746
746
  )
747
747
  context[:gem_name] = 'aws-sdk-kinesis'
748
- context[:gem_version] = '1.91.0'
748
+ context[:gem_version] = '1.93.0'
749
749
  Seahorse::Client::Request.new(handlers, context)
750
750
  end
751
751
 
@@ -2463,8 +2463,11 @@ module Aws::Kinesis
2463
2463
  # registered. Tags will take effect from the `CREATING` status of the
2464
2464
  # consumer.
2465
2465
  #
2466
- # You can register up to 20 consumers per stream. A given consumer can
2467
- # only be registered with one stream at a time.
2466
+ # With On-demand Advantage streams, you can register up to 50 consumers
2467
+ # per stream to use Enhanced Fan-out. With On-demand Standard and
2468
+ # Provisioned streams, you can register up to 20 consumers per stream to
2469
+ # use Enhanced Fan-out. A given consumer can only be registered with one
2470
+ # stream at a time.
2468
2471
  #
2469
2472
  # For an example of how to use this operation, see [Enhanced Fan-Out
2470
2473
  # Using the Kinesis Data Streams API][1].
@@ -3241,7 +3244,7 @@ module Aws::Kinesis
3241
3244
  tracer: tracer
3242
3245
  )
3243
3246
  context[:gem_name] = 'aws-sdk-kinesis'
3244
- context[:gem_version] = '1.91.0'
3247
+ context[:gem_version] = '1.93.0'
3245
3248
  Seahorse::Client::Request.new(handlers, context)
3246
3249
  end
3247
3250
 
@@ -27,6 +27,22 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:kinesis)
27
27
  #
28
28
  # See {Client} for more information.
29
29
  #
30
+ # # Async Client
31
+ #
32
+ # The {AsyncClient} class provides one asynchronous method for each API operation.
33
+ # Operation methods each accept a hash of request parameters and return an async
34
+ # response. For streaming operations, you can signal input events and register
35
+ # output event callbacks before waiting on the response.
36
+ #
37
+ # kinesis = Aws::Kinesis::AsyncClient.new
38
+ # resp = kinesis.add_tags_to_stream(
39
+ # # params and input stream
40
+ # ) do |output_stream|
41
+ # # register callbacks for events
42
+ # end
43
+ #
44
+ # See {AsyncClient} for more information.
45
+ #
30
46
  # # Errors
31
47
  #
32
48
  # Errors returned from Amazon Kinesis are defined in the
@@ -57,7 +73,7 @@ module Aws::Kinesis
57
73
  autoload :AsyncClient, 'aws-sdk-kinesis/async_client'
58
74
  autoload :EventStreams, 'aws-sdk-kinesis/event_streams'
59
75
 
60
- GEM_VERSION = '1.91.0'
76
+ GEM_VERSION = '1.93.0'
61
77
 
62
78
  end
63
79
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kinesis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.91.0
4
+ version: 1.93.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.234.0
21
+ version: 3.239.1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.234.0
31
+ version: 3.239.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement