@aws-sdk/client-kinesis 3.170.0 → 3.171.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.
Files changed (41) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Kinesis.d.ts +0 -29
  3. package/dist-types/ts3.4/KinesisClient.d.ts +0 -26
  4. package/dist-types/ts3.4/commands/AddTagsToStreamCommand.d.ts +0 -2
  5. package/dist-types/ts3.4/commands/CreateStreamCommand.d.ts +0 -2
  6. package/dist-types/ts3.4/commands/DecreaseStreamRetentionPeriodCommand.d.ts +0 -2
  7. package/dist-types/ts3.4/commands/DeleteStreamCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/DeregisterStreamConsumerCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/DescribeStreamCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/DescribeStreamConsumerCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/DescribeStreamSummaryCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/DisableEnhancedMonitoringCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/EnableEnhancedMonitoringCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/GetRecordsCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/GetShardIteratorCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/IncreaseStreamRetentionPeriodCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/ListShardsCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/ListStreamConsumersCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/ListTagsForStreamCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/MergeShardsCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/PutRecordsCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/RegisterStreamConsumerCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/RemoveTagsFromStreamCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/SplitShardCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/StartStreamEncryptionCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/StopStreamEncryptionCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/commands/SubscribeToShardCommand.d.ts +0 -2
  31. package/dist-types/ts3.4/commands/UpdateShardCountCommand.d.ts +0 -2
  32. package/dist-types/ts3.4/commands/UpdateStreamModeCommand.d.ts +0 -2
  33. package/dist-types/ts3.4/models/KinesisServiceException.d.ts +0 -1
  34. package/dist-types/ts3.4/models/models_0.d.ts +0 -265
  35. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  39. package/dist-types/ts3.4/waiters/waitForStreamExists.d.ts +0 -2
  40. package/dist-types/ts3.4/waiters/waitForStreamNotExists.d.ts +0 -2
  41. package/package.json +30 -30
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-kinesis
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-kinesis
@@ -116,7 +116,6 @@ import {
116
116
  UpdateStreamModeCommandOutput,
117
117
  } from "./commands/UpdateStreamModeCommand";
118
118
  import { KinesisClient } from "./KinesisClient";
119
-
120
119
  export declare class Kinesis extends KinesisClient {
121
120
  addTagsToStream(
122
121
  args: AddTagsToStreamCommandInput,
@@ -131,7 +130,6 @@ export declare class Kinesis extends KinesisClient {
131
130
  options: __HttpHandlerOptions,
132
131
  cb: (err: any, data?: AddTagsToStreamCommandOutput) => void
133
132
  ): void;
134
-
135
133
  createStream(
136
134
  args: CreateStreamCommandInput,
137
135
  options?: __HttpHandlerOptions
@@ -145,7 +143,6 @@ export declare class Kinesis extends KinesisClient {
145
143
  options: __HttpHandlerOptions,
146
144
  cb: (err: any, data?: CreateStreamCommandOutput) => void
147
145
  ): void;
148
-
149
146
  decreaseStreamRetentionPeriod(
150
147
  args: DecreaseStreamRetentionPeriodCommandInput,
151
148
  options?: __HttpHandlerOptions
@@ -159,7 +156,6 @@ export declare class Kinesis extends KinesisClient {
159
156
  options: __HttpHandlerOptions,
160
157
  cb: (err: any, data?: DecreaseStreamRetentionPeriodCommandOutput) => void
161
158
  ): void;
162
-
163
159
  deleteStream(
164
160
  args: DeleteStreamCommandInput,
165
161
  options?: __HttpHandlerOptions
@@ -173,7 +169,6 @@ export declare class Kinesis extends KinesisClient {
173
169
  options: __HttpHandlerOptions,
174
170
  cb: (err: any, data?: DeleteStreamCommandOutput) => void
175
171
  ): void;
176
-
177
172
  deregisterStreamConsumer(
178
173
  args: DeregisterStreamConsumerCommandInput,
179
174
  options?: __HttpHandlerOptions
@@ -187,7 +182,6 @@ export declare class Kinesis extends KinesisClient {
187
182
  options: __HttpHandlerOptions,
188
183
  cb: (err: any, data?: DeregisterStreamConsumerCommandOutput) => void
189
184
  ): void;
190
-
191
185
  describeLimits(
192
186
  args: DescribeLimitsCommandInput,
193
187
  options?: __HttpHandlerOptions
@@ -201,7 +195,6 @@ export declare class Kinesis extends KinesisClient {
201
195
  options: __HttpHandlerOptions,
202
196
  cb: (err: any, data?: DescribeLimitsCommandOutput) => void
203
197
  ): void;
204
-
205
198
  describeStream(
206
199
  args: DescribeStreamCommandInput,
207
200
  options?: __HttpHandlerOptions
@@ -215,7 +208,6 @@ export declare class Kinesis extends KinesisClient {
215
208
  options: __HttpHandlerOptions,
216
209
  cb: (err: any, data?: DescribeStreamCommandOutput) => void
217
210
  ): void;
218
-
219
211
  describeStreamConsumer(
220
212
  args: DescribeStreamConsumerCommandInput,
221
213
  options?: __HttpHandlerOptions
@@ -229,7 +221,6 @@ export declare class Kinesis extends KinesisClient {
229
221
  options: __HttpHandlerOptions,
230
222
  cb: (err: any, data?: DescribeStreamConsumerCommandOutput) => void
231
223
  ): void;
232
-
233
224
  describeStreamSummary(
234
225
  args: DescribeStreamSummaryCommandInput,
235
226
  options?: __HttpHandlerOptions
@@ -243,7 +234,6 @@ export declare class Kinesis extends KinesisClient {
243
234
  options: __HttpHandlerOptions,
244
235
  cb: (err: any, data?: DescribeStreamSummaryCommandOutput) => void
245
236
  ): void;
246
-
247
237
  disableEnhancedMonitoring(
248
238
  args: DisableEnhancedMonitoringCommandInput,
249
239
  options?: __HttpHandlerOptions
@@ -257,7 +247,6 @@ export declare class Kinesis extends KinesisClient {
257
247
  options: __HttpHandlerOptions,
258
248
  cb: (err: any, data?: DisableEnhancedMonitoringCommandOutput) => void
259
249
  ): void;
260
-
261
250
  enableEnhancedMonitoring(
262
251
  args: EnableEnhancedMonitoringCommandInput,
263
252
  options?: __HttpHandlerOptions
@@ -271,7 +260,6 @@ export declare class Kinesis extends KinesisClient {
271
260
  options: __HttpHandlerOptions,
272
261
  cb: (err: any, data?: EnableEnhancedMonitoringCommandOutput) => void
273
262
  ): void;
274
-
275
263
  getRecords(
276
264
  args: GetRecordsCommandInput,
277
265
  options?: __HttpHandlerOptions
@@ -285,7 +273,6 @@ export declare class Kinesis extends KinesisClient {
285
273
  options: __HttpHandlerOptions,
286
274
  cb: (err: any, data?: GetRecordsCommandOutput) => void
287
275
  ): void;
288
-
289
276
  getShardIterator(
290
277
  args: GetShardIteratorCommandInput,
291
278
  options?: __HttpHandlerOptions
@@ -299,7 +286,6 @@ export declare class Kinesis extends KinesisClient {
299
286
  options: __HttpHandlerOptions,
300
287
  cb: (err: any, data?: GetShardIteratorCommandOutput) => void
301
288
  ): void;
302
-
303
289
  increaseStreamRetentionPeriod(
304
290
  args: IncreaseStreamRetentionPeriodCommandInput,
305
291
  options?: __HttpHandlerOptions
@@ -313,7 +299,6 @@ export declare class Kinesis extends KinesisClient {
313
299
  options: __HttpHandlerOptions,
314
300
  cb: (err: any, data?: IncreaseStreamRetentionPeriodCommandOutput) => void
315
301
  ): void;
316
-
317
302
  listShards(
318
303
  args: ListShardsCommandInput,
319
304
  options?: __HttpHandlerOptions
@@ -327,7 +312,6 @@ export declare class Kinesis extends KinesisClient {
327
312
  options: __HttpHandlerOptions,
328
313
  cb: (err: any, data?: ListShardsCommandOutput) => void
329
314
  ): void;
330
-
331
315
  listStreamConsumers(
332
316
  args: ListStreamConsumersCommandInput,
333
317
  options?: __HttpHandlerOptions
@@ -341,7 +325,6 @@ export declare class Kinesis extends KinesisClient {
341
325
  options: __HttpHandlerOptions,
342
326
  cb: (err: any, data?: ListStreamConsumersCommandOutput) => void
343
327
  ): void;
344
-
345
328
  listStreams(
346
329
  args: ListStreamsCommandInput,
347
330
  options?: __HttpHandlerOptions
@@ -355,7 +338,6 @@ export declare class Kinesis extends KinesisClient {
355
338
  options: __HttpHandlerOptions,
356
339
  cb: (err: any, data?: ListStreamsCommandOutput) => void
357
340
  ): void;
358
-
359
341
  listTagsForStream(
360
342
  args: ListTagsForStreamCommandInput,
361
343
  options?: __HttpHandlerOptions
@@ -369,7 +351,6 @@ export declare class Kinesis extends KinesisClient {
369
351
  options: __HttpHandlerOptions,
370
352
  cb: (err: any, data?: ListTagsForStreamCommandOutput) => void
371
353
  ): void;
372
-
373
354
  mergeShards(
374
355
  args: MergeShardsCommandInput,
375
356
  options?: __HttpHandlerOptions
@@ -383,7 +364,6 @@ export declare class Kinesis extends KinesisClient {
383
364
  options: __HttpHandlerOptions,
384
365
  cb: (err: any, data?: MergeShardsCommandOutput) => void
385
366
  ): void;
386
-
387
367
  putRecord(
388
368
  args: PutRecordCommandInput,
389
369
  options?: __HttpHandlerOptions
@@ -397,7 +377,6 @@ export declare class Kinesis extends KinesisClient {
397
377
  options: __HttpHandlerOptions,
398
378
  cb: (err: any, data?: PutRecordCommandOutput) => void
399
379
  ): void;
400
-
401
380
  putRecords(
402
381
  args: PutRecordsCommandInput,
403
382
  options?: __HttpHandlerOptions
@@ -411,7 +390,6 @@ export declare class Kinesis extends KinesisClient {
411
390
  options: __HttpHandlerOptions,
412
391
  cb: (err: any, data?: PutRecordsCommandOutput) => void
413
392
  ): void;
414
-
415
393
  registerStreamConsumer(
416
394
  args: RegisterStreamConsumerCommandInput,
417
395
  options?: __HttpHandlerOptions
@@ -425,7 +403,6 @@ export declare class Kinesis extends KinesisClient {
425
403
  options: __HttpHandlerOptions,
426
404
  cb: (err: any, data?: RegisterStreamConsumerCommandOutput) => void
427
405
  ): void;
428
-
429
406
  removeTagsFromStream(
430
407
  args: RemoveTagsFromStreamCommandInput,
431
408
  options?: __HttpHandlerOptions
@@ -439,7 +416,6 @@ export declare class Kinesis extends KinesisClient {
439
416
  options: __HttpHandlerOptions,
440
417
  cb: (err: any, data?: RemoveTagsFromStreamCommandOutput) => void
441
418
  ): void;
442
-
443
419
  splitShard(
444
420
  args: SplitShardCommandInput,
445
421
  options?: __HttpHandlerOptions
@@ -453,7 +429,6 @@ export declare class Kinesis extends KinesisClient {
453
429
  options: __HttpHandlerOptions,
454
430
  cb: (err: any, data?: SplitShardCommandOutput) => void
455
431
  ): void;
456
-
457
432
  startStreamEncryption(
458
433
  args: StartStreamEncryptionCommandInput,
459
434
  options?: __HttpHandlerOptions
@@ -467,7 +442,6 @@ export declare class Kinesis extends KinesisClient {
467
442
  options: __HttpHandlerOptions,
468
443
  cb: (err: any, data?: StartStreamEncryptionCommandOutput) => void
469
444
  ): void;
470
-
471
445
  stopStreamEncryption(
472
446
  args: StopStreamEncryptionCommandInput,
473
447
  options?: __HttpHandlerOptions
@@ -481,7 +455,6 @@ export declare class Kinesis extends KinesisClient {
481
455
  options: __HttpHandlerOptions,
482
456
  cb: (err: any, data?: StopStreamEncryptionCommandOutput) => void
483
457
  ): void;
484
-
485
458
  subscribeToShard(
486
459
  args: SubscribeToShardCommandInput,
487
460
  options?: __HttpHandlerOptions
@@ -495,7 +468,6 @@ export declare class Kinesis extends KinesisClient {
495
468
  options: __HttpHandlerOptions,
496
469
  cb: (err: any, data?: SubscribeToShardCommandOutput) => void
497
470
  ): void;
498
-
499
471
  updateShardCount(
500
472
  args: UpdateShardCountCommandInput,
501
473
  options?: __HttpHandlerOptions
@@ -509,7 +481,6 @@ export declare class Kinesis extends KinesisClient {
509
481
  options: __HttpHandlerOptions,
510
482
  cb: (err: any, data?: UpdateShardCountCommandOutput) => void
511
483
  ): void;
512
-
513
484
  updateStreamMode(
514
485
  args: UpdateStreamModeCommandInput,
515
486
  options?: __HttpHandlerOptions
@@ -226,49 +226,27 @@ export declare type ServiceOutputTypes =
226
226
  export interface ClientDefaults
227
227
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
228
228
  requestHandler?: __HttpHandler;
229
-
230
229
  sha256?: __HashConstructor;
231
-
232
230
  urlParser?: __UrlParser;
233
-
234
231
  bodyLengthChecker?: __BodyLengthCalculator;
235
-
236
232
  streamCollector?: __StreamCollector;
237
-
238
233
  base64Decoder?: __Decoder;
239
-
240
234
  base64Encoder?: __Encoder;
241
-
242
235
  utf8Decoder?: __Decoder;
243
-
244
236
  utf8Encoder?: __Encoder;
245
-
246
237
  runtime?: string;
247
-
248
238
  disableHostPrefix?: boolean;
249
-
250
239
  maxAttempts?: number | __Provider<number>;
251
-
252
240
  retryMode?: string | __Provider<string>;
253
-
254
241
  logger?: __Logger;
255
-
256
242
  useDualstackEndpoint?: boolean | __Provider<boolean>;
257
-
258
243
  useFipsEndpoint?: boolean | __Provider<boolean>;
259
-
260
244
  serviceId?: string;
261
-
262
245
  region?: string | __Provider<string>;
263
-
264
246
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
265
-
266
247
  regionInfoProvider?: RegionInfoProvider;
267
-
268
248
  defaultUserAgentProvider?: Provider<__UserAgent>;
269
-
270
249
  eventStreamSerdeProvider?: __EventStreamSerdeProvider;
271
-
272
250
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
273
251
  }
274
252
  declare type KinesisClientConfigType = Partial<
@@ -282,7 +260,6 @@ declare type KinesisClientConfigType = Partial<
282
260
  AwsAuthInputConfig &
283
261
  UserAgentInputConfig &
284
262
  EventStreamSerdeInputConfig;
285
-
286
263
  export interface KinesisClientConfig extends KinesisClientConfigType {}
287
264
  declare type KinesisClientResolvedConfigType =
288
265
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
@@ -294,10 +271,8 @@ declare type KinesisClientResolvedConfigType =
294
271
  AwsAuthResolvedConfig &
295
272
  UserAgentResolvedConfig &
296
273
  EventStreamSerdeResolvedConfig;
297
-
298
274
  export interface KinesisClientResolvedConfig
299
275
  extends KinesisClientResolvedConfigType {}
300
-
301
276
  export declare class KinesisClient extends __Client<
302
277
  __HttpHandlerOptions,
303
278
  ServiceInputTypes,
@@ -306,7 +281,6 @@ export declare class KinesisClient extends __Client<
306
281
  > {
307
282
  readonly config: KinesisClientResolvedConfig;
308
283
  constructor(configuration: KinesisClientConfig);
309
-
310
284
  destroy(): void;
311
285
  }
312
286
  export {};
@@ -13,7 +13,6 @@ import {
13
13
  import { AddTagsToStreamInput } from "../models/models_0";
14
14
  export interface AddTagsToStreamCommandInput extends AddTagsToStreamInput {}
15
15
  export interface AddTagsToStreamCommandOutput extends __MetadataBearer {}
16
-
17
16
  export declare class AddTagsToStreamCommand extends $Command<
18
17
  AddTagsToStreamCommandInput,
19
18
  AddTagsToStreamCommandOutput,
@@ -21,7 +20,6 @@ export declare class AddTagsToStreamCommand extends $Command<
21
20
  > {
22
21
  readonly input: AddTagsToStreamCommandInput;
23
22
  constructor(input: AddTagsToStreamCommandInput);
24
-
25
23
  resolveMiddleware(
26
24
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
25
  configuration: KinesisClientResolvedConfig,
@@ -13,7 +13,6 @@ import {
13
13
  import { CreateStreamInput } from "../models/models_0";
14
14
  export interface CreateStreamCommandInput extends CreateStreamInput {}
15
15
  export interface CreateStreamCommandOutput extends __MetadataBearer {}
16
-
17
16
  export declare class CreateStreamCommand extends $Command<
18
17
  CreateStreamCommandInput,
19
18
  CreateStreamCommandOutput,
@@ -21,7 +20,6 @@ export declare class CreateStreamCommand extends $Command<
21
20
  > {
22
21
  readonly input: CreateStreamCommandInput;
23
22
  constructor(input: CreateStreamCommandInput);
24
-
25
23
  resolveMiddleware(
26
24
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
25
  configuration: KinesisClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface DecreaseStreamRetentionPeriodCommandInput
15
15
  extends DecreaseStreamRetentionPeriodInput {}
16
16
  export interface DecreaseStreamRetentionPeriodCommandOutput
17
17
  extends __MetadataBearer {}
18
-
19
18
  export declare class DecreaseStreamRetentionPeriodCommand extends $Command<
20
19
  DecreaseStreamRetentionPeriodCommandInput,
21
20
  DecreaseStreamRetentionPeriodCommandOutput,
@@ -23,7 +22,6 @@ export declare class DecreaseStreamRetentionPeriodCommand extends $Command<
23
22
  > {
24
23
  readonly input: DecreaseStreamRetentionPeriodCommandInput;
25
24
  constructor(input: DecreaseStreamRetentionPeriodCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: KinesisClientResolvedConfig,
@@ -13,7 +13,6 @@ import {
13
13
  import { DeleteStreamInput } from "../models/models_0";
14
14
  export interface DeleteStreamCommandInput extends DeleteStreamInput {}
15
15
  export interface DeleteStreamCommandOutput extends __MetadataBearer {}
16
-
17
16
  export declare class DeleteStreamCommand extends $Command<
18
17
  DeleteStreamCommandInput,
19
18
  DeleteStreamCommandOutput,
@@ -21,7 +20,6 @@ export declare class DeleteStreamCommand extends $Command<
21
20
  > {
22
21
  readonly input: DeleteStreamCommandInput;
23
22
  constructor(input: DeleteStreamCommandInput);
24
-
25
23
  resolveMiddleware(
26
24
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
25
  configuration: KinesisClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface DeregisterStreamConsumerCommandInput
15
15
  extends DeregisterStreamConsumerInput {}
16
16
  export interface DeregisterStreamConsumerCommandOutput
17
17
  extends __MetadataBearer {}
18
-
19
18
  export declare class DeregisterStreamConsumerCommand extends $Command<
20
19
  DeregisterStreamConsumerCommandInput,
21
20
  DeregisterStreamConsumerCommandOutput,
@@ -23,7 +22,6 @@ export declare class DeregisterStreamConsumerCommand extends $Command<
23
22
  > {
24
23
  readonly input: DeregisterStreamConsumerCommandInput;
25
24
  constructor(input: DeregisterStreamConsumerCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: KinesisClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface DescribeLimitsCommandInput extends DescribeLimitsInput {}
15
15
  export interface DescribeLimitsCommandOutput
16
16
  extends DescribeLimitsOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class DescribeLimitsCommand extends $Command<
20
19
  DescribeLimitsCommandInput,
21
20
  DescribeLimitsCommandOutput,
@@ -23,7 +22,6 @@ export declare class DescribeLimitsCommand extends $Command<
23
22
  > {
24
23
  readonly input: DescribeLimitsCommandInput;
25
24
  constructor(input: DescribeLimitsCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: KinesisClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface DescribeStreamCommandInput extends DescribeStreamInput {}
15
15
  export interface DescribeStreamCommandOutput
16
16
  extends DescribeStreamOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class DescribeStreamCommand extends $Command<
20
19
  DescribeStreamCommandInput,
21
20
  DescribeStreamCommandOutput,
@@ -23,7 +22,6 @@ export declare class DescribeStreamCommand extends $Command<
23
22
  > {
24
23
  readonly input: DescribeStreamCommandInput;
25
24
  constructor(input: DescribeStreamCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: KinesisClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DescribeStreamConsumerCommandInput
19
19
  export interface DescribeStreamConsumerCommandOutput
20
20
  extends DescribeStreamConsumerOutput,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DescribeStreamConsumerCommand extends $Command<
24
23
  DescribeStreamConsumerCommandInput,
25
24
  DescribeStreamConsumerCommandOutput,
@@ -27,7 +26,6 @@ export declare class DescribeStreamConsumerCommand extends $Command<
27
26
  > {
28
27
  readonly input: DescribeStreamConsumerCommandInput;
29
28
  constructor(input: DescribeStreamConsumerCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: KinesisClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DescribeStreamSummaryCommandInput
19
19
  export interface DescribeStreamSummaryCommandOutput
20
20
  extends DescribeStreamSummaryOutput,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DescribeStreamSummaryCommand extends $Command<
24
23
  DescribeStreamSummaryCommandInput,
25
24
  DescribeStreamSummaryCommandOutput,
@@ -27,7 +26,6 @@ export declare class DescribeStreamSummaryCommand extends $Command<
27
26
  > {
28
27
  readonly input: DescribeStreamSummaryCommandInput;
29
28
  constructor(input: DescribeStreamSummaryCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: KinesisClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DisableEnhancedMonitoringCommandInput
19
19
  export interface DisableEnhancedMonitoringCommandOutput
20
20
  extends EnhancedMonitoringOutput,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DisableEnhancedMonitoringCommand extends $Command<
24
23
  DisableEnhancedMonitoringCommandInput,
25
24
  DisableEnhancedMonitoringCommandOutput,
@@ -27,7 +26,6 @@ export declare class DisableEnhancedMonitoringCommand extends $Command<
27
26
  > {
28
27
  readonly input: DisableEnhancedMonitoringCommandInput;
29
28
  constructor(input: DisableEnhancedMonitoringCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: KinesisClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface EnableEnhancedMonitoringCommandInput
19
19
  export interface EnableEnhancedMonitoringCommandOutput
20
20
  extends EnhancedMonitoringOutput,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class EnableEnhancedMonitoringCommand extends $Command<
24
23
  EnableEnhancedMonitoringCommandInput,
25
24
  EnableEnhancedMonitoringCommandOutput,
@@ -27,7 +26,6 @@ export declare class EnableEnhancedMonitoringCommand extends $Command<
27
26
  > {
28
27
  readonly input: EnableEnhancedMonitoringCommandInput;
29
28
  constructor(input: EnableEnhancedMonitoringCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: KinesisClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface GetRecordsCommandInput extends GetRecordsInput {}
15
15
  export interface GetRecordsCommandOutput
16
16
  extends GetRecordsOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class GetRecordsCommand extends $Command<
20
19
  GetRecordsCommandInput,
21
20
  GetRecordsCommandOutput,
@@ -23,7 +22,6 @@ export declare class GetRecordsCommand extends $Command<
23
22
  > {
24
23
  readonly input: GetRecordsCommandInput;
25
24
  constructor(input: GetRecordsCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: KinesisClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface GetShardIteratorCommandInput extends GetShardIteratorInput {}
18
18
  export interface GetShardIteratorCommandOutput
19
19
  extends GetShardIteratorOutput,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class GetShardIteratorCommand extends $Command<
23
22
  GetShardIteratorCommandInput,
24
23
  GetShardIteratorCommandOutput,
@@ -26,7 +25,6 @@ export declare class GetShardIteratorCommand extends $Command<
26
25
  > {
27
26
  readonly input: GetShardIteratorCommandInput;
28
27
  constructor(input: GetShardIteratorCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: KinesisClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface IncreaseStreamRetentionPeriodCommandInput
15
15
  extends IncreaseStreamRetentionPeriodInput {}
16
16
  export interface IncreaseStreamRetentionPeriodCommandOutput
17
17
  extends __MetadataBearer {}
18
-
19
18
  export declare class IncreaseStreamRetentionPeriodCommand extends $Command<
20
19
  IncreaseStreamRetentionPeriodCommandInput,
21
20
  IncreaseStreamRetentionPeriodCommandOutput,
@@ -23,7 +22,6 @@ export declare class IncreaseStreamRetentionPeriodCommand extends $Command<
23
22
  > {
24
23
  readonly input: IncreaseStreamRetentionPeriodCommandInput;
25
24
  constructor(input: IncreaseStreamRetentionPeriodCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: KinesisClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface ListShardsCommandInput extends ListShardsInput {}
15
15
  export interface ListShardsCommandOutput
16
16
  extends ListShardsOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class ListShardsCommand extends $Command<
20
19
  ListShardsCommandInput,
21
20
  ListShardsCommandOutput,
@@ -23,7 +22,6 @@ export declare class ListShardsCommand extends $Command<
23
22
  > {
24
23
  readonly input: ListShardsCommandInput;
25
24
  constructor(input: ListShardsCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: KinesisClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface ListStreamConsumersCommandInput
19
19
  export interface ListStreamConsumersCommandOutput
20
20
  extends ListStreamConsumersOutput,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class ListStreamConsumersCommand extends $Command<
24
23
  ListStreamConsumersCommandInput,
25
24
  ListStreamConsumersCommandOutput,
@@ -27,7 +26,6 @@ export declare class ListStreamConsumersCommand extends $Command<
27
26
  > {
28
27
  readonly input: ListStreamConsumersCommandInput;
29
28
  constructor(input: ListStreamConsumersCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: KinesisClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface ListStreamsCommandInput extends ListStreamsInput {}
15
15
  export interface ListStreamsCommandOutput
16
16
  extends ListStreamsOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class ListStreamsCommand extends $Command<
20
19
  ListStreamsCommandInput,
21
20
  ListStreamsCommandOutput,
@@ -23,7 +22,6 @@ export declare class ListStreamsCommand extends $Command<
23
22
  > {
24
23
  readonly input: ListStreamsCommandInput;
25
24
  constructor(input: ListStreamsCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: KinesisClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface ListTagsForStreamCommandInput extends ListTagsForStreamInput {}
18
18
  export interface ListTagsForStreamCommandOutput
19
19
  extends ListTagsForStreamOutput,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class ListTagsForStreamCommand extends $Command<
23
22
  ListTagsForStreamCommandInput,
24
23
  ListTagsForStreamCommandOutput,
@@ -26,7 +25,6 @@ export declare class ListTagsForStreamCommand extends $Command<
26
25
  > {
27
26
  readonly input: ListTagsForStreamCommandInput;
28
27
  constructor(input: ListTagsForStreamCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: KinesisClientResolvedConfig,
@@ -13,7 +13,6 @@ import {
13
13
  import { MergeShardsInput } from "../models/models_0";
14
14
  export interface MergeShardsCommandInput extends MergeShardsInput {}
15
15
  export interface MergeShardsCommandOutput extends __MetadataBearer {}
16
-
17
16
  export declare class MergeShardsCommand extends $Command<
18
17
  MergeShardsCommandInput,
19
18
  MergeShardsCommandOutput,
@@ -21,7 +20,6 @@ export declare class MergeShardsCommand extends $Command<
21
20
  > {
22
21
  readonly input: MergeShardsCommandInput;
23
22
  constructor(input: MergeShardsCommandInput);
24
-
25
23
  resolveMiddleware(
26
24
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
25
  configuration: KinesisClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface PutRecordCommandInput extends PutRecordInput {}
15
15
  export interface PutRecordCommandOutput
16
16
  extends PutRecordOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class PutRecordCommand extends $Command<
20
19
  PutRecordCommandInput,
21
20
  PutRecordCommandOutput,
@@ -23,7 +22,6 @@ export declare class PutRecordCommand extends $Command<
23
22
  > {
24
23
  readonly input: PutRecordCommandInput;
25
24
  constructor(input: PutRecordCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: KinesisClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface PutRecordsCommandInput extends PutRecordsInput {}
15
15
  export interface PutRecordsCommandOutput
16
16
  extends PutRecordsOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class PutRecordsCommand extends $Command<
20
19
  PutRecordsCommandInput,
21
20
  PutRecordsCommandOutput,
@@ -23,7 +22,6 @@ export declare class PutRecordsCommand extends $Command<
23
22
  > {
24
23
  readonly input: PutRecordsCommandInput;
25
24
  constructor(input: PutRecordsCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: KinesisClientResolvedConfig,