@aws-sdk/client-kinesis 3.295.0 → 3.297.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.
- package/dist-types/Kinesis.d.ts +30 -0
- package/dist-types/KinesisClient.d.ts +24 -4
- package/dist-types/commands/AddTagsToStreamCommand.d.ts +16 -0
- package/dist-types/commands/CreateStreamCommand.d.ts +16 -0
- package/dist-types/commands/DecreaseStreamRetentionPeriodCommand.d.ts +16 -0
- package/dist-types/commands/DeleteStreamCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterStreamConsumerCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLimitsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeStreamCommand.d.ts +16 -0
- package/dist-types/commands/DescribeStreamConsumerCommand.d.ts +16 -0
- package/dist-types/commands/DescribeStreamSummaryCommand.d.ts +16 -0
- package/dist-types/commands/DisableEnhancedMonitoringCommand.d.ts +16 -0
- package/dist-types/commands/EnableEnhancedMonitoringCommand.d.ts +16 -0
- package/dist-types/commands/GetRecordsCommand.d.ts +16 -0
- package/dist-types/commands/GetShardIteratorCommand.d.ts +16 -0
- package/dist-types/commands/IncreaseStreamRetentionPeriodCommand.d.ts +16 -0
- package/dist-types/commands/ListShardsCommand.d.ts +16 -0
- package/dist-types/commands/ListStreamConsumersCommand.d.ts +16 -0
- package/dist-types/commands/ListStreamsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForStreamCommand.d.ts +16 -0
- package/dist-types/commands/MergeShardsCommand.d.ts +16 -0
- package/dist-types/commands/PutRecordCommand.d.ts +16 -0
- package/dist-types/commands/PutRecordsCommand.d.ts +16 -0
- package/dist-types/commands/RegisterStreamConsumerCommand.d.ts +16 -0
- package/dist-types/commands/RemoveTagsFromStreamCommand.d.ts +16 -0
- package/dist-types/commands/SplitShardCommand.d.ts +16 -0
- package/dist-types/commands/StartStreamEncryptionCommand.d.ts +16 -0
- package/dist-types/commands/StopStreamEncryptionCommand.d.ts +16 -0
- package/dist-types/commands/SubscribeToShardCommand.d.ts +16 -0
- package/dist-types/commands/UpdateShardCountCommand.d.ts +16 -0
- package/dist-types/commands/UpdateStreamModeCommand.d.ts +16 -0
- package/dist-types/models/KinesisServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +147 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListStreamConsumersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListStreamsPaginator.d.ts +3 -0
- package/package.json +33 -33
package/dist-types/Kinesis.d.ts
CHANGED
|
@@ -30,12 +30,14 @@ import { UpdateShardCountCommandInput, UpdateShardCountCommandOutput } from "./c
|
|
|
30
30
|
import { UpdateStreamModeCommandInput, UpdateStreamModeCommandOutput } from "./commands/UpdateStreamModeCommand";
|
|
31
31
|
import { KinesisClient } from "./KinesisClient";
|
|
32
32
|
/**
|
|
33
|
+
* @public
|
|
33
34
|
* <fullname>Amazon Kinesis Data Streams Service API Reference</fullname>
|
|
34
35
|
* <p>Amazon Kinesis Data Streams is a managed service that scales elastically for real-time
|
|
35
36
|
* processing of streaming big data.</p>
|
|
36
37
|
*/
|
|
37
38
|
export declare class Kinesis extends KinesisClient {
|
|
38
39
|
/**
|
|
40
|
+
* @public
|
|
39
41
|
* <p>Adds or updates tags for the specified Kinesis data stream. You can assign up to 50
|
|
40
42
|
* tags to a data stream.</p>
|
|
41
43
|
* <note>
|
|
@@ -52,6 +54,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
52
54
|
addTagsToStream(args: AddTagsToStreamCommandInput, cb: (err: any, data?: AddTagsToStreamCommandOutput) => void): void;
|
|
53
55
|
addTagsToStream(args: AddTagsToStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsToStreamCommandOutput) => void): void;
|
|
54
56
|
/**
|
|
57
|
+
* @public
|
|
55
58
|
* <p>Creates a Kinesis data stream. A stream captures and transports data records that are
|
|
56
59
|
* continuously emitted from different data sources or <i>producers</i>.
|
|
57
60
|
* Scale-out within a stream is explicitly supported by means of shards, which are uniquely
|
|
@@ -101,6 +104,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
101
104
|
createStream(args: CreateStreamCommandInput, cb: (err: any, data?: CreateStreamCommandOutput) => void): void;
|
|
102
105
|
createStream(args: CreateStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStreamCommandOutput) => void): void;
|
|
103
106
|
/**
|
|
107
|
+
* @public
|
|
104
108
|
* <p>Decreases the Kinesis data stream's retention period, which is the length of time data
|
|
105
109
|
* records are accessible after they are added to the stream. The minimum value of a
|
|
106
110
|
* stream's retention period is 24 hours.</p>
|
|
@@ -116,6 +120,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
116
120
|
decreaseStreamRetentionPeriod(args: DecreaseStreamRetentionPeriodCommandInput, cb: (err: any, data?: DecreaseStreamRetentionPeriodCommandOutput) => void): void;
|
|
117
121
|
decreaseStreamRetentionPeriod(args: DecreaseStreamRetentionPeriodCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DecreaseStreamRetentionPeriodCommandOutput) => void): void;
|
|
118
122
|
/**
|
|
123
|
+
* @public
|
|
119
124
|
* <p>Deletes a Kinesis data stream and all its shards and data. You must shut down any
|
|
120
125
|
* applications that are operating on the stream before you delete the stream. If an
|
|
121
126
|
* application attempts to operate on a deleted stream, it receives the exception
|
|
@@ -144,6 +149,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
144
149
|
deleteStream(args: DeleteStreamCommandInput, cb: (err: any, data?: DeleteStreamCommandOutput) => void): void;
|
|
145
150
|
deleteStream(args: DeleteStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStreamCommandOutput) => void): void;
|
|
146
151
|
/**
|
|
152
|
+
* @public
|
|
147
153
|
* <p>To deregister a consumer, provide its ARN. Alternatively, you can provide the ARN of
|
|
148
154
|
* the data stream and the name you gave the consumer when you registered it. You may also
|
|
149
155
|
* provide all three parameters, as long as they don't conflict with each other. If you
|
|
@@ -157,6 +163,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
157
163
|
deregisterStreamConsumer(args: DeregisterStreamConsumerCommandInput, cb: (err: any, data?: DeregisterStreamConsumerCommandOutput) => void): void;
|
|
158
164
|
deregisterStreamConsumer(args: DeregisterStreamConsumerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterStreamConsumerCommandOutput) => void): void;
|
|
159
165
|
/**
|
|
166
|
+
* @public
|
|
160
167
|
* <p>Describes the shard limits and usage for the account.</p>
|
|
161
168
|
* <p>If you update your account limits, the old limits might be returned for a few
|
|
162
169
|
* minutes.</p>
|
|
@@ -166,6 +173,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
166
173
|
describeLimits(args: DescribeLimitsCommandInput, cb: (err: any, data?: DescribeLimitsCommandOutput) => void): void;
|
|
167
174
|
describeLimits(args: DescribeLimitsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLimitsCommandOutput) => void): void;
|
|
168
175
|
/**
|
|
176
|
+
* @public
|
|
169
177
|
* <p>Describes the specified Kinesis data stream.</p>
|
|
170
178
|
* <note>
|
|
171
179
|
* <p>This API has been revised. It's highly recommended that you use the <a>DescribeStreamSummary</a> API to get a summarized description of the
|
|
@@ -195,6 +203,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
195
203
|
describeStream(args: DescribeStreamCommandInput, cb: (err: any, data?: DescribeStreamCommandOutput) => void): void;
|
|
196
204
|
describeStream(args: DescribeStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStreamCommandOutput) => void): void;
|
|
197
205
|
/**
|
|
206
|
+
* @public
|
|
198
207
|
* <p>To get the description of a registered consumer, provide the ARN of the consumer.
|
|
199
208
|
* Alternatively, you can provide the ARN of the data stream and the name you gave the
|
|
200
209
|
* consumer when you registered it. You may also provide all three parameters, as long as
|
|
@@ -208,6 +217,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
208
217
|
describeStreamConsumer(args: DescribeStreamConsumerCommandInput, cb: (err: any, data?: DescribeStreamConsumerCommandOutput) => void): void;
|
|
209
218
|
describeStreamConsumer(args: DescribeStreamConsumerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStreamConsumerCommandOutput) => void): void;
|
|
210
219
|
/**
|
|
220
|
+
* @public
|
|
211
221
|
* <p>Provides a summarized description of the specified Kinesis data stream without the
|
|
212
222
|
* shard list.</p>
|
|
213
223
|
* <note>
|
|
@@ -225,6 +235,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
225
235
|
describeStreamSummary(args: DescribeStreamSummaryCommandInput, cb: (err: any, data?: DescribeStreamSummaryCommandOutput) => void): void;
|
|
226
236
|
describeStreamSummary(args: DescribeStreamSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStreamSummaryCommandOutput) => void): void;
|
|
227
237
|
/**
|
|
238
|
+
* @public
|
|
228
239
|
* <p>Disables enhanced monitoring.</p>
|
|
229
240
|
* <note>
|
|
230
241
|
* <p>When invoking this API, it is recommended you use the <code>StreamARN</code> input
|
|
@@ -235,6 +246,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
235
246
|
disableEnhancedMonitoring(args: DisableEnhancedMonitoringCommandInput, cb: (err: any, data?: DisableEnhancedMonitoringCommandOutput) => void): void;
|
|
236
247
|
disableEnhancedMonitoring(args: DisableEnhancedMonitoringCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableEnhancedMonitoringCommandOutput) => void): void;
|
|
237
248
|
/**
|
|
249
|
+
* @public
|
|
238
250
|
* <p>Enables enhanced Kinesis data stream monitoring for shard-level metrics.</p>
|
|
239
251
|
* <note>
|
|
240
252
|
* <p>When invoking this API, it is recommended you use the <code>StreamARN</code> input
|
|
@@ -245,6 +257,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
245
257
|
enableEnhancedMonitoring(args: EnableEnhancedMonitoringCommandInput, cb: (err: any, data?: EnableEnhancedMonitoringCommandOutput) => void): void;
|
|
246
258
|
enableEnhancedMonitoring(args: EnableEnhancedMonitoringCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableEnhancedMonitoringCommandOutput) => void): void;
|
|
247
259
|
/**
|
|
260
|
+
* @public
|
|
248
261
|
* <p>Gets data records from a Kinesis data stream's shard.</p>
|
|
249
262
|
* <note>
|
|
250
263
|
* <p>When invoking this API, it is recommended you use the <code>StreamARN</code> input
|
|
@@ -302,6 +315,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
302
315
|
getRecords(args: GetRecordsCommandInput, cb: (err: any, data?: GetRecordsCommandOutput) => void): void;
|
|
303
316
|
getRecords(args: GetRecordsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecordsCommandOutput) => void): void;
|
|
304
317
|
/**
|
|
318
|
+
* @public
|
|
305
319
|
* <p>Gets an Amazon Kinesis shard iterator. A shard iterator expires 5 minutes after it is
|
|
306
320
|
* returned to the requester.</p>
|
|
307
321
|
* <note>
|
|
@@ -345,6 +359,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
345
359
|
getShardIterator(args: GetShardIteratorCommandInput, cb: (err: any, data?: GetShardIteratorCommandOutput) => void): void;
|
|
346
360
|
getShardIterator(args: GetShardIteratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetShardIteratorCommandOutput) => void): void;
|
|
347
361
|
/**
|
|
362
|
+
* @public
|
|
348
363
|
* <p>Increases the Kinesis data stream's retention period, which is the length of time data
|
|
349
364
|
* records are accessible after they are added to the stream. The maximum value of a
|
|
350
365
|
* stream's retention period is 8760 hours (365 days).</p>
|
|
@@ -363,6 +378,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
363
378
|
increaseStreamRetentionPeriod(args: IncreaseStreamRetentionPeriodCommandInput, cb: (err: any, data?: IncreaseStreamRetentionPeriodCommandOutput) => void): void;
|
|
364
379
|
increaseStreamRetentionPeriod(args: IncreaseStreamRetentionPeriodCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: IncreaseStreamRetentionPeriodCommandOutput) => void): void;
|
|
365
380
|
/**
|
|
381
|
+
* @public
|
|
366
382
|
* <p>Lists the shards in a stream and provides information about each shard. This operation
|
|
367
383
|
* has a limit of 1000 transactions per second per data stream.</p>
|
|
368
384
|
* <note>
|
|
@@ -383,6 +399,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
383
399
|
listShards(args: ListShardsCommandInput, cb: (err: any, data?: ListShardsCommandOutput) => void): void;
|
|
384
400
|
listShards(args: ListShardsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListShardsCommandOutput) => void): void;
|
|
385
401
|
/**
|
|
402
|
+
* @public
|
|
386
403
|
* <p>Lists the consumers registered to receive data from a stream using enhanced fan-out,
|
|
387
404
|
* and provides information about each consumer.</p>
|
|
388
405
|
* <p>This operation has a limit of 5 transactions per second per stream.</p>
|
|
@@ -391,6 +408,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
391
408
|
listStreamConsumers(args: ListStreamConsumersCommandInput, cb: (err: any, data?: ListStreamConsumersCommandOutput) => void): void;
|
|
392
409
|
listStreamConsumers(args: ListStreamConsumersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStreamConsumersCommandOutput) => void): void;
|
|
393
410
|
/**
|
|
411
|
+
* @public
|
|
394
412
|
* <p>Lists your Kinesis data streams.</p>
|
|
395
413
|
* <p>The number of streams may be too large to return from a single call to
|
|
396
414
|
* <code>ListStreams</code>. You can limit the number of returned streams using the
|
|
@@ -412,6 +430,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
412
430
|
listStreams(args: ListStreamsCommandInput, cb: (err: any, data?: ListStreamsCommandOutput) => void): void;
|
|
413
431
|
listStreams(args: ListStreamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStreamsCommandOutput) => void): void;
|
|
414
432
|
/**
|
|
433
|
+
* @public
|
|
415
434
|
* <p>Lists the tags for the specified Kinesis data stream. This operation has a limit of
|
|
416
435
|
* five transactions per second per account.</p>
|
|
417
436
|
* <note>
|
|
@@ -423,6 +442,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
423
442
|
listTagsForStream(args: ListTagsForStreamCommandInput, cb: (err: any, data?: ListTagsForStreamCommandOutput) => void): void;
|
|
424
443
|
listTagsForStream(args: ListTagsForStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForStreamCommandOutput) => void): void;
|
|
425
444
|
/**
|
|
445
|
+
* @public
|
|
426
446
|
* <p>Merges two adjacent shards in a Kinesis data stream and combines them into a single
|
|
427
447
|
* shard to reduce the stream's capacity to ingest and transport data. This API is only
|
|
428
448
|
* supported for the data streams with the provisioned capacity mode. Two shards are
|
|
@@ -469,6 +489,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
469
489
|
mergeShards(args: MergeShardsCommandInput, cb: (err: any, data?: MergeShardsCommandOutput) => void): void;
|
|
470
490
|
mergeShards(args: MergeShardsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: MergeShardsCommandOutput) => void): void;
|
|
471
491
|
/**
|
|
492
|
+
* @public
|
|
472
493
|
* <p>Writes a single data record into an Amazon Kinesis data stream. Call
|
|
473
494
|
* <code>PutRecord</code> to send data into the stream for real-time ingestion and
|
|
474
495
|
* subsequent processing, one record at a time. Each shard can support writes up to 1,000
|
|
@@ -514,6 +535,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
514
535
|
putRecord(args: PutRecordCommandInput, cb: (err: any, data?: PutRecordCommandOutput) => void): void;
|
|
515
536
|
putRecord(args: PutRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRecordCommandOutput) => void): void;
|
|
516
537
|
/**
|
|
538
|
+
* @public
|
|
517
539
|
* <p>Writes multiple data records into a Kinesis data stream in a single call (also
|
|
518
540
|
* referred to as a <code>PutRecords</code> request). Use this operation to send data into
|
|
519
541
|
* the stream for data ingestion and processing. </p>
|
|
@@ -579,6 +601,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
579
601
|
putRecords(args: PutRecordsCommandInput, cb: (err: any, data?: PutRecordsCommandOutput) => void): void;
|
|
580
602
|
putRecords(args: PutRecordsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRecordsCommandOutput) => void): void;
|
|
581
603
|
/**
|
|
604
|
+
* @public
|
|
582
605
|
* <p>Registers a consumer with a Kinesis data stream. When you use this operation, the
|
|
583
606
|
* consumer you register can then call <a>SubscribeToShard</a> to receive data
|
|
584
607
|
* from the stream using enhanced fan-out, at a rate of up to 2 MiB per second for every
|
|
@@ -598,6 +621,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
598
621
|
registerStreamConsumer(args: RegisterStreamConsumerCommandInput, cb: (err: any, data?: RegisterStreamConsumerCommandOutput) => void): void;
|
|
599
622
|
registerStreamConsumer(args: RegisterStreamConsumerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterStreamConsumerCommandOutput) => void): void;
|
|
600
623
|
/**
|
|
624
|
+
* @public
|
|
601
625
|
* <p>Removes tags from the specified Kinesis data stream. Removed tags are deleted and
|
|
602
626
|
* cannot be recovered after this operation successfully completes.</p>
|
|
603
627
|
* <note>
|
|
@@ -613,6 +637,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
613
637
|
removeTagsFromStream(args: RemoveTagsFromStreamCommandInput, cb: (err: any, data?: RemoveTagsFromStreamCommandOutput) => void): void;
|
|
614
638
|
removeTagsFromStream(args: RemoveTagsFromStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsFromStreamCommandOutput) => void): void;
|
|
615
639
|
/**
|
|
640
|
+
* @public
|
|
616
641
|
* <p>Splits a shard into two new shards in the Kinesis data stream, to increase the
|
|
617
642
|
* stream's capacity to ingest and transport data. <code>SplitShard</code> is called when
|
|
618
643
|
* there is a need to increase the overall capacity of a stream because of an expected
|
|
@@ -663,6 +688,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
663
688
|
splitShard(args: SplitShardCommandInput, cb: (err: any, data?: SplitShardCommandOutput) => void): void;
|
|
664
689
|
splitShard(args: SplitShardCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SplitShardCommandOutput) => void): void;
|
|
665
690
|
/**
|
|
691
|
+
* @public
|
|
666
692
|
* <p>Enables or updates server-side encryption using an Amazon Web Services KMS key for a
|
|
667
693
|
* specified stream. </p>
|
|
668
694
|
* <p>Starting encryption is an asynchronous operation. Upon receiving the request, Kinesis
|
|
@@ -688,6 +714,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
688
714
|
startStreamEncryption(args: StartStreamEncryptionCommandInput, cb: (err: any, data?: StartStreamEncryptionCommandOutput) => void): void;
|
|
689
715
|
startStreamEncryption(args: StartStreamEncryptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartStreamEncryptionCommandOutput) => void): void;
|
|
690
716
|
/**
|
|
717
|
+
* @public
|
|
691
718
|
* <p>Disables server-side encryption for a specified stream. </p>
|
|
692
719
|
* <note>
|
|
693
720
|
* <p>When invoking this API, it is recommended you use the <code>StreamARN</code> input
|
|
@@ -712,6 +739,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
712
739
|
stopStreamEncryption(args: StopStreamEncryptionCommandInput, cb: (err: any, data?: StopStreamEncryptionCommandOutput) => void): void;
|
|
713
740
|
stopStreamEncryption(args: StopStreamEncryptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopStreamEncryptionCommandOutput) => void): void;
|
|
714
741
|
/**
|
|
742
|
+
* @public
|
|
715
743
|
* <p>This operation establishes an HTTP/2 connection between the consumer you specify in
|
|
716
744
|
* the <code>ConsumerARN</code> parameter and the shard you specify in the
|
|
717
745
|
* <code>ShardId</code> parameter. After the connection is successfully established,
|
|
@@ -740,6 +768,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
740
768
|
subscribeToShard(args: SubscribeToShardCommandInput, cb: (err: any, data?: SubscribeToShardCommandOutput) => void): void;
|
|
741
769
|
subscribeToShard(args: SubscribeToShardCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SubscribeToShardCommandOutput) => void): void;
|
|
742
770
|
/**
|
|
771
|
+
* @public
|
|
743
772
|
* <p>Updates the shard count of the specified stream to the specified number of shards.
|
|
744
773
|
* This API is only supported for the data streams with the provisioned capacity
|
|
745
774
|
* mode.</p>
|
|
@@ -793,6 +822,7 @@ export declare class Kinesis extends KinesisClient {
|
|
|
793
822
|
updateShardCount(args: UpdateShardCountCommandInput, cb: (err: any, data?: UpdateShardCountCommandOutput) => void): void;
|
|
794
823
|
updateShardCount(args: UpdateShardCountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateShardCountCommandOutput) => void): void;
|
|
795
824
|
/**
|
|
825
|
+
* @public
|
|
796
826
|
* <p> Updates the capacity mode of the data stream. Currently, in Kinesis Data Streams, you
|
|
797
827
|
* can choose between an <b>on-demand</b> capacity mode and a
|
|
798
828
|
* <b>provisioned</b> capacity mode for your data stream.
|
|
@@ -38,15 +38,24 @@ import { SubscribeToShardCommandInput, SubscribeToShardCommandOutput } from "./c
|
|
|
38
38
|
import { UpdateShardCountCommandInput, UpdateShardCountCommandOutput } from "./commands/UpdateShardCountCommand";
|
|
39
39
|
import { UpdateStreamModeCommandInput, UpdateStreamModeCommandOutput } from "./commands/UpdateStreamModeCommand";
|
|
40
40
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
41
44
|
export type ServiceInputTypes = AddTagsToStreamCommandInput | CreateStreamCommandInput | DecreaseStreamRetentionPeriodCommandInput | DeleteStreamCommandInput | DeregisterStreamConsumerCommandInput | DescribeLimitsCommandInput | DescribeStreamCommandInput | DescribeStreamConsumerCommandInput | DescribeStreamSummaryCommandInput | DisableEnhancedMonitoringCommandInput | EnableEnhancedMonitoringCommandInput | GetRecordsCommandInput | GetShardIteratorCommandInput | IncreaseStreamRetentionPeriodCommandInput | ListShardsCommandInput | ListStreamConsumersCommandInput | ListStreamsCommandInput | ListTagsForStreamCommandInput | MergeShardsCommandInput | PutRecordCommandInput | PutRecordsCommandInput | RegisterStreamConsumerCommandInput | RemoveTagsFromStreamCommandInput | SplitShardCommandInput | StartStreamEncryptionCommandInput | StopStreamEncryptionCommandInput | SubscribeToShardCommandInput | UpdateShardCountCommandInput | UpdateStreamModeCommandInput;
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
42
48
|
export type ServiceOutputTypes = AddTagsToStreamCommandOutput | CreateStreamCommandOutput | DecreaseStreamRetentionPeriodCommandOutput | DeleteStreamCommandOutput | DeregisterStreamConsumerCommandOutput | DescribeLimitsCommandOutput | DescribeStreamCommandOutput | DescribeStreamConsumerCommandOutput | DescribeStreamSummaryCommandOutput | DisableEnhancedMonitoringCommandOutput | EnableEnhancedMonitoringCommandOutput | GetRecordsCommandOutput | GetShardIteratorCommandOutput | IncreaseStreamRetentionPeriodCommandOutput | ListShardsCommandOutput | ListStreamConsumersCommandOutput | ListStreamsCommandOutput | ListTagsForStreamCommandOutput | MergeShardsCommandOutput | PutRecordCommandOutput | PutRecordsCommandOutput | RegisterStreamConsumerCommandOutput | RemoveTagsFromStreamCommandOutput | SplitShardCommandOutput | StartStreamEncryptionCommandOutput | StopStreamEncryptionCommandOutput | SubscribeToShardCommandOutput | UpdateShardCountCommandOutput | UpdateStreamModeCommandOutput;
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
43
52
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
44
53
|
/**
|
|
45
54
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
46
55
|
*/
|
|
47
56
|
requestHandler?: __HttpHandler;
|
|
48
57
|
/**
|
|
49
|
-
* A constructor for a class implementing the {@link
|
|
58
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
50
59
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
51
60
|
* @internal
|
|
52
61
|
*/
|
|
@@ -140,23 +149,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
140
149
|
*/
|
|
141
150
|
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
142
151
|
/**
|
|
143
|
-
* The {@link
|
|
152
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
144
153
|
*/
|
|
145
154
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
146
155
|
}
|
|
156
|
+
/**
|
|
157
|
+
* @public
|
|
158
|
+
*/
|
|
147
159
|
type KinesisClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & EventStreamSerdeInputConfig & ClientInputEndpointParameters;
|
|
148
160
|
/**
|
|
149
|
-
*
|
|
161
|
+
* @public
|
|
162
|
+
*
|
|
163
|
+
* The configuration interface of KinesisClient class constructor that set the region, credentials and other options.
|
|
150
164
|
*/
|
|
151
165
|
export interface KinesisClientConfig extends KinesisClientConfigType {
|
|
152
166
|
}
|
|
167
|
+
/**
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
153
170
|
type KinesisClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & EventStreamSerdeResolvedConfig & ClientResolvedEndpointParameters;
|
|
154
171
|
/**
|
|
155
|
-
*
|
|
172
|
+
* @public
|
|
173
|
+
*
|
|
174
|
+
* The resolved configuration interface of KinesisClient class. This is resolved and normalized from the {@link KinesisClientConfig | constructor configuration interface}.
|
|
156
175
|
*/
|
|
157
176
|
export interface KinesisClientResolvedConfig extends KinesisClientResolvedConfigType {
|
|
158
177
|
}
|
|
159
178
|
/**
|
|
179
|
+
* @public
|
|
160
180
|
* <fullname>Amazon Kinesis Data Streams Service API Reference</fullname>
|
|
161
181
|
* <p>Amazon Kinesis Data Streams is a managed service that scales elastically for real-time
|
|
162
182
|
* processing of streaming big data.</p>
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient";
|
|
5
5
|
import { AddTagsToStreamInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddTagsToStreamCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddTagsToStreamCommandInput extends AddTagsToStreamInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddTagsToStreamCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddTagsToStreamCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds or updates tags for the specified Kinesis data stream. You can assign up to 50
|
|
18
23
|
* tags to a data stream.</p>
|
|
19
24
|
* <note>
|
|
@@ -35,6 +40,8 @@ export interface AddTagsToStreamCommandOutput extends __MetadataBearer {
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param AddTagsToStreamCommandInput - {@link AddTagsToStreamCommandInput}
|
|
44
|
+
* @returns {@link AddTagsToStreamCommandOutput}
|
|
38
45
|
* @see {@link AddTagsToStreamCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link AddTagsToStreamCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface AddTagsToStreamCommandOutput extends __MetadataBearer {
|
|
|
64
71
|
export declare class AddTagsToStreamCommand extends $Command<AddTagsToStreamCommandInput, AddTagsToStreamCommandOutput, KinesisClientResolvedConfig> {
|
|
65
72
|
readonly input: AddTagsToStreamCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: AddTagsToStreamCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddTagsToStreamCommandInput, AddTagsToStreamCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
72
85
|
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
73
89
|
private deserialize;
|
|
74
90
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient";
|
|
5
5
|
import { CreateStreamInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateStreamCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateStreamCommandInput extends CreateStreamInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateStreamCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateStreamCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a Kinesis data stream. A stream captures and transports data records that are
|
|
18
23
|
* continuously emitted from different data sources or <i>producers</i>.
|
|
19
24
|
* Scale-out within a stream is explicitly supported by means of shards, which are uniquely
|
|
@@ -68,6 +73,8 @@ export interface CreateStreamCommandOutput extends __MetadataBearer {
|
|
|
68
73
|
* const response = await client.send(command);
|
|
69
74
|
* ```
|
|
70
75
|
*
|
|
76
|
+
* @param CreateStreamCommandInput - {@link CreateStreamCommandInput}
|
|
77
|
+
* @returns {@link CreateStreamCommandOutput}
|
|
71
78
|
* @see {@link CreateStreamCommandInput} for command's `input` shape.
|
|
72
79
|
* @see {@link CreateStreamCommandOutput} for command's `response` shape.
|
|
73
80
|
* @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
|
|
@@ -89,11 +96,20 @@ export interface CreateStreamCommandOutput extends __MetadataBearer {
|
|
|
89
96
|
export declare class CreateStreamCommand extends $Command<CreateStreamCommandInput, CreateStreamCommandOutput, KinesisClientResolvedConfig> {
|
|
90
97
|
readonly input: CreateStreamCommandInput;
|
|
91
98
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
92
102
|
constructor(input: CreateStreamCommandInput);
|
|
93
103
|
/**
|
|
94
104
|
* @internal
|
|
95
105
|
*/
|
|
96
106
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateStreamCommandInput, CreateStreamCommandOutput>;
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
97
110
|
private serialize;
|
|
111
|
+
/**
|
|
112
|
+
* @internal
|
|
113
|
+
*/
|
|
98
114
|
private deserialize;
|
|
99
115
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient";
|
|
5
5
|
import { DecreaseStreamRetentionPeriodInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DecreaseStreamRetentionPeriodCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DecreaseStreamRetentionPeriodCommandInput extends DecreaseStreamRetentionPeriodInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DecreaseStreamRetentionPeriodCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DecreaseStreamRetentionPeriodCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Decreases the Kinesis data stream's retention period, which is the length of time data
|
|
18
23
|
* records are accessible after they are added to the stream. The minimum value of a
|
|
19
24
|
* stream's retention period is 24 hours.</p>
|
|
@@ -34,6 +39,8 @@ export interface DecreaseStreamRetentionPeriodCommandOutput extends __MetadataBe
|
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
42
|
+
* @param DecreaseStreamRetentionPeriodCommandInput - {@link DecreaseStreamRetentionPeriodCommandInput}
|
|
43
|
+
* @returns {@link DecreaseStreamRetentionPeriodCommandOutput}
|
|
37
44
|
* @see {@link DecreaseStreamRetentionPeriodCommandInput} for command's `input` shape.
|
|
38
45
|
* @see {@link DecreaseStreamRetentionPeriodCommandOutput} for command's `response` shape.
|
|
39
46
|
* @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface DecreaseStreamRetentionPeriodCommandOutput extends __MetadataBe
|
|
|
63
70
|
export declare class DecreaseStreamRetentionPeriodCommand extends $Command<DecreaseStreamRetentionPeriodCommandInput, DecreaseStreamRetentionPeriodCommandOutput, KinesisClientResolvedConfig> {
|
|
64
71
|
readonly input: DecreaseStreamRetentionPeriodCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: DecreaseStreamRetentionPeriodCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DecreaseStreamRetentionPeriodCommandInput, DecreaseStreamRetentionPeriodCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient";
|
|
5
5
|
import { DeleteStreamInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteStreamCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteStreamCommandInput extends DeleteStreamInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteStreamCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteStreamCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a Kinesis data stream and all its shards and data. You must shut down any
|
|
18
23
|
* applications that are operating on the stream before you delete the stream. If an
|
|
19
24
|
* application attempts to operate on a deleted stream, it receives the exception
|
|
@@ -47,6 +52,8 @@ export interface DeleteStreamCommandOutput extends __MetadataBearer {
|
|
|
47
52
|
* const response = await client.send(command);
|
|
48
53
|
* ```
|
|
49
54
|
*
|
|
55
|
+
* @param DeleteStreamCommandInput - {@link DeleteStreamCommandInput}
|
|
56
|
+
* @returns {@link DeleteStreamCommandOutput}
|
|
50
57
|
* @see {@link DeleteStreamCommandInput} for command's `input` shape.
|
|
51
58
|
* @see {@link DeleteStreamCommandOutput} for command's `response` shape.
|
|
52
59
|
* @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
|
|
@@ -76,11 +83,20 @@ export interface DeleteStreamCommandOutput extends __MetadataBearer {
|
|
|
76
83
|
export declare class DeleteStreamCommand extends $Command<DeleteStreamCommandInput, DeleteStreamCommandOutput, KinesisClientResolvedConfig> {
|
|
77
84
|
readonly input: DeleteStreamCommandInput;
|
|
78
85
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
79
89
|
constructor(input: DeleteStreamCommandInput);
|
|
80
90
|
/**
|
|
81
91
|
* @internal
|
|
82
92
|
*/
|
|
83
93
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteStreamCommandInput, DeleteStreamCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
84
97
|
private serialize;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
85
101
|
private deserialize;
|
|
86
102
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient";
|
|
5
5
|
import { DeregisterStreamConsumerInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeregisterStreamConsumerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeregisterStreamConsumerCommandInput extends DeregisterStreamConsumerInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeregisterStreamConsumerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeregisterStreamConsumerCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>To deregister a consumer, provide its ARN. Alternatively, you can provide the ARN of
|
|
18
23
|
* the data stream and the name you gave the consumer when you registered it. You may also
|
|
19
24
|
* provide all three parameters, as long as they don't conflict with each other. If you
|
|
@@ -32,6 +37,8 @@ export interface DeregisterStreamConsumerCommandOutput extends __MetadataBearer
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param DeregisterStreamConsumerCommandInput - {@link DeregisterStreamConsumerCommandInput}
|
|
41
|
+
* @returns {@link DeregisterStreamConsumerCommandOutput}
|
|
35
42
|
* @see {@link DeregisterStreamConsumerCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link DeregisterStreamConsumerCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DeregisterStreamConsumerCommandOutput extends __MetadataBearer
|
|
|
53
60
|
export declare class DeregisterStreamConsumerCommand extends $Command<DeregisterStreamConsumerCommandInput, DeregisterStreamConsumerCommandOutput, KinesisClientResolvedConfig> {
|
|
54
61
|
readonly input: DeregisterStreamConsumerCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DeregisterStreamConsumerCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterStreamConsumerCommandInput, DeregisterStreamConsumerCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient";
|
|
5
5
|
import { DescribeLimitsInput, DescribeLimitsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeLimitsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeLimitsCommandInput extends DescribeLimitsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeLimitsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeLimitsCommandOutput extends DescribeLimitsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the shard limits and usage for the account.</p>
|
|
18
23
|
* <p>If you update your account limits, the old limits might be returned for a few
|
|
19
24
|
* minutes.</p>
|
|
@@ -28,6 +33,8 @@ export interface DescribeLimitsCommandOutput extends DescribeLimitsOutput, __Met
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DescribeLimitsCommandInput - {@link DescribeLimitsCommandInput}
|
|
37
|
+
* @returns {@link DescribeLimitsCommandOutput}
|
|
31
38
|
* @see {@link DescribeLimitsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DescribeLimitsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface DescribeLimitsCommandOutput extends DescribeLimitsOutput, __Met
|
|
|
41
48
|
export declare class DescribeLimitsCommand extends $Command<DescribeLimitsCommandInput, DescribeLimitsCommandOutput, KinesisClientResolvedConfig> {
|
|
42
49
|
readonly input: DescribeLimitsCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: DescribeLimitsCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLimitsCommandInput, DescribeLimitsCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|