aws-sdk-kinesis 1.91.0 → 1.92.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kinesis/async_client.rb +1 -1
- data/lib/aws-sdk-kinesis/client.rb +6 -3
- data/lib/aws-sdk-kinesis.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d0680d12b6824aa26d77b8bfa1a394b3f726df311a9413dab980ed45c779540c
|
|
4
|
+
data.tar.gz: 71ec94e0c4383de0546d12ac9e8ac4126c5455ff6e23df402bb906c21b65f5ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2abff094ad038244ad8c734bc1c33da7fbbc101f27d669cfa18db928f2990eb030aa40b19c11442e90e8c004df8132a9c1eeabe17e31c3ee6e14d4b1ae6ef5f9
|
|
7
|
+
data.tar.gz: b74221ce3b8e5d9128e6fdfe9e6353ac15392497de6cdbfc22a35293c13f4ad3220f87600f84e44c304da8e089ffc118828af1839bdc5a4abc57eb7d892d8457
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.92.0 (2025-11-20)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* 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.
|
|
8
|
+
|
|
4
9
|
1.91.0 (2025-11-03)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.92.0
|
|
@@ -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
|
-
#
|
|
2467
|
-
#
|
|
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.
|
|
3247
|
+
context[:gem_version] = '1.92.0'
|
|
3245
3248
|
Seahorse::Client::Request.new(handlers, context)
|
|
3246
3249
|
end
|
|
3247
3250
|
|
data/lib/aws-sdk-kinesis.rb
CHANGED