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