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
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 513d1de9f4b0cd2c16ad71221e079584cc897d2de99d9e76c9200d1a8ee50676
|
|
4
|
+
data.tar.gz: 9077785089c1396b26e60a015e6a496837268092dda69bbb177cdb8d01feb578
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df97da9973b98dd2edf519386836ae97fda39ee27fc9a1a7a7ab507da48588410c680e48bf07075743cd5cbfaa4afc78cfe558583508f3fe264c5e296d1c0dfe
|
|
7
|
+
data.tar.gz: 0be94e6e3dfe34e1cfbe63304d2cd811f10f5966fb50ce1335770e2dabb7d78262ca0f3696733c135096c18fa8389cc6985ba20e10828db711fa886e958c44b6
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.97.0
|
|
@@ -457,6 +457,9 @@ module Aws::Kinesis
|
|
|
457
457
|
# For this parameter, use the value you obtained when you called
|
|
458
458
|
# RegisterStreamConsumer.
|
|
459
459
|
#
|
|
460
|
+
# @option params [String] :stream_id
|
|
461
|
+
# Not Implemented. Reserved for future use.
|
|
462
|
+
#
|
|
460
463
|
# @option params [required, String] :shard_id
|
|
461
464
|
# The ID of the shard you want to subscribe to. To see a list of all the
|
|
462
465
|
# shards for a given stream, use ListShards.
|
|
@@ -643,6 +646,7 @@ module Aws::Kinesis
|
|
|
643
646
|
#
|
|
644
647
|
# async_resp = async_client.subscribe_to_shard({
|
|
645
648
|
# consumer_arn: "ConsumerARN", # required
|
|
649
|
+
# stream_id: "StreamId",
|
|
646
650
|
# shard_id: "ShardId", # required
|
|
647
651
|
# starting_position: { # required
|
|
648
652
|
# type: "AT_SEQUENCE_NUMBER", # required, accepts AT_SEQUENCE_NUMBER, AFTER_SEQUENCE_NUMBER, TRIM_HORIZON, LATEST, AT_TIMESTAMP
|
|
@@ -745,7 +749,7 @@ module Aws::Kinesis
|
|
|
745
749
|
tracer: tracer
|
|
746
750
|
)
|
|
747
751
|
context[:gem_name] = 'aws-sdk-kinesis'
|
|
748
|
-
context[:gem_version] = '1.
|
|
752
|
+
context[:gem_version] = '1.97.0'
|
|
749
753
|
Seahorse::Client::Request.new(handlers, context)
|
|
750
754
|
end
|
|
751
755
|
|
|
@@ -521,6 +521,9 @@ module Aws::Kinesis
|
|
|
521
521
|
# @option params [String] :stream_arn
|
|
522
522
|
# The ARN of the stream.
|
|
523
523
|
#
|
|
524
|
+
# @option params [String] :stream_id
|
|
525
|
+
# Not Implemented. Reserved for future use.
|
|
526
|
+
#
|
|
524
527
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
525
528
|
#
|
|
526
529
|
# @example Request syntax with placeholder values
|
|
@@ -531,6 +534,7 @@ module Aws::Kinesis
|
|
|
531
534
|
# "TagKey" => "TagValue",
|
|
532
535
|
# },
|
|
533
536
|
# stream_arn: "StreamARN",
|
|
537
|
+
# stream_id: "StreamId",
|
|
534
538
|
# })
|
|
535
539
|
#
|
|
536
540
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/AddTagsToStream AWS API Documentation
|
|
@@ -695,6 +699,9 @@ module Aws::Kinesis
|
|
|
695
699
|
# @option params [String] :stream_arn
|
|
696
700
|
# The ARN of the stream.
|
|
697
701
|
#
|
|
702
|
+
# @option params [String] :stream_id
|
|
703
|
+
# Not Implemented. Reserved for future use.
|
|
704
|
+
#
|
|
698
705
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
699
706
|
#
|
|
700
707
|
# @example Request syntax with placeholder values
|
|
@@ -703,6 +710,7 @@ module Aws::Kinesis
|
|
|
703
710
|
# stream_name: "StreamName",
|
|
704
711
|
# retention_period_hours: 1, # required
|
|
705
712
|
# stream_arn: "StreamARN",
|
|
713
|
+
# stream_id: "StreamId",
|
|
706
714
|
# })
|
|
707
715
|
#
|
|
708
716
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/DecreaseStreamRetentionPeriod AWS API Documentation
|
|
@@ -725,12 +733,16 @@ module Aws::Kinesis
|
|
|
725
733
|
# @option params [required, String] :resource_arn
|
|
726
734
|
# The Amazon Resource Name (ARN) of the data stream or consumer.
|
|
727
735
|
#
|
|
736
|
+
# @option params [String] :stream_id
|
|
737
|
+
# Not Implemented. Reserved for future use.
|
|
738
|
+
#
|
|
728
739
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
729
740
|
#
|
|
730
741
|
# @example Request syntax with placeholder values
|
|
731
742
|
#
|
|
732
743
|
# resp = client.delete_resource_policy({
|
|
733
744
|
# resource_arn: "ResourceARN", # required
|
|
745
|
+
# stream_id: "StreamId",
|
|
734
746
|
# })
|
|
735
747
|
#
|
|
736
748
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/DeleteResourcePolicy AWS API Documentation
|
|
@@ -780,6 +792,9 @@ module Aws::Kinesis
|
|
|
780
792
|
# @option params [String] :stream_arn
|
|
781
793
|
# The ARN of the stream.
|
|
782
794
|
#
|
|
795
|
+
# @option params [String] :stream_id
|
|
796
|
+
# Not Implemented. Reserved for future use.
|
|
797
|
+
#
|
|
783
798
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
784
799
|
#
|
|
785
800
|
# @example Request syntax with placeholder values
|
|
@@ -788,6 +803,7 @@ module Aws::Kinesis
|
|
|
788
803
|
# stream_name: "StreamName",
|
|
789
804
|
# enforce_consumer_deletion: false,
|
|
790
805
|
# stream_arn: "StreamARN",
|
|
806
|
+
# stream_id: "StreamId",
|
|
791
807
|
# })
|
|
792
808
|
#
|
|
793
809
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/DeleteStream AWS API Documentation
|
|
@@ -830,6 +846,9 @@ module Aws::Kinesis
|
|
|
830
846
|
# registered with a given data stream. The description of a consumer
|
|
831
847
|
# contains its ARN.
|
|
832
848
|
#
|
|
849
|
+
# @option params [String] :stream_id
|
|
850
|
+
# Not Implemented. Reserved for future use.
|
|
851
|
+
#
|
|
833
852
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
834
853
|
#
|
|
835
854
|
# @example Request syntax with placeholder values
|
|
@@ -838,6 +857,7 @@ module Aws::Kinesis
|
|
|
838
857
|
# stream_arn: "StreamARN",
|
|
839
858
|
# consumer_name: "ConsumerName",
|
|
840
859
|
# consumer_arn: "ConsumerARN",
|
|
860
|
+
# stream_id: "StreamId",
|
|
841
861
|
# })
|
|
842
862
|
#
|
|
843
863
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/DeregisterStreamConsumer AWS API Documentation
|
|
@@ -968,6 +988,9 @@ module Aws::Kinesis
|
|
|
968
988
|
# @option params [String] :stream_arn
|
|
969
989
|
# The ARN of the stream.
|
|
970
990
|
#
|
|
991
|
+
# @option params [String] :stream_id
|
|
992
|
+
# Not Implemented. Reserved for future use.
|
|
993
|
+
#
|
|
971
994
|
# @return [Types::DescribeStreamOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
972
995
|
#
|
|
973
996
|
# * {Types::DescribeStreamOutput#stream_description #stream_description} => Types::StreamDescription
|
|
@@ -981,6 +1004,7 @@ module Aws::Kinesis
|
|
|
981
1004
|
# limit: 1,
|
|
982
1005
|
# exclusive_start_shard_id: "ShardId",
|
|
983
1006
|
# stream_arn: "StreamARN",
|
|
1007
|
+
# stream_id: "StreamId",
|
|
984
1008
|
# })
|
|
985
1009
|
#
|
|
986
1010
|
# @example Response structure
|
|
@@ -1053,6 +1077,9 @@ module Aws::Kinesis
|
|
|
1053
1077
|
# The ARN returned by Kinesis Data Streams when you registered the
|
|
1054
1078
|
# consumer.
|
|
1055
1079
|
#
|
|
1080
|
+
# @option params [String] :stream_id
|
|
1081
|
+
# Not Implemented. Reserved for future use.
|
|
1082
|
+
#
|
|
1056
1083
|
# @return [Types::DescribeStreamConsumerOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1057
1084
|
#
|
|
1058
1085
|
# * {Types::DescribeStreamConsumerOutput#consumer_description #consumer_description} => Types::ConsumerDescription
|
|
@@ -1063,6 +1090,7 @@ module Aws::Kinesis
|
|
|
1063
1090
|
# stream_arn: "StreamARN",
|
|
1064
1091
|
# consumer_name: "ConsumerName",
|
|
1065
1092
|
# consumer_arn: "ConsumerARN",
|
|
1093
|
+
# stream_id: "StreamId",
|
|
1066
1094
|
# })
|
|
1067
1095
|
#
|
|
1068
1096
|
# @example Response structure
|
|
@@ -1104,6 +1132,9 @@ module Aws::Kinesis
|
|
|
1104
1132
|
# @option params [String] :stream_arn
|
|
1105
1133
|
# The ARN of the stream.
|
|
1106
1134
|
#
|
|
1135
|
+
# @option params [String] :stream_id
|
|
1136
|
+
# Not Implemented. Reserved for future use.
|
|
1137
|
+
#
|
|
1107
1138
|
# @return [Types::DescribeStreamSummaryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1108
1139
|
#
|
|
1109
1140
|
# * {Types::DescribeStreamSummaryOutput#stream_description_summary #stream_description_summary} => Types::StreamDescriptionSummary
|
|
@@ -1113,12 +1144,14 @@ module Aws::Kinesis
|
|
|
1113
1144
|
# resp = client.describe_stream_summary({
|
|
1114
1145
|
# stream_name: "StreamName",
|
|
1115
1146
|
# stream_arn: "StreamARN",
|
|
1147
|
+
# stream_id: "StreamId",
|
|
1116
1148
|
# })
|
|
1117
1149
|
#
|
|
1118
1150
|
# @example Response structure
|
|
1119
1151
|
#
|
|
1120
1152
|
# resp.stream_description_summary.stream_name #=> String
|
|
1121
1153
|
# resp.stream_description_summary.stream_arn #=> String
|
|
1154
|
+
# resp.stream_description_summary.stream_id #=> String
|
|
1122
1155
|
# resp.stream_description_summary.stream_status #=> String, one of "CREATING", "DELETING", "ACTIVE", "UPDATING"
|
|
1123
1156
|
# resp.stream_description_summary.stream_mode_details.stream_mode #=> String, one of "PROVISIONED", "ON_DEMAND"
|
|
1124
1157
|
# resp.stream_description_summary.retention_period_hours #=> Integer
|
|
@@ -1188,6 +1221,9 @@ module Aws::Kinesis
|
|
|
1188
1221
|
# @option params [String] :stream_arn
|
|
1189
1222
|
# The ARN of the stream.
|
|
1190
1223
|
#
|
|
1224
|
+
# @option params [String] :stream_id
|
|
1225
|
+
# Not Implemented. Reserved for future use.
|
|
1226
|
+
#
|
|
1191
1227
|
# @return [Types::EnhancedMonitoringOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1192
1228
|
#
|
|
1193
1229
|
# * {Types::EnhancedMonitoringOutput#stream_name #stream_name} => String
|
|
@@ -1201,6 +1237,7 @@ module Aws::Kinesis
|
|
|
1201
1237
|
# stream_name: "StreamName",
|
|
1202
1238
|
# shard_level_metrics: ["IncomingBytes"], # required, accepts IncomingBytes, IncomingRecords, OutgoingBytes, OutgoingRecords, WriteProvisionedThroughputExceeded, ReadProvisionedThroughputExceeded, IteratorAgeMilliseconds, ALL
|
|
1203
1239
|
# stream_arn: "StreamARN",
|
|
1240
|
+
# stream_id: "StreamId",
|
|
1204
1241
|
# })
|
|
1205
1242
|
#
|
|
1206
1243
|
# @example Response structure
|
|
@@ -1266,6 +1303,9 @@ module Aws::Kinesis
|
|
|
1266
1303
|
# @option params [String] :stream_arn
|
|
1267
1304
|
# The ARN of the stream.
|
|
1268
1305
|
#
|
|
1306
|
+
# @option params [String] :stream_id
|
|
1307
|
+
# Not Implemented. Reserved for future use.
|
|
1308
|
+
#
|
|
1269
1309
|
# @return [Types::EnhancedMonitoringOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1270
1310
|
#
|
|
1271
1311
|
# * {Types::EnhancedMonitoringOutput#stream_name #stream_name} => String
|
|
@@ -1279,6 +1319,7 @@ module Aws::Kinesis
|
|
|
1279
1319
|
# stream_name: "StreamName",
|
|
1280
1320
|
# shard_level_metrics: ["IncomingBytes"], # required, accepts IncomingBytes, IncomingRecords, OutgoingBytes, OutgoingRecords, WriteProvisionedThroughputExceeded, ReadProvisionedThroughputExceeded, IteratorAgeMilliseconds, ALL
|
|
1281
1321
|
# stream_arn: "StreamARN",
|
|
1322
|
+
# stream_id: "StreamId",
|
|
1282
1323
|
# })
|
|
1283
1324
|
#
|
|
1284
1325
|
# @example Response structure
|
|
@@ -1387,6 +1428,9 @@ module Aws::Kinesis
|
|
|
1387
1428
|
# @option params [String] :stream_arn
|
|
1388
1429
|
# The ARN of the stream.
|
|
1389
1430
|
#
|
|
1431
|
+
# @option params [String] :stream_id
|
|
1432
|
+
# Not Implemented. Reserved for future use.
|
|
1433
|
+
#
|
|
1390
1434
|
# @return [Types::GetRecordsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1391
1435
|
#
|
|
1392
1436
|
# * {Types::GetRecordsOutput#records #records} => Array<Types::Record>
|
|
@@ -1400,6 +1444,7 @@ module Aws::Kinesis
|
|
|
1400
1444
|
# shard_iterator: "ShardIterator", # required
|
|
1401
1445
|
# limit: 1,
|
|
1402
1446
|
# stream_arn: "StreamARN",
|
|
1447
|
+
# stream_id: "StreamId",
|
|
1403
1448
|
# })
|
|
1404
1449
|
#
|
|
1405
1450
|
# @example Response structure
|
|
@@ -1439,6 +1484,9 @@ module Aws::Kinesis
|
|
|
1439
1484
|
# @option params [required, String] :resource_arn
|
|
1440
1485
|
# The Amazon Resource Name (ARN) of the data stream or consumer.
|
|
1441
1486
|
#
|
|
1487
|
+
# @option params [String] :stream_id
|
|
1488
|
+
# Not Implemented. Reserved for future use.
|
|
1489
|
+
#
|
|
1442
1490
|
# @return [Types::GetResourcePolicyOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1443
1491
|
#
|
|
1444
1492
|
# * {Types::GetResourcePolicyOutput#policy #policy} => String
|
|
@@ -1447,6 +1495,7 @@ module Aws::Kinesis
|
|
|
1447
1495
|
#
|
|
1448
1496
|
# resp = client.get_resource_policy({
|
|
1449
1497
|
# resource_arn: "ResourceARN", # required
|
|
1498
|
+
# stream_id: "StreamId",
|
|
1450
1499
|
# })
|
|
1451
1500
|
#
|
|
1452
1501
|
# @example Response structure
|
|
@@ -1563,6 +1612,9 @@ module Aws::Kinesis
|
|
|
1563
1612
|
# @option params [String] :stream_arn
|
|
1564
1613
|
# The ARN of the stream.
|
|
1565
1614
|
#
|
|
1615
|
+
# @option params [String] :stream_id
|
|
1616
|
+
# Not Implemented. Reserved for future use.
|
|
1617
|
+
#
|
|
1566
1618
|
# @return [Types::GetShardIteratorOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1567
1619
|
#
|
|
1568
1620
|
# * {Types::GetShardIteratorOutput#shard_iterator #shard_iterator} => String
|
|
@@ -1576,6 +1628,7 @@ module Aws::Kinesis
|
|
|
1576
1628
|
# starting_sequence_number: "SequenceNumber",
|
|
1577
1629
|
# timestamp: Time.now,
|
|
1578
1630
|
# stream_arn: "StreamARN",
|
|
1631
|
+
# stream_id: "StreamId",
|
|
1579
1632
|
# })
|
|
1580
1633
|
#
|
|
1581
1634
|
# @example Response structure
|
|
@@ -1621,6 +1674,9 @@ module Aws::Kinesis
|
|
|
1621
1674
|
# @option params [String] :stream_arn
|
|
1622
1675
|
# The ARN of the stream.
|
|
1623
1676
|
#
|
|
1677
|
+
# @option params [String] :stream_id
|
|
1678
|
+
# Not Implemented. Reserved for future use.
|
|
1679
|
+
#
|
|
1624
1680
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1625
1681
|
#
|
|
1626
1682
|
# @example Request syntax with placeholder values
|
|
@@ -1629,6 +1685,7 @@ module Aws::Kinesis
|
|
|
1629
1685
|
# stream_name: "StreamName",
|
|
1630
1686
|
# retention_period_hours: 1, # required
|
|
1631
1687
|
# stream_arn: "StreamARN",
|
|
1688
|
+
# stream_id: "StreamId",
|
|
1632
1689
|
# })
|
|
1633
1690
|
#
|
|
1634
1691
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/IncreaseStreamRetentionPeriod AWS API Documentation
|
|
@@ -1754,6 +1811,9 @@ module Aws::Kinesis
|
|
|
1754
1811
|
# @option params [String] :stream_arn
|
|
1755
1812
|
# The ARN of the stream.
|
|
1756
1813
|
#
|
|
1814
|
+
# @option params [String] :stream_id
|
|
1815
|
+
# Not Implemented. Reserved for future use.
|
|
1816
|
+
#
|
|
1757
1817
|
# @return [Types::ListShardsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1758
1818
|
#
|
|
1759
1819
|
# * {Types::ListShardsOutput#shards #shards} => Array<Types::Shard>
|
|
@@ -1773,6 +1833,7 @@ module Aws::Kinesis
|
|
|
1773
1833
|
# timestamp: Time.now,
|
|
1774
1834
|
# },
|
|
1775
1835
|
# stream_arn: "StreamARN",
|
|
1836
|
+
# stream_id: "StreamId",
|
|
1776
1837
|
# })
|
|
1777
1838
|
#
|
|
1778
1839
|
# @example Response structure
|
|
@@ -1851,6 +1912,9 @@ module Aws::Kinesis
|
|
|
1851
1912
|
# You can't specify this parameter if you specify the NextToken
|
|
1852
1913
|
# parameter.
|
|
1853
1914
|
#
|
|
1915
|
+
# @option params [String] :stream_id
|
|
1916
|
+
# Not Implemented. Reserved for future use.
|
|
1917
|
+
#
|
|
1854
1918
|
# @return [Types::ListStreamConsumersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1855
1919
|
#
|
|
1856
1920
|
# * {Types::ListStreamConsumersOutput#consumers #consumers} => Array<Types::Consumer>
|
|
@@ -1865,6 +1929,7 @@ module Aws::Kinesis
|
|
|
1865
1929
|
# next_token: "NextToken",
|
|
1866
1930
|
# max_results: 1,
|
|
1867
1931
|
# stream_creation_timestamp: Time.now,
|
|
1932
|
+
# stream_id: "StreamId",
|
|
1868
1933
|
# })
|
|
1869
1934
|
#
|
|
1870
1935
|
# @example Response structure
|
|
@@ -1968,6 +2033,9 @@ module Aws::Kinesis
|
|
|
1968
2033
|
# The Amazon Resource Name (ARN) of the Kinesis resource for which to
|
|
1969
2034
|
# list tags.
|
|
1970
2035
|
#
|
|
2036
|
+
# @option params [String] :stream_id
|
|
2037
|
+
# Not Implemented. Reserved for future use.
|
|
2038
|
+
#
|
|
1971
2039
|
# @return [Types::ListTagsForResourceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1972
2040
|
#
|
|
1973
2041
|
# * {Types::ListTagsForResourceOutput#tags #tags} => Array<Types::Tag>
|
|
@@ -1976,6 +2044,7 @@ module Aws::Kinesis
|
|
|
1976
2044
|
#
|
|
1977
2045
|
# resp = client.list_tags_for_resource({
|
|
1978
2046
|
# resource_arn: "ResourceARN", # required
|
|
2047
|
+
# stream_id: "StreamId",
|
|
1979
2048
|
# })
|
|
1980
2049
|
#
|
|
1981
2050
|
# @example Response structure
|
|
@@ -2019,6 +2088,9 @@ module Aws::Kinesis
|
|
|
2019
2088
|
# @option params [String] :stream_arn
|
|
2020
2089
|
# The ARN of the stream.
|
|
2021
2090
|
#
|
|
2091
|
+
# @option params [String] :stream_id
|
|
2092
|
+
# Not Implemented. Reserved for future use.
|
|
2093
|
+
#
|
|
2022
2094
|
# @return [Types::ListTagsForStreamOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2023
2095
|
#
|
|
2024
2096
|
# * {Types::ListTagsForStreamOutput#tags #tags} => Array<Types::Tag>
|
|
@@ -2031,6 +2103,7 @@ module Aws::Kinesis
|
|
|
2031
2103
|
# exclusive_start_tag_key: "TagKey",
|
|
2032
2104
|
# limit: 1,
|
|
2033
2105
|
# stream_arn: "StreamARN",
|
|
2106
|
+
# stream_id: "StreamId",
|
|
2034
2107
|
# })
|
|
2035
2108
|
#
|
|
2036
2109
|
# @example Response structure
|
|
@@ -2115,6 +2188,9 @@ module Aws::Kinesis
|
|
|
2115
2188
|
# @option params [String] :stream_arn
|
|
2116
2189
|
# The ARN of the stream.
|
|
2117
2190
|
#
|
|
2191
|
+
# @option params [String] :stream_id
|
|
2192
|
+
# Not Implemented. Reserved for future use.
|
|
2193
|
+
#
|
|
2118
2194
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
2119
2195
|
#
|
|
2120
2196
|
# @example Request syntax with placeholder values
|
|
@@ -2124,6 +2200,7 @@ module Aws::Kinesis
|
|
|
2124
2200
|
# shard_to_merge: "ShardId", # required
|
|
2125
2201
|
# adjacent_shard_to_merge: "ShardId", # required
|
|
2126
2202
|
# stream_arn: "StreamARN",
|
|
2203
|
+
# stream_id: "StreamId",
|
|
2127
2204
|
# })
|
|
2128
2205
|
#
|
|
2129
2206
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/MergeShards AWS API Documentation
|
|
@@ -2202,7 +2279,7 @@ module Aws::Kinesis
|
|
|
2202
2279
|
# The data blob to put into the record, which is base64-encoded when the
|
|
2203
2280
|
# blob is serialized. When the data blob (the payload before
|
|
2204
2281
|
# base64-encoding) is added to the partition key size, the total size
|
|
2205
|
-
# must not exceed the maximum record size (
|
|
2282
|
+
# must not exceed the maximum record size (10 MiB).
|
|
2206
2283
|
#
|
|
2207
2284
|
# @option params [required, String] :partition_key
|
|
2208
2285
|
# Determines which shard in the stream the data record is assigned to.
|
|
@@ -2230,6 +2307,9 @@ module Aws::Kinesis
|
|
|
2230
2307
|
# @option params [String] :stream_arn
|
|
2231
2308
|
# The ARN of the stream.
|
|
2232
2309
|
#
|
|
2310
|
+
# @option params [String] :stream_id
|
|
2311
|
+
# Not Implemented. Reserved for future use.
|
|
2312
|
+
#
|
|
2233
2313
|
# @return [Types::PutRecordOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2234
2314
|
#
|
|
2235
2315
|
# * {Types::PutRecordOutput#shard_id #shard_id} => String
|
|
@@ -2245,6 +2325,7 @@ module Aws::Kinesis
|
|
|
2245
2325
|
# explicit_hash_key: "HashKey",
|
|
2246
2326
|
# sequence_number_for_ordering: "SequenceNumber",
|
|
2247
2327
|
# stream_arn: "StreamARN",
|
|
2328
|
+
# stream_id: "StreamId",
|
|
2248
2329
|
# })
|
|
2249
2330
|
#
|
|
2250
2331
|
# @example Response structure
|
|
@@ -2358,6 +2439,9 @@ module Aws::Kinesis
|
|
|
2358
2439
|
# @option params [String] :stream_arn
|
|
2359
2440
|
# The ARN of the stream.
|
|
2360
2441
|
#
|
|
2442
|
+
# @option params [String] :stream_id
|
|
2443
|
+
# Not Implemented. Reserved for future use.
|
|
2444
|
+
#
|
|
2361
2445
|
# @return [Types::PutRecordsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2362
2446
|
#
|
|
2363
2447
|
# * {Types::PutRecordsOutput#failed_record_count #failed_record_count} => Integer
|
|
@@ -2376,6 +2460,7 @@ module Aws::Kinesis
|
|
|
2376
2460
|
# ],
|
|
2377
2461
|
# stream_name: "StreamName",
|
|
2378
2462
|
# stream_arn: "StreamARN",
|
|
2463
|
+
# stream_id: "StreamId",
|
|
2379
2464
|
# })
|
|
2380
2465
|
#
|
|
2381
2466
|
# @example Response structure
|
|
@@ -2425,6 +2510,9 @@ module Aws::Kinesis
|
|
|
2425
2510
|
# @option params [required, String] :resource_arn
|
|
2426
2511
|
# The Amazon Resource Name (ARN) of the data stream or consumer.
|
|
2427
2512
|
#
|
|
2513
|
+
# @option params [String] :stream_id
|
|
2514
|
+
# Not Implemented. Reserved for future use.
|
|
2515
|
+
#
|
|
2428
2516
|
# @option params [required, String] :policy
|
|
2429
2517
|
# Details of the resource policy. It must include the identity of the
|
|
2430
2518
|
# principal and the actions allowed on this resource. This is formatted
|
|
@@ -2436,6 +2524,7 @@ module Aws::Kinesis
|
|
|
2436
2524
|
#
|
|
2437
2525
|
# resp = client.put_resource_policy({
|
|
2438
2526
|
# resource_arn: "ResourceARN", # required
|
|
2527
|
+
# stream_id: "StreamId",
|
|
2439
2528
|
# policy: "Policy", # required
|
|
2440
2529
|
# })
|
|
2441
2530
|
#
|
|
@@ -2496,6 +2585,9 @@ module Aws::Kinesis
|
|
|
2496
2585
|
# name. However, consumer names don't have to be unique across data
|
|
2497
2586
|
# streams.
|
|
2498
2587
|
#
|
|
2588
|
+
# @option params [String] :stream_id
|
|
2589
|
+
# Not Implemented. Reserved for future use.
|
|
2590
|
+
#
|
|
2499
2591
|
# @option params [Hash<String,String>] :tags
|
|
2500
2592
|
# A set of up to 50 key-value pairs. A tag consists of a required key
|
|
2501
2593
|
# and an optional value.
|
|
@@ -2509,6 +2601,7 @@ module Aws::Kinesis
|
|
|
2509
2601
|
# resp = client.register_stream_consumer({
|
|
2510
2602
|
# stream_arn: "StreamARN", # required
|
|
2511
2603
|
# consumer_name: "ConsumerName", # required
|
|
2604
|
+
# stream_id: "StreamId",
|
|
2512
2605
|
# tags: {
|
|
2513
2606
|
# "TagKey" => "TagValue",
|
|
2514
2607
|
# },
|
|
@@ -2554,6 +2647,9 @@ module Aws::Kinesis
|
|
|
2554
2647
|
# @option params [String] :stream_arn
|
|
2555
2648
|
# The ARN of the stream.
|
|
2556
2649
|
#
|
|
2650
|
+
# @option params [String] :stream_id
|
|
2651
|
+
# Not Implemented. Reserved for future use.
|
|
2652
|
+
#
|
|
2557
2653
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
2558
2654
|
#
|
|
2559
2655
|
# @example Request syntax with placeholder values
|
|
@@ -2562,6 +2658,7 @@ module Aws::Kinesis
|
|
|
2562
2658
|
# stream_name: "StreamName",
|
|
2563
2659
|
# tag_keys: ["TagKey"], # required
|
|
2564
2660
|
# stream_arn: "StreamARN",
|
|
2661
|
+
# stream_id: "StreamId",
|
|
2565
2662
|
# })
|
|
2566
2663
|
#
|
|
2567
2664
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/RemoveTagsFromStream AWS API Documentation
|
|
@@ -2657,6 +2754,9 @@ module Aws::Kinesis
|
|
|
2657
2754
|
# @option params [String] :stream_arn
|
|
2658
2755
|
# The ARN of the stream.
|
|
2659
2756
|
#
|
|
2757
|
+
# @option params [String] :stream_id
|
|
2758
|
+
# Not Implemented. Reserved for future use.
|
|
2759
|
+
#
|
|
2660
2760
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
2661
2761
|
#
|
|
2662
2762
|
# @example Request syntax with placeholder values
|
|
@@ -2666,6 +2766,7 @@ module Aws::Kinesis
|
|
|
2666
2766
|
# shard_to_split: "ShardId", # required
|
|
2667
2767
|
# new_starting_hash_key: "HashKey", # required
|
|
2668
2768
|
# stream_arn: "StreamARN",
|
|
2769
|
+
# stream_id: "StreamId",
|
|
2669
2770
|
# })
|
|
2670
2771
|
#
|
|
2671
2772
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/SplitShard AWS API Documentation
|
|
@@ -2733,6 +2834,9 @@ module Aws::Kinesis
|
|
|
2733
2834
|
# @option params [String] :stream_arn
|
|
2734
2835
|
# The ARN of the stream.
|
|
2735
2836
|
#
|
|
2837
|
+
# @option params [String] :stream_id
|
|
2838
|
+
# Not Implemented. Reserved for future use.
|
|
2839
|
+
#
|
|
2736
2840
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
2737
2841
|
#
|
|
2738
2842
|
# @example Request syntax with placeholder values
|
|
@@ -2742,6 +2846,7 @@ module Aws::Kinesis
|
|
|
2742
2846
|
# encryption_type: "NONE", # required, accepts NONE, KMS
|
|
2743
2847
|
# key_id: "KeyId", # required
|
|
2744
2848
|
# stream_arn: "StreamARN",
|
|
2849
|
+
# stream_id: "StreamId",
|
|
2745
2850
|
# })
|
|
2746
2851
|
#
|
|
2747
2852
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/StartStreamEncryption AWS API Documentation
|
|
@@ -2810,6 +2915,9 @@ module Aws::Kinesis
|
|
|
2810
2915
|
# @option params [String] :stream_arn
|
|
2811
2916
|
# The ARN of the stream.
|
|
2812
2917
|
#
|
|
2918
|
+
# @option params [String] :stream_id
|
|
2919
|
+
# Not Implemented. Reserved for future use.
|
|
2920
|
+
#
|
|
2813
2921
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
2814
2922
|
#
|
|
2815
2923
|
# @example Request syntax with placeholder values
|
|
@@ -2819,6 +2927,7 @@ module Aws::Kinesis
|
|
|
2819
2927
|
# encryption_type: "NONE", # required, accepts NONE, KMS
|
|
2820
2928
|
# key_id: "KeyId", # required
|
|
2821
2929
|
# stream_arn: "StreamARN",
|
|
2930
|
+
# stream_id: "StreamId",
|
|
2822
2931
|
# })
|
|
2823
2932
|
#
|
|
2824
2933
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/StopStreamEncryption AWS API Documentation
|
|
@@ -2847,6 +2956,9 @@ module Aws::Kinesis
|
|
|
2847
2956
|
# The Amazon Resource Name (ARN) of the Kinesis resource to which to add
|
|
2848
2957
|
# tags.
|
|
2849
2958
|
#
|
|
2959
|
+
# @option params [String] :stream_id
|
|
2960
|
+
# Not Implemented. Reserved for future use.
|
|
2961
|
+
#
|
|
2850
2962
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
2851
2963
|
#
|
|
2852
2964
|
# @example Request syntax with placeholder values
|
|
@@ -2856,6 +2968,7 @@ module Aws::Kinesis
|
|
|
2856
2968
|
# "TagKey" => "TagValue",
|
|
2857
2969
|
# },
|
|
2858
2970
|
# resource_arn: "ResourceARN", # required
|
|
2971
|
+
# stream_id: "StreamId",
|
|
2859
2972
|
# })
|
|
2860
2973
|
#
|
|
2861
2974
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/TagResource AWS API Documentation
|
|
@@ -2880,6 +2993,9 @@ module Aws::Kinesis
|
|
|
2880
2993
|
# The Amazon Resource Name (ARN) of the Kinesis resource from which to
|
|
2881
2994
|
# remove tags.
|
|
2882
2995
|
#
|
|
2996
|
+
# @option params [String] :stream_id
|
|
2997
|
+
# Not Implemented. Reserved for future use.
|
|
2998
|
+
#
|
|
2883
2999
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
2884
3000
|
#
|
|
2885
3001
|
# @example Request syntax with placeholder values
|
|
@@ -2887,6 +3003,7 @@ module Aws::Kinesis
|
|
|
2887
3003
|
# resp = client.untag_resource({
|
|
2888
3004
|
# tag_keys: ["TagKey"], # required
|
|
2889
3005
|
# resource_arn: "ResourceARN", # required
|
|
3006
|
+
# stream_id: "StreamId",
|
|
2890
3007
|
# })
|
|
2891
3008
|
#
|
|
2892
3009
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/UntagResource AWS API Documentation
|
|
@@ -2954,6 +3071,9 @@ module Aws::Kinesis
|
|
|
2954
3071
|
# The Amazon Resource Name (ARN) of the stream for the `MaxRecordSize`
|
|
2955
3072
|
# update.
|
|
2956
3073
|
#
|
|
3074
|
+
# @option params [String] :stream_id
|
|
3075
|
+
# Not Implemented. Reserved for future use.
|
|
3076
|
+
#
|
|
2957
3077
|
# @option params [required, Integer] :max_record_size_in_ki_b
|
|
2958
3078
|
# The maximum record size of a single record in KiB that you can write
|
|
2959
3079
|
# to, and read from a stream. Specify a value between 1024 and 10240 KiB
|
|
@@ -2966,6 +3086,7 @@ module Aws::Kinesis
|
|
|
2966
3086
|
#
|
|
2967
3087
|
# resp = client.update_max_record_size({
|
|
2968
3088
|
# stream_arn: "StreamARN",
|
|
3089
|
+
# stream_id: "StreamId",
|
|
2969
3090
|
# max_record_size_in_ki_b: 1, # required
|
|
2970
3091
|
# })
|
|
2971
3092
|
#
|
|
@@ -3061,6 +3182,9 @@ module Aws::Kinesis
|
|
|
3061
3182
|
# @option params [String] :stream_arn
|
|
3062
3183
|
# The ARN of the stream.
|
|
3063
3184
|
#
|
|
3185
|
+
# @option params [String] :stream_id
|
|
3186
|
+
# Not Implemented. Reserved for future use.
|
|
3187
|
+
#
|
|
3064
3188
|
# @return [Types::UpdateShardCountOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3065
3189
|
#
|
|
3066
3190
|
# * {Types::UpdateShardCountOutput#stream_name #stream_name} => String
|
|
@@ -3075,6 +3199,7 @@ module Aws::Kinesis
|
|
|
3075
3199
|
# target_shard_count: 1, # required
|
|
3076
3200
|
# scaling_type: "UNIFORM_SCALING", # required, accepts UNIFORM_SCALING
|
|
3077
3201
|
# stream_arn: "StreamARN",
|
|
3202
|
+
# stream_id: "StreamId",
|
|
3078
3203
|
# })
|
|
3079
3204
|
#
|
|
3080
3205
|
# @example Response structure
|
|
@@ -3108,6 +3233,9 @@ module Aws::Kinesis
|
|
|
3108
3233
|
# Specifies the ARN of the data stream whose capacity mode you want to
|
|
3109
3234
|
# update.
|
|
3110
3235
|
#
|
|
3236
|
+
# @option params [String] :stream_id
|
|
3237
|
+
# Not Implemented. Reserved for future use.
|
|
3238
|
+
#
|
|
3111
3239
|
# @option params [required, Types::StreamModeDetails] :stream_mode_details
|
|
3112
3240
|
# Specifies the capacity mode to which you want to set your data stream.
|
|
3113
3241
|
# Currently, in Kinesis Data Streams, you can choose between an
|
|
@@ -3126,6 +3254,7 @@ module Aws::Kinesis
|
|
|
3126
3254
|
#
|
|
3127
3255
|
# resp = client.update_stream_mode({
|
|
3128
3256
|
# stream_arn: "StreamARN", # required
|
|
3257
|
+
# stream_id: "StreamId",
|
|
3129
3258
|
# stream_mode_details: { # required
|
|
3130
3259
|
# stream_mode: "PROVISIONED", # required, accepts PROVISIONED, ON_DEMAND
|
|
3131
3260
|
# },
|
|
@@ -3191,6 +3320,9 @@ module Aws::Kinesis
|
|
|
3191
3320
|
# @option params [String] :stream_name
|
|
3192
3321
|
# The name of the stream to be updated.
|
|
3193
3322
|
#
|
|
3323
|
+
# @option params [String] :stream_id
|
|
3324
|
+
# Not Implemented. Reserved for future use.
|
|
3325
|
+
#
|
|
3194
3326
|
# @option params [required, Integer] :warm_throughput_mi_bps
|
|
3195
3327
|
# The target warm throughput in MB/s that the stream should be scaled to
|
|
3196
3328
|
# handle. This represents the throughput capacity that will be
|
|
@@ -3207,6 +3339,7 @@ module Aws::Kinesis
|
|
|
3207
3339
|
# resp = client.update_stream_warm_throughput({
|
|
3208
3340
|
# stream_arn: "StreamARN",
|
|
3209
3341
|
# stream_name: "StreamName",
|
|
3342
|
+
# stream_id: "StreamId",
|
|
3210
3343
|
# warm_throughput_mi_bps: 1, # required
|
|
3211
3344
|
# })
|
|
3212
3345
|
#
|
|
@@ -3244,7 +3377,7 @@ module Aws::Kinesis
|
|
|
3244
3377
|
tracer: tracer
|
|
3245
3378
|
)
|
|
3246
3379
|
context[:gem_name] = 'aws-sdk-kinesis'
|
|
3247
|
-
context[:gem_version] = '1.
|
|
3380
|
+
context[:gem_version] = '1.97.0'
|
|
3248
3381
|
Seahorse::Client::Request.new(handlers, context)
|
|
3249
3382
|
end
|
|
3250
3383
|
|