@aws-sdk/client-kinesis 3.170.0 → 3.178.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 (44) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  3. package/dist-types/runtimeConfig.d.ts +1 -1
  4. package/dist-types/runtimeConfig.native.d.ts +1 -1
  5. package/dist-types/ts3.4/Kinesis.d.ts +0 -29
  6. package/dist-types/ts3.4/KinesisClient.d.ts +0 -26
  7. package/dist-types/ts3.4/commands/AddTagsToStreamCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/CreateStreamCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/DecreaseStreamRetentionPeriodCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/DeleteStreamCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/DeregisterStreamConsumerCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/DescribeStreamCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/DescribeStreamConsumerCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/DescribeStreamSummaryCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/DisableEnhancedMonitoringCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/EnableEnhancedMonitoringCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/GetRecordsCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/GetShardIteratorCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/IncreaseStreamRetentionPeriodCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/ListShardsCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/ListStreamConsumersCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/ListTagsForStreamCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/MergeShardsCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/PutRecordsCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/RegisterStreamConsumerCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/RemoveTagsFromStreamCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/commands/SplitShardCommand.d.ts +0 -2
  31. package/dist-types/ts3.4/commands/StartStreamEncryptionCommand.d.ts +0 -2
  32. package/dist-types/ts3.4/commands/StopStreamEncryptionCommand.d.ts +0 -2
  33. package/dist-types/ts3.4/commands/SubscribeToShardCommand.d.ts +0 -2
  34. package/dist-types/ts3.4/commands/UpdateShardCountCommand.d.ts +0 -2
  35. package/dist-types/ts3.4/commands/UpdateStreamModeCommand.d.ts +0 -2
  36. package/dist-types/ts3.4/models/KinesisServiceException.d.ts +0 -1
  37. package/dist-types/ts3.4/models/models_0.d.ts +0 -265
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  42. package/dist-types/ts3.4/waiters/waitForStreamExists.d.ts +0 -2
  43. package/dist-types/ts3.4/waiters/waitForStreamNotExists.d.ts +0 -2
  44. package/package.json +30 -30
@@ -1,59 +1,44 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { KinesisServiceException as __BaseException } from "./KinesisServiceException";
3
-
4
3
  export interface AddTagsToStreamInput {
5
4
  StreamName: string | undefined;
6
-
7
5
  Tags: Record<string, string> | undefined;
8
6
  }
9
-
10
7
  export declare class InvalidArgumentException extends __BaseException {
11
8
  readonly name: "InvalidArgumentException";
12
9
  readonly $fault: "client";
13
-
14
10
  constructor(
15
11
  opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
16
12
  );
17
13
  }
18
-
19
14
  export declare class LimitExceededException extends __BaseException {
20
15
  readonly name: "LimitExceededException";
21
16
  readonly $fault: "client";
22
-
23
17
  constructor(
24
18
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
25
19
  );
26
20
  }
27
-
28
21
  export declare class ResourceInUseException extends __BaseException {
29
22
  readonly name: "ResourceInUseException";
30
23
  readonly $fault: "client";
31
-
32
24
  constructor(
33
25
  opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
34
26
  );
35
27
  }
36
-
37
28
  export declare class ResourceNotFoundException extends __BaseException {
38
29
  readonly name: "ResourceNotFoundException";
39
30
  readonly $fault: "client";
40
-
41
31
  constructor(
42
32
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
43
33
  );
44
34
  }
45
-
46
35
  export interface HashKeyRange {
47
36
  StartingHashKey: string | undefined;
48
-
49
37
  EndingHashKey: string | undefined;
50
38
  }
51
-
52
39
  export interface ChildShard {
53
40
  ShardId: string | undefined;
54
-
55
41
  ParentShards: string[] | undefined;
56
-
57
42
  HashKeyRange: HashKeyRange | undefined;
58
43
  }
59
44
  export declare enum ConsumerStatus {
@@ -61,79 +46,54 @@ export declare enum ConsumerStatus {
61
46
  CREATING = "CREATING",
62
47
  DELETING = "DELETING",
63
48
  }
64
-
65
49
  export interface Consumer {
66
50
  ConsumerName: string | undefined;
67
-
68
51
  ConsumerARN: string | undefined;
69
-
70
52
  ConsumerStatus: ConsumerStatus | string | undefined;
71
-
72
53
  ConsumerCreationTimestamp: Date | undefined;
73
54
  }
74
-
75
55
  export interface ConsumerDescription {
76
56
  ConsumerName: string | undefined;
77
-
78
57
  ConsumerARN: string | undefined;
79
-
80
58
  ConsumerStatus: ConsumerStatus | string | undefined;
81
-
82
59
  ConsumerCreationTimestamp: Date | undefined;
83
-
84
60
  StreamARN: string | undefined;
85
61
  }
86
62
  export declare enum StreamMode {
87
63
  ON_DEMAND = "ON_DEMAND",
88
64
  PROVISIONED = "PROVISIONED",
89
65
  }
90
-
91
66
  export interface StreamModeDetails {
92
67
  StreamMode: StreamMode | string | undefined;
93
68
  }
94
-
95
69
  export interface CreateStreamInput {
96
70
  StreamName: string | undefined;
97
-
98
71
  ShardCount?: number;
99
-
100
72
  StreamModeDetails?: StreamModeDetails;
101
73
  }
102
-
103
74
  export interface DecreaseStreamRetentionPeriodInput {
104
75
  StreamName: string | undefined;
105
-
106
76
  RetentionPeriodHours: number | undefined;
107
77
  }
108
-
109
78
  export interface DeleteStreamInput {
110
79
  StreamName: string | undefined;
111
-
112
80
  EnforceConsumerDeletion?: boolean;
113
81
  }
114
82
  export interface DeregisterStreamConsumerInput {
115
83
  StreamARN?: string;
116
-
117
84
  ConsumerName?: string;
118
-
119
85
  ConsumerARN?: string;
120
86
  }
121
87
  export interface DescribeLimitsInput {}
122
88
  export interface DescribeLimitsOutput {
123
89
  ShardLimit: number | undefined;
124
-
125
90
  OpenShardCount: number | undefined;
126
-
127
91
  OnDemandStreamCount: number | undefined;
128
-
129
92
  OnDemandStreamCountLimit: number | undefined;
130
93
  }
131
-
132
94
  export interface DescribeStreamInput {
133
95
  StreamName: string | undefined;
134
-
135
96
  Limit?: number;
136
-
137
97
  ExclusiveStartShardId?: string;
138
98
  }
139
99
  export declare enum EncryptionType {
@@ -150,26 +110,18 @@ export declare enum MetricsName {
150
110
  READ_PROVISIONED_THROUGHPUT_EXCEEDED = "ReadProvisionedThroughputExceeded",
151
111
  WRITE_PROVISIONED_THROUGHPUT_EXCEEDED = "WriteProvisionedThroughputExceeded",
152
112
  }
153
-
154
113
  export interface EnhancedMetrics {
155
114
  ShardLevelMetrics?: (MetricsName | string)[];
156
115
  }
157
-
158
116
  export interface SequenceNumberRange {
159
117
  StartingSequenceNumber: string | undefined;
160
-
161
118
  EndingSequenceNumber?: string;
162
119
  }
163
-
164
120
  export interface Shard {
165
121
  ShardId: string | undefined;
166
-
167
122
  ParentShardId?: string;
168
-
169
123
  AdjacentParentShardId?: string;
170
-
171
124
  HashKeyRange: HashKeyRange | undefined;
172
-
173
125
  SequenceNumberRange: SequenceNumberRange | undefined;
174
126
  }
175
127
  export declare enum StreamStatus {
@@ -178,39 +130,25 @@ export declare enum StreamStatus {
178
130
  DELETING = "DELETING",
179
131
  UPDATING = "UPDATING",
180
132
  }
181
-
182
133
  export interface StreamDescription {
183
134
  StreamName: string | undefined;
184
-
185
135
  StreamARN: string | undefined;
186
-
187
136
  StreamStatus: StreamStatus | string | undefined;
188
-
189
137
  StreamModeDetails?: StreamModeDetails;
190
-
191
138
  Shards: Shard[] | undefined;
192
-
193
139
  HasMoreShards: boolean | undefined;
194
-
195
140
  RetentionPeriodHours: number | undefined;
196
-
197
141
  StreamCreationTimestamp: Date | undefined;
198
-
199
142
  EnhancedMonitoring: EnhancedMetrics[] | undefined;
200
-
201
143
  EncryptionType?: EncryptionType | string;
202
-
203
144
  KeyId?: string;
204
145
  }
205
-
206
146
  export interface DescribeStreamOutput {
207
147
  StreamDescription: StreamDescription | undefined;
208
148
  }
209
149
  export interface DescribeStreamConsumerInput {
210
150
  StreamARN?: string;
211
-
212
151
  ConsumerName?: string;
213
-
214
152
  ConsumerARN?: string;
215
153
  }
216
154
  export interface DescribeStreamConsumerOutput {
@@ -219,156 +157,109 @@ export interface DescribeStreamConsumerOutput {
219
157
  export interface DescribeStreamSummaryInput {
220
158
  StreamName: string | undefined;
221
159
  }
222
-
223
160
  export interface StreamDescriptionSummary {
224
161
  StreamName: string | undefined;
225
-
226
162
  StreamARN: string | undefined;
227
-
228
163
  StreamStatus: StreamStatus | string | undefined;
229
-
230
164
  StreamModeDetails?: StreamModeDetails;
231
-
232
165
  RetentionPeriodHours: number | undefined;
233
-
234
166
  StreamCreationTimestamp: Date | undefined;
235
-
236
167
  EnhancedMonitoring: EnhancedMetrics[] | undefined;
237
-
238
168
  EncryptionType?: EncryptionType | string;
239
-
240
169
  KeyId?: string;
241
-
242
170
  OpenShardCount: number | undefined;
243
-
244
171
  ConsumerCount?: number;
245
172
  }
246
173
  export interface DescribeStreamSummaryOutput {
247
174
  StreamDescriptionSummary: StreamDescriptionSummary | undefined;
248
175
  }
249
-
250
176
  export interface DisableEnhancedMonitoringInput {
251
177
  StreamName: string | undefined;
252
-
253
178
  ShardLevelMetrics: (MetricsName | string)[] | undefined;
254
179
  }
255
-
256
180
  export interface EnhancedMonitoringOutput {
257
181
  StreamName?: string;
258
-
259
182
  CurrentShardLevelMetrics?: (MetricsName | string)[];
260
-
261
183
  DesiredShardLevelMetrics?: (MetricsName | string)[];
262
184
  }
263
-
264
185
  export interface EnableEnhancedMonitoringInput {
265
186
  StreamName: string | undefined;
266
-
267
187
  ShardLevelMetrics: (MetricsName | string)[] | undefined;
268
188
  }
269
-
270
189
  export declare class ExpiredIteratorException extends __BaseException {
271
190
  readonly name: "ExpiredIteratorException";
272
191
  readonly $fault: "client";
273
-
274
192
  constructor(
275
193
  opts: __ExceptionOptionType<ExpiredIteratorException, __BaseException>
276
194
  );
277
195
  }
278
-
279
196
  export declare class ExpiredNextTokenException extends __BaseException {
280
197
  readonly name: "ExpiredNextTokenException";
281
198
  readonly $fault: "client";
282
-
283
199
  constructor(
284
200
  opts: __ExceptionOptionType<ExpiredNextTokenException, __BaseException>
285
201
  );
286
202
  }
287
-
288
203
  export interface GetRecordsInput {
289
204
  ShardIterator: string | undefined;
290
-
291
205
  Limit?: number;
292
206
  }
293
-
294
207
  export interface _Record {
295
208
  SequenceNumber: string | undefined;
296
-
297
209
  ApproximateArrivalTimestamp?: Date;
298
-
299
210
  Data: Uint8Array | undefined;
300
-
301
211
  PartitionKey: string | undefined;
302
-
303
212
  EncryptionType?: EncryptionType | string;
304
213
  }
305
-
306
214
  export interface GetRecordsOutput {
307
215
  Records: _Record[] | undefined;
308
-
309
216
  NextShardIterator?: string;
310
-
311
217
  MillisBehindLatest?: number;
312
-
313
218
  ChildShards?: ChildShard[];
314
219
  }
315
-
316
220
  export declare class KMSAccessDeniedException extends __BaseException {
317
221
  readonly name: "KMSAccessDeniedException";
318
222
  readonly $fault: "client";
319
-
320
223
  constructor(
321
224
  opts: __ExceptionOptionType<KMSAccessDeniedException, __BaseException>
322
225
  );
323
226
  }
324
-
325
227
  export declare class KMSDisabledException extends __BaseException {
326
228
  readonly name: "KMSDisabledException";
327
229
  readonly $fault: "client";
328
-
329
230
  constructor(
330
231
  opts: __ExceptionOptionType<KMSDisabledException, __BaseException>
331
232
  );
332
233
  }
333
-
334
234
  export declare class KMSInvalidStateException extends __BaseException {
335
235
  readonly name: "KMSInvalidStateException";
336
236
  readonly $fault: "client";
337
-
338
237
  constructor(
339
238
  opts: __ExceptionOptionType<KMSInvalidStateException, __BaseException>
340
239
  );
341
240
  }
342
-
343
241
  export declare class KMSNotFoundException extends __BaseException {
344
242
  readonly name: "KMSNotFoundException";
345
243
  readonly $fault: "client";
346
-
347
244
  constructor(
348
245
  opts: __ExceptionOptionType<KMSNotFoundException, __BaseException>
349
246
  );
350
247
  }
351
-
352
248
  export declare class KMSOptInRequired extends __BaseException {
353
249
  readonly name: "KMSOptInRequired";
354
250
  readonly $fault: "client";
355
-
356
251
  constructor(opts: __ExceptionOptionType<KMSOptInRequired, __BaseException>);
357
252
  }
358
-
359
253
  export declare class KMSThrottlingException extends __BaseException {
360
254
  readonly name: "KMSThrottlingException";
361
255
  readonly $fault: "client";
362
-
363
256
  constructor(
364
257
  opts: __ExceptionOptionType<KMSThrottlingException, __BaseException>
365
258
  );
366
259
  }
367
-
368
260
  export declare class ProvisionedThroughputExceededException extends __BaseException {
369
261
  readonly name: "ProvisionedThroughputExceededException";
370
262
  readonly $fault: "client";
371
-
372
263
  constructor(
373
264
  opts: __ExceptionOptionType<
374
265
  ProvisionedThroughputExceededException,
@@ -383,33 +274,23 @@ export declare enum ShardIteratorType {
383
274
  LATEST = "LATEST",
384
275
  TRIM_HORIZON = "TRIM_HORIZON",
385
276
  }
386
-
387
277
  export interface GetShardIteratorInput {
388
278
  StreamName: string | undefined;
389
-
390
279
  ShardId: string | undefined;
391
-
392
280
  ShardIteratorType: ShardIteratorType | string | undefined;
393
-
394
281
  StartingSequenceNumber?: string;
395
-
396
282
  Timestamp?: Date;
397
283
  }
398
-
399
284
  export interface GetShardIteratorOutput {
400
285
  ShardIterator?: string;
401
286
  }
402
-
403
287
  export interface IncreaseStreamRetentionPeriodInput {
404
288
  StreamName: string | undefined;
405
-
406
289
  RetentionPeriodHours: number | undefined;
407
290
  }
408
-
409
291
  export declare class InternalFailureException extends __BaseException {
410
292
  readonly name: "InternalFailureException";
411
293
  readonly $fault: "server";
412
-
413
294
  constructor(
414
295
  opts: __ExceptionOptionType<InternalFailureException, __BaseException>
415
296
  );
@@ -422,209 +303,140 @@ export declare enum ShardFilterType {
422
303
  FROM_TIMESTAMP = "FROM_TIMESTAMP",
423
304
  FROM_TRIM_HORIZON = "FROM_TRIM_HORIZON",
424
305
  }
425
-
426
306
  export interface ShardFilter {
427
307
  Type: ShardFilterType | string | undefined;
428
-
429
308
  ShardId?: string;
430
-
431
309
  Timestamp?: Date;
432
310
  }
433
311
  export interface ListShardsInput {
434
312
  StreamName?: string;
435
-
436
313
  NextToken?: string;
437
-
438
314
  ExclusiveStartShardId?: string;
439
-
440
315
  MaxResults?: number;
441
-
442
316
  StreamCreationTimestamp?: Date;
443
-
444
317
  ShardFilter?: ShardFilter;
445
318
  }
446
319
  export interface ListShardsOutput {
447
320
  Shards?: Shard[];
448
-
449
321
  NextToken?: string;
450
322
  }
451
323
  export interface ListStreamConsumersInput {
452
324
  StreamARN: string | undefined;
453
-
454
325
  NextToken?: string;
455
-
456
326
  MaxResults?: number;
457
-
458
327
  StreamCreationTimestamp?: Date;
459
328
  }
460
329
  export interface ListStreamConsumersOutput {
461
330
  Consumers?: Consumer[];
462
-
463
331
  NextToken?: string;
464
332
  }
465
-
466
333
  export interface ListStreamsInput {
467
334
  Limit?: number;
468
-
469
335
  ExclusiveStartStreamName?: string;
470
336
  }
471
-
472
337
  export interface ListStreamsOutput {
473
338
  StreamNames: string[] | undefined;
474
-
475
339
  HasMoreStreams: boolean | undefined;
476
340
  }
477
-
478
341
  export interface ListTagsForStreamInput {
479
342
  StreamName: string | undefined;
480
-
481
343
  ExclusiveStartTagKey?: string;
482
-
483
344
  Limit?: number;
484
345
  }
485
-
486
346
  export interface Tag {
487
347
  Key: string | undefined;
488
-
489
348
  Value?: string;
490
349
  }
491
-
492
350
  export interface ListTagsForStreamOutput {
493
351
  Tags: Tag[] | undefined;
494
-
495
352
  HasMoreTags: boolean | undefined;
496
353
  }
497
-
498
354
  export interface MergeShardsInput {
499
355
  StreamName: string | undefined;
500
-
501
356
  ShardToMerge: string | undefined;
502
-
503
357
  AdjacentShardToMerge: string | undefined;
504
358
  }
505
-
506
359
  export declare class ValidationException extends __BaseException {
507
360
  readonly name: "ValidationException";
508
361
  readonly $fault: "client";
509
-
510
362
  constructor(
511
363
  opts: __ExceptionOptionType<ValidationException, __BaseException>
512
364
  );
513
365
  }
514
-
515
366
  export interface PutRecordInput {
516
367
  StreamName: string | undefined;
517
-
518
368
  Data: Uint8Array | undefined;
519
-
520
369
  PartitionKey: string | undefined;
521
-
522
370
  ExplicitHashKey?: string;
523
-
524
371
  SequenceNumberForOrdering?: string;
525
372
  }
526
-
527
373
  export interface PutRecordOutput {
528
374
  ShardId: string | undefined;
529
-
530
375
  SequenceNumber: string | undefined;
531
-
532
376
  EncryptionType?: EncryptionType | string;
533
377
  }
534
-
535
378
  export interface PutRecordsRequestEntry {
536
379
  Data: Uint8Array | undefined;
537
-
538
380
  ExplicitHashKey?: string;
539
-
540
381
  PartitionKey: string | undefined;
541
382
  }
542
-
543
383
  export interface PutRecordsInput {
544
384
  Records: PutRecordsRequestEntry[] | undefined;
545
-
546
385
  StreamName: string | undefined;
547
386
  }
548
-
549
387
  export interface PutRecordsResultEntry {
550
388
  SequenceNumber?: string;
551
-
552
389
  ShardId?: string;
553
-
554
390
  ErrorCode?: string;
555
-
556
391
  ErrorMessage?: string;
557
392
  }
558
-
559
393
  export interface PutRecordsOutput {
560
394
  FailedRecordCount?: number;
561
-
562
395
  Records: PutRecordsResultEntry[] | undefined;
563
-
564
396
  EncryptionType?: EncryptionType | string;
565
397
  }
566
398
  export interface RegisterStreamConsumerInput {
567
399
  StreamARN: string | undefined;
568
-
569
400
  ConsumerName: string | undefined;
570
401
  }
571
402
  export interface RegisterStreamConsumerOutput {
572
403
  Consumer: Consumer | undefined;
573
404
  }
574
-
575
405
  export interface RemoveTagsFromStreamInput {
576
406
  StreamName: string | undefined;
577
-
578
407
  TagKeys: string[] | undefined;
579
408
  }
580
-
581
409
  export interface SplitShardInput {
582
410
  StreamName: string | undefined;
583
-
584
411
  ShardToSplit: string | undefined;
585
-
586
412
  NewStartingHashKey: string | undefined;
587
413
  }
588
414
  export interface StartStreamEncryptionInput {
589
415
  StreamName: string | undefined;
590
-
591
416
  EncryptionType: EncryptionType | string | undefined;
592
-
593
417
  KeyId: string | undefined;
594
418
  }
595
419
  export interface StopStreamEncryptionInput {
596
420
  StreamName: string | undefined;
597
-
598
421
  EncryptionType: EncryptionType | string | undefined;
599
-
600
422
  KeyId: string | undefined;
601
423
  }
602
-
603
424
  export interface StartingPosition {
604
425
  Type: ShardIteratorType | string | undefined;
605
-
606
426
  SequenceNumber?: string;
607
-
608
427
  Timestamp?: Date;
609
428
  }
610
429
  export interface SubscribeToShardInput {
611
430
  ConsumerARN: string | undefined;
612
-
613
431
  ShardId: string | undefined;
614
-
615
432
  StartingPosition: StartingPosition | undefined;
616
433
  }
617
-
618
434
  export interface SubscribeToShardEvent {
619
435
  Records: _Record[] | undefined;
620
-
621
436
  ContinuationSequenceNumber: string | undefined;
622
-
623
437
  MillisBehindLatest: number | undefined;
624
-
625
438
  ChildShards?: ChildShard[];
626
439
  }
627
-
628
440
  export declare type SubscribeToShardEventStream =
629
441
  | SubscribeToShardEventStream.InternalFailureExceptionMember
630
442
  | SubscribeToShardEventStream.KMSAccessDeniedExceptionMember
@@ -651,7 +463,6 @@ export declare namespace SubscribeToShardEventStream {
651
463
  InternalFailureException?: never;
652
464
  $unknown?: never;
653
465
  }
654
-
655
466
  interface ResourceNotFoundExceptionMember {
656
467
  SubscribeToShardEvent?: never;
657
468
  ResourceNotFoundException: ResourceNotFoundException;
@@ -665,7 +476,6 @@ export declare namespace SubscribeToShardEventStream {
665
476
  InternalFailureException?: never;
666
477
  $unknown?: never;
667
478
  }
668
-
669
479
  interface ResourceInUseExceptionMember {
670
480
  SubscribeToShardEvent?: never;
671
481
  ResourceNotFoundException?: never;
@@ -679,7 +489,6 @@ export declare namespace SubscribeToShardEventStream {
679
489
  InternalFailureException?: never;
680
490
  $unknown?: never;
681
491
  }
682
-
683
492
  interface KMSDisabledExceptionMember {
684
493
  SubscribeToShardEvent?: never;
685
494
  ResourceNotFoundException?: never;
@@ -693,7 +502,6 @@ export declare namespace SubscribeToShardEventStream {
693
502
  InternalFailureException?: never;
694
503
  $unknown?: never;
695
504
  }
696
-
697
505
  interface KMSInvalidStateExceptionMember {
698
506
  SubscribeToShardEvent?: never;
699
507
  ResourceNotFoundException?: never;
@@ -707,7 +515,6 @@ export declare namespace SubscribeToShardEventStream {
707
515
  InternalFailureException?: never;
708
516
  $unknown?: never;
709
517
  }
710
-
711
518
  interface KMSAccessDeniedExceptionMember {
712
519
  SubscribeToShardEvent?: never;
713
520
  ResourceNotFoundException?: never;
@@ -721,7 +528,6 @@ export declare namespace SubscribeToShardEventStream {
721
528
  InternalFailureException?: never;
722
529
  $unknown?: never;
723
530
  }
724
-
725
531
  interface KMSNotFoundExceptionMember {
726
532
  SubscribeToShardEvent?: never;
727
533
  ResourceNotFoundException?: never;
@@ -735,7 +541,6 @@ export declare namespace SubscribeToShardEventStream {
735
541
  InternalFailureException?: never;
736
542
  $unknown?: never;
737
543
  }
738
-
739
544
  interface KMSOptInRequiredMember {
740
545
  SubscribeToShardEvent?: never;
741
546
  ResourceNotFoundException?: never;
@@ -749,7 +554,6 @@ export declare namespace SubscribeToShardEventStream {
749
554
  InternalFailureException?: never;
750
555
  $unknown?: never;
751
556
  }
752
-
753
557
  interface KMSThrottlingExceptionMember {
754
558
  SubscribeToShardEvent?: never;
755
559
  ResourceNotFoundException?: never;
@@ -763,7 +567,6 @@ export declare namespace SubscribeToShardEventStream {
763
567
  InternalFailureException?: never;
764
568
  $unknown?: never;
765
569
  }
766
-
767
570
  interface InternalFailureExceptionMember {
768
571
  SubscribeToShardEvent?: never;
769
572
  ResourceNotFoundException?: never;
@@ -816,258 +619,190 @@ export declare enum ScalingType {
816
619
  }
817
620
  export interface UpdateShardCountInput {
818
621
  StreamName: string | undefined;
819
-
820
622
  TargetShardCount: number | undefined;
821
-
822
623
  ScalingType: ScalingType | string | undefined;
823
624
  }
824
625
  export interface UpdateShardCountOutput {
825
626
  StreamName?: string;
826
-
827
627
  CurrentShardCount?: number;
828
-
829
628
  TargetShardCount?: number;
830
629
  }
831
630
  export interface UpdateStreamModeInput {
832
631
  StreamARN: string | undefined;
833
-
834
632
  StreamModeDetails: StreamModeDetails | undefined;
835
633
  }
836
-
837
634
  export declare const AddTagsToStreamInputFilterSensitiveLog: (
838
635
  obj: AddTagsToStreamInput
839
636
  ) => any;
840
-
841
637
  export declare const HashKeyRangeFilterSensitiveLog: (obj: HashKeyRange) => any;
842
-
843
638
  export declare const ChildShardFilterSensitiveLog: (obj: ChildShard) => any;
844
-
845
639
  export declare const ConsumerFilterSensitiveLog: (obj: Consumer) => any;
846
-
847
640
  export declare const ConsumerDescriptionFilterSensitiveLog: (
848
641
  obj: ConsumerDescription
849
642
  ) => any;
850
-
851
643
  export declare const StreamModeDetailsFilterSensitiveLog: (
852
644
  obj: StreamModeDetails
853
645
  ) => any;
854
-
855
646
  export declare const CreateStreamInputFilterSensitiveLog: (
856
647
  obj: CreateStreamInput
857
648
  ) => any;
858
-
859
649
  export declare const DecreaseStreamRetentionPeriodInputFilterSensitiveLog: (
860
650
  obj: DecreaseStreamRetentionPeriodInput
861
651
  ) => any;
862
-
863
652
  export declare const DeleteStreamInputFilterSensitiveLog: (
864
653
  obj: DeleteStreamInput
865
654
  ) => any;
866
-
867
655
  export declare const DeregisterStreamConsumerInputFilterSensitiveLog: (
868
656
  obj: DeregisterStreamConsumerInput
869
657
  ) => any;
870
-
871
658
  export declare const DescribeLimitsInputFilterSensitiveLog: (
872
659
  obj: DescribeLimitsInput
873
660
  ) => any;
874
-
875
661
  export declare const DescribeLimitsOutputFilterSensitiveLog: (
876
662
  obj: DescribeLimitsOutput
877
663
  ) => any;
878
-
879
664
  export declare const DescribeStreamInputFilterSensitiveLog: (
880
665
  obj: DescribeStreamInput
881
666
  ) => any;
882
-
883
667
  export declare const EnhancedMetricsFilterSensitiveLog: (
884
668
  obj: EnhancedMetrics
885
669
  ) => any;
886
-
887
670
  export declare const SequenceNumberRangeFilterSensitiveLog: (
888
671
  obj: SequenceNumberRange
889
672
  ) => any;
890
-
891
673
  export declare const ShardFilterSensitiveLog: (obj: Shard) => any;
892
-
893
674
  export declare const StreamDescriptionFilterSensitiveLog: (
894
675
  obj: StreamDescription
895
676
  ) => any;
896
-
897
677
  export declare const DescribeStreamOutputFilterSensitiveLog: (
898
678
  obj: DescribeStreamOutput
899
679
  ) => any;
900
-
901
680
  export declare const DescribeStreamConsumerInputFilterSensitiveLog: (
902
681
  obj: DescribeStreamConsumerInput
903
682
  ) => any;
904
-
905
683
  export declare const DescribeStreamConsumerOutputFilterSensitiveLog: (
906
684
  obj: DescribeStreamConsumerOutput
907
685
  ) => any;
908
-
909
686
  export declare const DescribeStreamSummaryInputFilterSensitiveLog: (
910
687
  obj: DescribeStreamSummaryInput
911
688
  ) => any;
912
-
913
689
  export declare const StreamDescriptionSummaryFilterSensitiveLog: (
914
690
  obj: StreamDescriptionSummary
915
691
  ) => any;
916
-
917
692
  export declare const DescribeStreamSummaryOutputFilterSensitiveLog: (
918
693
  obj: DescribeStreamSummaryOutput
919
694
  ) => any;
920
-
921
695
  export declare const DisableEnhancedMonitoringInputFilterSensitiveLog: (
922
696
  obj: DisableEnhancedMonitoringInput
923
697
  ) => any;
924
-
925
698
  export declare const EnhancedMonitoringOutputFilterSensitiveLog: (
926
699
  obj: EnhancedMonitoringOutput
927
700
  ) => any;
928
-
929
701
  export declare const EnableEnhancedMonitoringInputFilterSensitiveLog: (
930
702
  obj: EnableEnhancedMonitoringInput
931
703
  ) => any;
932
-
933
704
  export declare const GetRecordsInputFilterSensitiveLog: (
934
705
  obj: GetRecordsInput
935
706
  ) => any;
936
-
937
707
  export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
938
-
939
708
  export declare const GetRecordsOutputFilterSensitiveLog: (
940
709
  obj: GetRecordsOutput
941
710
  ) => any;
942
-
943
711
  export declare const GetShardIteratorInputFilterSensitiveLog: (
944
712
  obj: GetShardIteratorInput
945
713
  ) => any;
946
-
947
714
  export declare const GetShardIteratorOutputFilterSensitiveLog: (
948
715
  obj: GetShardIteratorOutput
949
716
  ) => any;
950
-
951
717
  export declare const IncreaseStreamRetentionPeriodInputFilterSensitiveLog: (
952
718
  obj: IncreaseStreamRetentionPeriodInput
953
719
  ) => any;
954
-
955
720
  export declare const ShardFilterFilterSensitiveLog: (obj: ShardFilter) => any;
956
-
957
721
  export declare const ListShardsInputFilterSensitiveLog: (
958
722
  obj: ListShardsInput
959
723
  ) => any;
960
-
961
724
  export declare const ListShardsOutputFilterSensitiveLog: (
962
725
  obj: ListShardsOutput
963
726
  ) => any;
964
-
965
727
  export declare const ListStreamConsumersInputFilterSensitiveLog: (
966
728
  obj: ListStreamConsumersInput
967
729
  ) => any;
968
-
969
730
  export declare const ListStreamConsumersOutputFilterSensitiveLog: (
970
731
  obj: ListStreamConsumersOutput
971
732
  ) => any;
972
-
973
733
  export declare const ListStreamsInputFilterSensitiveLog: (
974
734
  obj: ListStreamsInput
975
735
  ) => any;
976
-
977
736
  export declare const ListStreamsOutputFilterSensitiveLog: (
978
737
  obj: ListStreamsOutput
979
738
  ) => any;
980
-
981
739
  export declare const ListTagsForStreamInputFilterSensitiveLog: (
982
740
  obj: ListTagsForStreamInput
983
741
  ) => any;
984
-
985
742
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
986
-
987
743
  export declare const ListTagsForStreamOutputFilterSensitiveLog: (
988
744
  obj: ListTagsForStreamOutput
989
745
  ) => any;
990
-
991
746
  export declare const MergeShardsInputFilterSensitiveLog: (
992
747
  obj: MergeShardsInput
993
748
  ) => any;
994
-
995
749
  export declare const PutRecordInputFilterSensitiveLog: (
996
750
  obj: PutRecordInput
997
751
  ) => any;
998
-
999
752
  export declare const PutRecordOutputFilterSensitiveLog: (
1000
753
  obj: PutRecordOutput
1001
754
  ) => any;
1002
-
1003
755
  export declare const PutRecordsRequestEntryFilterSensitiveLog: (
1004
756
  obj: PutRecordsRequestEntry
1005
757
  ) => any;
1006
-
1007
758
  export declare const PutRecordsInputFilterSensitiveLog: (
1008
759
  obj: PutRecordsInput
1009
760
  ) => any;
1010
-
1011
761
  export declare const PutRecordsResultEntryFilterSensitiveLog: (
1012
762
  obj: PutRecordsResultEntry
1013
763
  ) => any;
1014
-
1015
764
  export declare const PutRecordsOutputFilterSensitiveLog: (
1016
765
  obj: PutRecordsOutput
1017
766
  ) => any;
1018
-
1019
767
  export declare const RegisterStreamConsumerInputFilterSensitiveLog: (
1020
768
  obj: RegisterStreamConsumerInput
1021
769
  ) => any;
1022
-
1023
770
  export declare const RegisterStreamConsumerOutputFilterSensitiveLog: (
1024
771
  obj: RegisterStreamConsumerOutput
1025
772
  ) => any;
1026
-
1027
773
  export declare const RemoveTagsFromStreamInputFilterSensitiveLog: (
1028
774
  obj: RemoveTagsFromStreamInput
1029
775
  ) => any;
1030
-
1031
776
  export declare const SplitShardInputFilterSensitiveLog: (
1032
777
  obj: SplitShardInput
1033
778
  ) => any;
1034
-
1035
779
  export declare const StartStreamEncryptionInputFilterSensitiveLog: (
1036
780
  obj: StartStreamEncryptionInput
1037
781
  ) => any;
1038
-
1039
782
  export declare const StopStreamEncryptionInputFilterSensitiveLog: (
1040
783
  obj: StopStreamEncryptionInput
1041
784
  ) => any;
1042
-
1043
785
  export declare const StartingPositionFilterSensitiveLog: (
1044
786
  obj: StartingPosition
1045
787
  ) => any;
1046
-
1047
788
  export declare const SubscribeToShardInputFilterSensitiveLog: (
1048
789
  obj: SubscribeToShardInput
1049
790
  ) => any;
1050
-
1051
791
  export declare const SubscribeToShardEventFilterSensitiveLog: (
1052
792
  obj: SubscribeToShardEvent
1053
793
  ) => any;
1054
-
1055
794
  export declare const SubscribeToShardEventStreamFilterSensitiveLog: (
1056
795
  obj: SubscribeToShardEventStream
1057
796
  ) => any;
1058
-
1059
797
  export declare const SubscribeToShardOutputFilterSensitiveLog: (
1060
798
  obj: SubscribeToShardOutput
1061
799
  ) => any;
1062
-
1063
800
  export declare const UpdateShardCountInputFilterSensitiveLog: (
1064
801
  obj: UpdateShardCountInput
1065
802
  ) => any;
1066
-
1067
803
  export declare const UpdateShardCountOutputFilterSensitiveLog: (
1068
804
  obj: UpdateShardCountOutput
1069
805
  ) => any;
1070
-
1071
806
  export declare const UpdateStreamModeInputFilterSensitiveLog: (
1072
807
  obj: UpdateStreamModeInput
1073
808
  ) => any;