aws-sdk-kinesis 1.96.0 → 1.97.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 +5 -1
- data/lib/aws-sdk-kinesis/client.rb +135 -2
- data/lib/aws-sdk-kinesis/client_api.rb +36 -0
- data/lib/aws-sdk-kinesis/endpoint_parameters.rb +8 -0
- data/lib/aws-sdk-kinesis/endpoint_provider.rb +75 -0
- data/lib/aws-sdk-kinesis/endpoints.rb +34 -0
- data/lib/aws-sdk-kinesis/types.rb +205 -30
- data/lib/aws-sdk-kinesis.rb +1 -1
- data/sig/async_client.rbs +1 -0
- data/sig/client.rbs +65 -30
- data/sig/types.rbs +35 -0
- data/sig/waiters.rbs +4 -2
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -86,7 +86,8 @@ module Aws
|
|
|
86
86
|
def add_tags_to_stream: (
|
|
87
87
|
?stream_name: ::String,
|
|
88
88
|
tags: Hash[::String, ::String],
|
|
89
|
-
?stream_arn: ::String
|
|
89
|
+
?stream_arn: ::String,
|
|
90
|
+
?stream_id: ::String
|
|
90
91
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
91
92
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
92
93
|
|
|
@@ -107,13 +108,15 @@ module Aws
|
|
|
107
108
|
def decrease_stream_retention_period: (
|
|
108
109
|
?stream_name: ::String,
|
|
109
110
|
retention_period_hours: ::Integer,
|
|
110
|
-
?stream_arn: ::String
|
|
111
|
+
?stream_arn: ::String,
|
|
112
|
+
?stream_id: ::String
|
|
111
113
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
112
114
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
113
115
|
|
|
114
116
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kinesis/Client.html#delete_resource_policy-instance_method
|
|
115
117
|
def delete_resource_policy: (
|
|
116
|
-
resource_arn: ::String
|
|
118
|
+
resource_arn: ::String,
|
|
119
|
+
?stream_id: ::String
|
|
117
120
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
118
121
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
119
122
|
|
|
@@ -121,7 +124,8 @@ module Aws
|
|
|
121
124
|
def delete_stream: (
|
|
122
125
|
?stream_name: ::String,
|
|
123
126
|
?enforce_consumer_deletion: bool,
|
|
124
|
-
?stream_arn: ::String
|
|
127
|
+
?stream_arn: ::String,
|
|
128
|
+
?stream_id: ::String
|
|
125
129
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
126
130
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
127
131
|
|
|
@@ -129,7 +133,8 @@ module Aws
|
|
|
129
133
|
def deregister_stream_consumer: (
|
|
130
134
|
?stream_arn: ::String,
|
|
131
135
|
?consumer_name: ::String,
|
|
132
|
-
?consumer_arn: ::String
|
|
136
|
+
?consumer_arn: ::String,
|
|
137
|
+
?stream_id: ::String
|
|
133
138
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
134
139
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
135
140
|
|
|
@@ -163,7 +168,8 @@ module Aws
|
|
|
163
168
|
?stream_name: ::String,
|
|
164
169
|
?limit: ::Integer,
|
|
165
170
|
?exclusive_start_shard_id: ::String,
|
|
166
|
-
?stream_arn: ::String
|
|
171
|
+
?stream_arn: ::String,
|
|
172
|
+
?stream_id: ::String
|
|
167
173
|
) -> _DescribeStreamResponseSuccess
|
|
168
174
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStreamResponseSuccess
|
|
169
175
|
|
|
@@ -175,7 +181,8 @@ module Aws
|
|
|
175
181
|
def describe_stream_consumer: (
|
|
176
182
|
?stream_arn: ::String,
|
|
177
183
|
?consumer_name: ::String,
|
|
178
|
-
?consumer_arn: ::String
|
|
184
|
+
?consumer_arn: ::String,
|
|
185
|
+
?stream_id: ::String
|
|
179
186
|
) -> _DescribeStreamConsumerResponseSuccess
|
|
180
187
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStreamConsumerResponseSuccess
|
|
181
188
|
|
|
@@ -186,7 +193,8 @@ module Aws
|
|
|
186
193
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kinesis/Client.html#describe_stream_summary-instance_method
|
|
187
194
|
def describe_stream_summary: (
|
|
188
195
|
?stream_name: ::String,
|
|
189
|
-
?stream_arn: ::String
|
|
196
|
+
?stream_arn: ::String,
|
|
197
|
+
?stream_id: ::String
|
|
190
198
|
) -> _DescribeStreamSummaryResponseSuccess
|
|
191
199
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStreamSummaryResponseSuccess
|
|
192
200
|
|
|
@@ -201,7 +209,8 @@ module Aws
|
|
|
201
209
|
def disable_enhanced_monitoring: (
|
|
202
210
|
?stream_name: ::String,
|
|
203
211
|
shard_level_metrics: Array[("IncomingBytes" | "IncomingRecords" | "OutgoingBytes" | "OutgoingRecords" | "WriteProvisionedThroughputExceeded" | "ReadProvisionedThroughputExceeded" | "IteratorAgeMilliseconds" | "ALL")],
|
|
204
|
-
?stream_arn: ::String
|
|
212
|
+
?stream_arn: ::String,
|
|
213
|
+
?stream_id: ::String
|
|
205
214
|
) -> _DisableEnhancedMonitoringResponseSuccess
|
|
206
215
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisableEnhancedMonitoringResponseSuccess
|
|
207
216
|
|
|
@@ -216,7 +225,8 @@ module Aws
|
|
|
216
225
|
def enable_enhanced_monitoring: (
|
|
217
226
|
?stream_name: ::String,
|
|
218
227
|
shard_level_metrics: Array[("IncomingBytes" | "IncomingRecords" | "OutgoingBytes" | "OutgoingRecords" | "WriteProvisionedThroughputExceeded" | "ReadProvisionedThroughputExceeded" | "IteratorAgeMilliseconds" | "ALL")],
|
|
219
|
-
?stream_arn: ::String
|
|
228
|
+
?stream_arn: ::String,
|
|
229
|
+
?stream_id: ::String
|
|
220
230
|
) -> _EnableEnhancedMonitoringResponseSuccess
|
|
221
231
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnableEnhancedMonitoringResponseSuccess
|
|
222
232
|
|
|
@@ -231,7 +241,8 @@ module Aws
|
|
|
231
241
|
def get_records: (
|
|
232
242
|
shard_iterator: ::String,
|
|
233
243
|
?limit: ::Integer,
|
|
234
|
-
?stream_arn: ::String
|
|
244
|
+
?stream_arn: ::String,
|
|
245
|
+
?stream_id: ::String
|
|
235
246
|
) -> _GetRecordsResponseSuccess
|
|
236
247
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRecordsResponseSuccess
|
|
237
248
|
|
|
@@ -241,7 +252,8 @@ module Aws
|
|
|
241
252
|
end
|
|
242
253
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kinesis/Client.html#get_resource_policy-instance_method
|
|
243
254
|
def get_resource_policy: (
|
|
244
|
-
resource_arn: ::String
|
|
255
|
+
resource_arn: ::String,
|
|
256
|
+
?stream_id: ::String
|
|
245
257
|
) -> _GetResourcePolicyResponseSuccess
|
|
246
258
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourcePolicyResponseSuccess
|
|
247
259
|
|
|
@@ -256,7 +268,8 @@ module Aws
|
|
|
256
268
|
shard_iterator_type: ("AT_SEQUENCE_NUMBER" | "AFTER_SEQUENCE_NUMBER" | "TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP"),
|
|
257
269
|
?starting_sequence_number: ::String,
|
|
258
270
|
?timestamp: ::Time,
|
|
259
|
-
?stream_arn: ::String
|
|
271
|
+
?stream_arn: ::String,
|
|
272
|
+
?stream_id: ::String
|
|
260
273
|
) -> _GetShardIteratorResponseSuccess
|
|
261
274
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetShardIteratorResponseSuccess
|
|
262
275
|
|
|
@@ -264,7 +277,8 @@ module Aws
|
|
|
264
277
|
def increase_stream_retention_period: (
|
|
265
278
|
?stream_name: ::String,
|
|
266
279
|
retention_period_hours: ::Integer,
|
|
267
|
-
?stream_arn: ::String
|
|
280
|
+
?stream_arn: ::String,
|
|
281
|
+
?stream_id: ::String
|
|
268
282
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
269
283
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
270
284
|
|
|
@@ -285,7 +299,8 @@ module Aws
|
|
|
285
299
|
shard_id: ::String?,
|
|
286
300
|
timestamp: ::Time?
|
|
287
301
|
},
|
|
288
|
-
?stream_arn: ::String
|
|
302
|
+
?stream_arn: ::String,
|
|
303
|
+
?stream_id: ::String
|
|
289
304
|
) -> _ListShardsResponseSuccess
|
|
290
305
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListShardsResponseSuccess
|
|
291
306
|
|
|
@@ -299,7 +314,8 @@ module Aws
|
|
|
299
314
|
stream_arn: ::String,
|
|
300
315
|
?next_token: ::String,
|
|
301
316
|
?max_results: ::Integer,
|
|
302
|
-
?stream_creation_timestamp: ::Time
|
|
317
|
+
?stream_creation_timestamp: ::Time,
|
|
318
|
+
?stream_id: ::String
|
|
303
319
|
) -> _ListStreamConsumersResponseSuccess
|
|
304
320
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStreamConsumersResponseSuccess
|
|
305
321
|
|
|
@@ -324,7 +340,8 @@ module Aws
|
|
|
324
340
|
end
|
|
325
341
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kinesis/Client.html#list_tags_for_resource-instance_method
|
|
326
342
|
def list_tags_for_resource: (
|
|
327
|
-
resource_arn: ::String
|
|
343
|
+
resource_arn: ::String,
|
|
344
|
+
?stream_id: ::String
|
|
328
345
|
) -> _ListTagsForResourceResponseSuccess
|
|
329
346
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
|
330
347
|
|
|
@@ -338,7 +355,8 @@ module Aws
|
|
|
338
355
|
?stream_name: ::String,
|
|
339
356
|
?exclusive_start_tag_key: ::String,
|
|
340
357
|
?limit: ::Integer,
|
|
341
|
-
?stream_arn: ::String
|
|
358
|
+
?stream_arn: ::String,
|
|
359
|
+
?stream_id: ::String
|
|
342
360
|
) -> _ListTagsForStreamResponseSuccess
|
|
343
361
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForStreamResponseSuccess
|
|
344
362
|
|
|
@@ -347,7 +365,8 @@ module Aws
|
|
|
347
365
|
?stream_name: ::String,
|
|
348
366
|
shard_to_merge: ::String,
|
|
349
367
|
adjacent_shard_to_merge: ::String,
|
|
350
|
-
?stream_arn: ::String
|
|
368
|
+
?stream_arn: ::String,
|
|
369
|
+
?stream_id: ::String
|
|
351
370
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
352
371
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
353
372
|
|
|
@@ -364,7 +383,8 @@ module Aws
|
|
|
364
383
|
partition_key: ::String,
|
|
365
384
|
?explicit_hash_key: ::String,
|
|
366
385
|
?sequence_number_for_ordering: ::String,
|
|
367
|
-
?stream_arn: ::String
|
|
386
|
+
?stream_arn: ::String,
|
|
387
|
+
?stream_id: ::String
|
|
368
388
|
) -> _PutRecordResponseSuccess
|
|
369
389
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutRecordResponseSuccess
|
|
370
390
|
|
|
@@ -384,13 +404,15 @@ module Aws
|
|
|
384
404
|
},
|
|
385
405
|
],
|
|
386
406
|
?stream_name: ::String,
|
|
387
|
-
?stream_arn: ::String
|
|
407
|
+
?stream_arn: ::String,
|
|
408
|
+
?stream_id: ::String
|
|
388
409
|
) -> _PutRecordsResponseSuccess
|
|
389
410
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutRecordsResponseSuccess
|
|
390
411
|
|
|
391
412
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kinesis/Client.html#put_resource_policy-instance_method
|
|
392
413
|
def put_resource_policy: (
|
|
393
414
|
resource_arn: ::String,
|
|
415
|
+
?stream_id: ::String,
|
|
394
416
|
policy: ::String
|
|
395
417
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
396
418
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
@@ -403,6 +425,7 @@ module Aws
|
|
|
403
425
|
def register_stream_consumer: (
|
|
404
426
|
stream_arn: ::String,
|
|
405
427
|
consumer_name: ::String,
|
|
428
|
+
?stream_id: ::String,
|
|
406
429
|
?tags: Hash[::String, ::String]
|
|
407
430
|
) -> _RegisterStreamConsumerResponseSuccess
|
|
408
431
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterStreamConsumerResponseSuccess
|
|
@@ -411,7 +434,8 @@ module Aws
|
|
|
411
434
|
def remove_tags_from_stream: (
|
|
412
435
|
?stream_name: ::String,
|
|
413
436
|
tag_keys: Array[::String],
|
|
414
|
-
?stream_arn: ::String
|
|
437
|
+
?stream_arn: ::String,
|
|
438
|
+
?stream_id: ::String
|
|
415
439
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
416
440
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
417
441
|
|
|
@@ -420,7 +444,8 @@ module Aws
|
|
|
420
444
|
?stream_name: ::String,
|
|
421
445
|
shard_to_split: ::String,
|
|
422
446
|
new_starting_hash_key: ::String,
|
|
423
|
-
?stream_arn: ::String
|
|
447
|
+
?stream_arn: ::String,
|
|
448
|
+
?stream_id: ::String
|
|
424
449
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
425
450
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
426
451
|
|
|
@@ -429,7 +454,8 @@ module Aws
|
|
|
429
454
|
?stream_name: ::String,
|
|
430
455
|
encryption_type: ("NONE" | "KMS"),
|
|
431
456
|
key_id: ::String,
|
|
432
|
-
?stream_arn: ::String
|
|
457
|
+
?stream_arn: ::String,
|
|
458
|
+
?stream_id: ::String
|
|
433
459
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
434
460
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
435
461
|
|
|
@@ -438,21 +464,24 @@ module Aws
|
|
|
438
464
|
?stream_name: ::String,
|
|
439
465
|
encryption_type: ("NONE" | "KMS"),
|
|
440
466
|
key_id: ::String,
|
|
441
|
-
?stream_arn: ::String
|
|
467
|
+
?stream_arn: ::String,
|
|
468
|
+
?stream_id: ::String
|
|
442
469
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
443
470
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
444
471
|
|
|
445
472
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kinesis/Client.html#tag_resource-instance_method
|
|
446
473
|
def tag_resource: (
|
|
447
474
|
tags: Hash[::String, ::String],
|
|
448
|
-
resource_arn: ::String
|
|
475
|
+
resource_arn: ::String,
|
|
476
|
+
?stream_id: ::String
|
|
449
477
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
450
478
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
451
479
|
|
|
452
480
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kinesis/Client.html#untag_resource-instance_method
|
|
453
481
|
def untag_resource: (
|
|
454
482
|
tag_keys: Array[::String],
|
|
455
|
-
resource_arn: ::String
|
|
483
|
+
resource_arn: ::String,
|
|
484
|
+
?stream_id: ::String
|
|
456
485
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
457
486
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
458
487
|
|
|
@@ -471,6 +500,7 @@ module Aws
|
|
|
471
500
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kinesis/Client.html#update_max_record_size-instance_method
|
|
472
501
|
def update_max_record_size: (
|
|
473
502
|
?stream_arn: ::String,
|
|
503
|
+
?stream_id: ::String,
|
|
474
504
|
max_record_size_in_ki_b: ::Integer
|
|
475
505
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
476
506
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
@@ -487,13 +517,15 @@ module Aws
|
|
|
487
517
|
?stream_name: ::String,
|
|
488
518
|
target_shard_count: ::Integer,
|
|
489
519
|
scaling_type: ("UNIFORM_SCALING"),
|
|
490
|
-
?stream_arn: ::String
|
|
520
|
+
?stream_arn: ::String,
|
|
521
|
+
?stream_id: ::String
|
|
491
522
|
) -> _UpdateShardCountResponseSuccess
|
|
492
523
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateShardCountResponseSuccess
|
|
493
524
|
|
|
494
525
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kinesis/Client.html#update_stream_mode-instance_method
|
|
495
526
|
def update_stream_mode: (
|
|
496
527
|
stream_arn: ::String,
|
|
528
|
+
?stream_id: ::String,
|
|
497
529
|
stream_mode_details: {
|
|
498
530
|
stream_mode: ("PROVISIONED" | "ON_DEMAND")
|
|
499
531
|
},
|
|
@@ -511,6 +543,7 @@ module Aws
|
|
|
511
543
|
def update_stream_warm_throughput: (
|
|
512
544
|
?stream_arn: ::String,
|
|
513
545
|
?stream_name: ::String,
|
|
546
|
+
?stream_id: ::String,
|
|
514
547
|
warm_throughput_mi_bps: ::Integer
|
|
515
548
|
) -> _UpdateStreamWarmThroughputResponseSuccess
|
|
516
549
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStreamWarmThroughputResponseSuccess
|
|
@@ -520,14 +553,16 @@ module Aws
|
|
|
520
553
|
?stream_name: ::String,
|
|
521
554
|
?limit: ::Integer,
|
|
522
555
|
?exclusive_start_shard_id: ::String,
|
|
523
|
-
?stream_arn: ::String
|
|
556
|
+
?stream_arn: ::String,
|
|
557
|
+
?stream_id: ::String
|
|
524
558
|
) -> Client::_DescribeStreamResponseSuccess
|
|
525
559
|
| (:stream_exists waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStreamResponseSuccess
|
|
526
560
|
| (:stream_not_exists waiter_name,
|
|
527
561
|
?stream_name: ::String,
|
|
528
562
|
?limit: ::Integer,
|
|
529
563
|
?exclusive_start_shard_id: ::String,
|
|
530
|
-
?stream_arn: ::String
|
|
564
|
+
?stream_arn: ::String,
|
|
565
|
+
?stream_id: ::String
|
|
531
566
|
) -> Client::_DescribeStreamResponseSuccess
|
|
532
567
|
| (:stream_not_exists waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeStreamResponseSuccess
|
|
533
568
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -17,6 +17,7 @@ module Aws::Kinesis
|
|
|
17
17
|
attr_accessor stream_name: ::String
|
|
18
18
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
19
19
|
attr_accessor stream_arn: ::String
|
|
20
|
+
attr_accessor stream_id: ::String
|
|
20
21
|
SENSITIVE: []
|
|
21
22
|
end
|
|
22
23
|
|
|
@@ -58,11 +59,13 @@ module Aws::Kinesis
|
|
|
58
59
|
attr_accessor stream_name: ::String
|
|
59
60
|
attr_accessor retention_period_hours: ::Integer
|
|
60
61
|
attr_accessor stream_arn: ::String
|
|
62
|
+
attr_accessor stream_id: ::String
|
|
61
63
|
SENSITIVE: []
|
|
62
64
|
end
|
|
63
65
|
|
|
64
66
|
class DeleteResourcePolicyInput
|
|
65
67
|
attr_accessor resource_arn: ::String
|
|
68
|
+
attr_accessor stream_id: ::String
|
|
66
69
|
SENSITIVE: []
|
|
67
70
|
end
|
|
68
71
|
|
|
@@ -70,6 +73,7 @@ module Aws::Kinesis
|
|
|
70
73
|
attr_accessor stream_name: ::String
|
|
71
74
|
attr_accessor enforce_consumer_deletion: bool
|
|
72
75
|
attr_accessor stream_arn: ::String
|
|
76
|
+
attr_accessor stream_id: ::String
|
|
73
77
|
SENSITIVE: []
|
|
74
78
|
end
|
|
75
79
|
|
|
@@ -77,6 +81,7 @@ module Aws::Kinesis
|
|
|
77
81
|
attr_accessor stream_arn: ::String
|
|
78
82
|
attr_accessor consumer_name: ::String
|
|
79
83
|
attr_accessor consumer_arn: ::String
|
|
84
|
+
attr_accessor stream_id: ::String
|
|
80
85
|
SENSITIVE: []
|
|
81
86
|
end
|
|
82
87
|
|
|
@@ -103,6 +108,7 @@ module Aws::Kinesis
|
|
|
103
108
|
attr_accessor stream_arn: ::String
|
|
104
109
|
attr_accessor consumer_name: ::String
|
|
105
110
|
attr_accessor consumer_arn: ::String
|
|
111
|
+
attr_accessor stream_id: ::String
|
|
106
112
|
SENSITIVE: []
|
|
107
113
|
end
|
|
108
114
|
|
|
@@ -116,6 +122,7 @@ module Aws::Kinesis
|
|
|
116
122
|
attr_accessor limit: ::Integer
|
|
117
123
|
attr_accessor exclusive_start_shard_id: ::String
|
|
118
124
|
attr_accessor stream_arn: ::String
|
|
125
|
+
attr_accessor stream_id: ::String
|
|
119
126
|
SENSITIVE: []
|
|
120
127
|
end
|
|
121
128
|
|
|
@@ -127,6 +134,7 @@ module Aws::Kinesis
|
|
|
127
134
|
class DescribeStreamSummaryInput
|
|
128
135
|
attr_accessor stream_name: ::String
|
|
129
136
|
attr_accessor stream_arn: ::String
|
|
137
|
+
attr_accessor stream_id: ::String
|
|
130
138
|
SENSITIVE: []
|
|
131
139
|
end
|
|
132
140
|
|
|
@@ -139,6 +147,7 @@ module Aws::Kinesis
|
|
|
139
147
|
attr_accessor stream_name: ::String
|
|
140
148
|
attr_accessor shard_level_metrics: ::Array[("IncomingBytes" | "IncomingRecords" | "OutgoingBytes" | "OutgoingRecords" | "WriteProvisionedThroughputExceeded" | "ReadProvisionedThroughputExceeded" | "IteratorAgeMilliseconds" | "ALL")]
|
|
141
149
|
attr_accessor stream_arn: ::String
|
|
150
|
+
attr_accessor stream_id: ::String
|
|
142
151
|
SENSITIVE: []
|
|
143
152
|
end
|
|
144
153
|
|
|
@@ -146,6 +155,7 @@ module Aws::Kinesis
|
|
|
146
155
|
attr_accessor stream_name: ::String
|
|
147
156
|
attr_accessor shard_level_metrics: ::Array[("IncomingBytes" | "IncomingRecords" | "OutgoingBytes" | "OutgoingRecords" | "WriteProvisionedThroughputExceeded" | "ReadProvisionedThroughputExceeded" | "IteratorAgeMilliseconds" | "ALL")]
|
|
148
157
|
attr_accessor stream_arn: ::String
|
|
158
|
+
attr_accessor stream_id: ::String
|
|
149
159
|
SENSITIVE: []
|
|
150
160
|
end
|
|
151
161
|
|
|
@@ -176,6 +186,7 @@ module Aws::Kinesis
|
|
|
176
186
|
attr_accessor shard_iterator: ::String
|
|
177
187
|
attr_accessor limit: ::Integer
|
|
178
188
|
attr_accessor stream_arn: ::String
|
|
189
|
+
attr_accessor stream_id: ::String
|
|
179
190
|
SENSITIVE: []
|
|
180
191
|
end
|
|
181
192
|
|
|
@@ -189,6 +200,7 @@ module Aws::Kinesis
|
|
|
189
200
|
|
|
190
201
|
class GetResourcePolicyInput
|
|
191
202
|
attr_accessor resource_arn: ::String
|
|
203
|
+
attr_accessor stream_id: ::String
|
|
192
204
|
SENSITIVE: []
|
|
193
205
|
end
|
|
194
206
|
|
|
@@ -204,6 +216,7 @@ module Aws::Kinesis
|
|
|
204
216
|
attr_accessor starting_sequence_number: ::String
|
|
205
217
|
attr_accessor timestamp: ::Time
|
|
206
218
|
attr_accessor stream_arn: ::String
|
|
219
|
+
attr_accessor stream_id: ::String
|
|
207
220
|
SENSITIVE: []
|
|
208
221
|
end
|
|
209
222
|
|
|
@@ -222,6 +235,7 @@ module Aws::Kinesis
|
|
|
222
235
|
attr_accessor stream_name: ::String
|
|
223
236
|
attr_accessor retention_period_hours: ::Integer
|
|
224
237
|
attr_accessor stream_arn: ::String
|
|
238
|
+
attr_accessor stream_id: ::String
|
|
225
239
|
SENSITIVE: []
|
|
226
240
|
end
|
|
227
241
|
|
|
@@ -285,6 +299,7 @@ module Aws::Kinesis
|
|
|
285
299
|
attr_accessor stream_creation_timestamp: ::Time
|
|
286
300
|
attr_accessor shard_filter: Types::ShardFilter
|
|
287
301
|
attr_accessor stream_arn: ::String
|
|
302
|
+
attr_accessor stream_id: ::String
|
|
288
303
|
SENSITIVE: []
|
|
289
304
|
end
|
|
290
305
|
|
|
@@ -299,6 +314,7 @@ module Aws::Kinesis
|
|
|
299
314
|
attr_accessor next_token: ::String
|
|
300
315
|
attr_accessor max_results: ::Integer
|
|
301
316
|
attr_accessor stream_creation_timestamp: ::Time
|
|
317
|
+
attr_accessor stream_id: ::String
|
|
302
318
|
SENSITIVE: []
|
|
303
319
|
end
|
|
304
320
|
|
|
@@ -325,6 +341,7 @@ module Aws::Kinesis
|
|
|
325
341
|
|
|
326
342
|
class ListTagsForResourceInput
|
|
327
343
|
attr_accessor resource_arn: ::String
|
|
344
|
+
attr_accessor stream_id: ::String
|
|
328
345
|
SENSITIVE: []
|
|
329
346
|
end
|
|
330
347
|
|
|
@@ -338,6 +355,7 @@ module Aws::Kinesis
|
|
|
338
355
|
attr_accessor exclusive_start_tag_key: ::String
|
|
339
356
|
attr_accessor limit: ::Integer
|
|
340
357
|
attr_accessor stream_arn: ::String
|
|
358
|
+
attr_accessor stream_id: ::String
|
|
341
359
|
SENSITIVE: []
|
|
342
360
|
end
|
|
343
361
|
|
|
@@ -352,6 +370,7 @@ module Aws::Kinesis
|
|
|
352
370
|
attr_accessor shard_to_merge: ::String
|
|
353
371
|
attr_accessor adjacent_shard_to_merge: ::String
|
|
354
372
|
attr_accessor stream_arn: ::String
|
|
373
|
+
attr_accessor stream_id: ::String
|
|
355
374
|
SENSITIVE: []
|
|
356
375
|
end
|
|
357
376
|
|
|
@@ -380,6 +399,7 @@ module Aws::Kinesis
|
|
|
380
399
|
attr_accessor explicit_hash_key: ::String
|
|
381
400
|
attr_accessor sequence_number_for_ordering: ::String
|
|
382
401
|
attr_accessor stream_arn: ::String
|
|
402
|
+
attr_accessor stream_id: ::String
|
|
383
403
|
SENSITIVE: []
|
|
384
404
|
end
|
|
385
405
|
|
|
@@ -394,6 +414,7 @@ module Aws::Kinesis
|
|
|
394
414
|
attr_accessor records: ::Array[Types::PutRecordsRequestEntry]
|
|
395
415
|
attr_accessor stream_name: ::String
|
|
396
416
|
attr_accessor stream_arn: ::String
|
|
417
|
+
attr_accessor stream_id: ::String
|
|
397
418
|
SENSITIVE: []
|
|
398
419
|
end
|
|
399
420
|
|
|
@@ -421,6 +442,7 @@ module Aws::Kinesis
|
|
|
421
442
|
|
|
422
443
|
class PutResourcePolicyInput
|
|
423
444
|
attr_accessor resource_arn: ::String
|
|
445
|
+
attr_accessor stream_id: ::String
|
|
424
446
|
attr_accessor policy: ::String
|
|
425
447
|
SENSITIVE: []
|
|
426
448
|
end
|
|
@@ -437,6 +459,7 @@ module Aws::Kinesis
|
|
|
437
459
|
class RegisterStreamConsumerInput
|
|
438
460
|
attr_accessor stream_arn: ::String
|
|
439
461
|
attr_accessor consumer_name: ::String
|
|
462
|
+
attr_accessor stream_id: ::String
|
|
440
463
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
441
464
|
SENSITIVE: []
|
|
442
465
|
end
|
|
@@ -450,6 +473,7 @@ module Aws::Kinesis
|
|
|
450
473
|
attr_accessor stream_name: ::String
|
|
451
474
|
attr_accessor tag_keys: ::Array[::String]
|
|
452
475
|
attr_accessor stream_arn: ::String
|
|
476
|
+
attr_accessor stream_id: ::String
|
|
453
477
|
SENSITIVE: []
|
|
454
478
|
end
|
|
455
479
|
|
|
@@ -492,6 +516,7 @@ module Aws::Kinesis
|
|
|
492
516
|
attr_accessor shard_to_split: ::String
|
|
493
517
|
attr_accessor new_starting_hash_key: ::String
|
|
494
518
|
attr_accessor stream_arn: ::String
|
|
519
|
+
attr_accessor stream_id: ::String
|
|
495
520
|
SENSITIVE: []
|
|
496
521
|
end
|
|
497
522
|
|
|
@@ -500,6 +525,7 @@ module Aws::Kinesis
|
|
|
500
525
|
attr_accessor encryption_type: ("NONE" | "KMS")
|
|
501
526
|
attr_accessor key_id: ::String
|
|
502
527
|
attr_accessor stream_arn: ::String
|
|
528
|
+
attr_accessor stream_id: ::String
|
|
503
529
|
SENSITIVE: []
|
|
504
530
|
end
|
|
505
531
|
|
|
@@ -515,6 +541,7 @@ module Aws::Kinesis
|
|
|
515
541
|
attr_accessor encryption_type: ("NONE" | "KMS")
|
|
516
542
|
attr_accessor key_id: ::String
|
|
517
543
|
attr_accessor stream_arn: ::String
|
|
544
|
+
attr_accessor stream_id: ::String
|
|
518
545
|
SENSITIVE: []
|
|
519
546
|
end
|
|
520
547
|
|
|
@@ -536,6 +563,7 @@ module Aws::Kinesis
|
|
|
536
563
|
class StreamDescriptionSummary
|
|
537
564
|
attr_accessor stream_name: ::String
|
|
538
565
|
attr_accessor stream_arn: ::String
|
|
566
|
+
attr_accessor stream_id: ::String
|
|
539
567
|
attr_accessor stream_status: ("CREATING" | "DELETING" | "ACTIVE" | "UPDATING")
|
|
540
568
|
attr_accessor stream_mode_details: Types::StreamModeDetails
|
|
541
569
|
attr_accessor retention_period_hours: ::Integer
|
|
@@ -575,6 +603,7 @@ module Aws::Kinesis
|
|
|
575
603
|
|
|
576
604
|
class SubscribeToShardInput
|
|
577
605
|
attr_accessor consumer_arn: ::String
|
|
606
|
+
attr_accessor stream_id: ::String
|
|
578
607
|
attr_accessor shard_id: ::String
|
|
579
608
|
attr_accessor starting_position: Types::StartingPosition
|
|
580
609
|
SENSITIVE: []
|
|
@@ -594,12 +623,14 @@ module Aws::Kinesis
|
|
|
594
623
|
class TagResourceInput
|
|
595
624
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
596
625
|
attr_accessor resource_arn: ::String
|
|
626
|
+
attr_accessor stream_id: ::String
|
|
597
627
|
SENSITIVE: []
|
|
598
628
|
end
|
|
599
629
|
|
|
600
630
|
class UntagResourceInput
|
|
601
631
|
attr_accessor tag_keys: ::Array[::String]
|
|
602
632
|
attr_accessor resource_arn: ::String
|
|
633
|
+
attr_accessor stream_id: ::String
|
|
603
634
|
SENSITIVE: []
|
|
604
635
|
end
|
|
605
636
|
|
|
@@ -615,6 +646,7 @@ module Aws::Kinesis
|
|
|
615
646
|
|
|
616
647
|
class UpdateMaxRecordSizeInput
|
|
617
648
|
attr_accessor stream_arn: ::String
|
|
649
|
+
attr_accessor stream_id: ::String
|
|
618
650
|
attr_accessor max_record_size_in_ki_b: ::Integer
|
|
619
651
|
SENSITIVE: []
|
|
620
652
|
end
|
|
@@ -624,6 +656,7 @@ module Aws::Kinesis
|
|
|
624
656
|
attr_accessor target_shard_count: ::Integer
|
|
625
657
|
attr_accessor scaling_type: ("UNIFORM_SCALING")
|
|
626
658
|
attr_accessor stream_arn: ::String
|
|
659
|
+
attr_accessor stream_id: ::String
|
|
627
660
|
SENSITIVE: []
|
|
628
661
|
end
|
|
629
662
|
|
|
@@ -637,6 +670,7 @@ module Aws::Kinesis
|
|
|
637
670
|
|
|
638
671
|
class UpdateStreamModeInput
|
|
639
672
|
attr_accessor stream_arn: ::String
|
|
673
|
+
attr_accessor stream_id: ::String
|
|
640
674
|
attr_accessor stream_mode_details: Types::StreamModeDetails
|
|
641
675
|
attr_accessor warm_throughput_mi_bps: ::Integer
|
|
642
676
|
SENSITIVE: []
|
|
@@ -645,6 +679,7 @@ module Aws::Kinesis
|
|
|
645
679
|
class UpdateStreamWarmThroughputInput
|
|
646
680
|
attr_accessor stream_arn: ::String
|
|
647
681
|
attr_accessor stream_name: ::String
|
|
682
|
+
attr_accessor stream_id: ::String
|
|
648
683
|
attr_accessor warm_throughput_mi_bps: ::Integer
|
|
649
684
|
SENSITIVE: []
|
|
650
685
|
end
|
data/sig/waiters.rbs
CHANGED
|
@@ -17,7 +17,8 @@ module Aws
|
|
|
17
17
|
?stream_name: ::String,
|
|
18
18
|
?limit: ::Integer,
|
|
19
19
|
?exclusive_start_shard_id: ::String,
|
|
20
|
-
?stream_arn: ::String
|
|
20
|
+
?stream_arn: ::String,
|
|
21
|
+
?stream_id: ::String
|
|
21
22
|
) -> Client::_DescribeStreamResponseSuccess
|
|
22
23
|
| (?Hash[Symbol, untyped]) -> Client::_DescribeStreamResponseSuccess
|
|
23
24
|
end
|
|
@@ -30,7 +31,8 @@ module Aws
|
|
|
30
31
|
?stream_name: ::String,
|
|
31
32
|
?limit: ::Integer,
|
|
32
33
|
?exclusive_start_shard_id: ::String,
|
|
33
|
-
?stream_arn: ::String
|
|
34
|
+
?stream_arn: ::String,
|
|
35
|
+
?stream_id: ::String
|
|
34
36
|
) -> Client::_DescribeStreamResponseSuccess
|
|
35
37
|
| (?Hash[Symbol, untyped]) -> Client::_DescribeStreamResponseSuccess
|
|
36
38
|
end
|