@aws-sdk/client-kinesis 3.169.0 → 3.171.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Kinesis.d.ts +497 -150
  3. package/dist-types/ts3.4/KinesisClient.d.ts +286 -105
  4. package/dist-types/ts3.4/commands/AddTagsToStreamCommand.d.ts +30 -17
  5. package/dist-types/ts3.4/commands/CreateStreamCommand.d.ts +30 -17
  6. package/dist-types/ts3.4/commands/DecreaseStreamRetentionPeriodCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/DeleteStreamCommand.d.ts +30 -17
  8. package/dist-types/ts3.4/commands/DeregisterStreamConsumerCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DescribeStreamCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/DescribeStreamConsumerCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/DescribeStreamSummaryCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DisableEnhancedMonitoringCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/EnableEnhancedMonitoringCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/GetRecordsCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/GetShardIteratorCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/IncreaseStreamRetentionPeriodCommand.d.ts +35 -17
  18. package/dist-types/ts3.4/commands/ListShardsCommand.d.ts +32 -17
  19. package/dist-types/ts3.4/commands/ListStreamConsumersCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/ListTagsForStreamCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/MergeShardsCommand.d.ts +30 -17
  23. package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/PutRecordsCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/RegisterStreamConsumerCommand.d.ts +39 -17
  26. package/dist-types/ts3.4/commands/RemoveTagsFromStreamCommand.d.ts +34 -17
  27. package/dist-types/ts3.4/commands/SplitShardCommand.d.ts +30 -17
  28. package/dist-types/ts3.4/commands/StartStreamEncryptionCommand.d.ts +34 -17
  29. package/dist-types/ts3.4/commands/StopStreamEncryptionCommand.d.ts +34 -17
  30. package/dist-types/ts3.4/commands/SubscribeToShardCommand.d.ts +35 -17
  31. package/dist-types/ts3.4/commands/UpdateShardCountCommand.d.ts +35 -17
  32. package/dist-types/ts3.4/commands/UpdateStreamModeCommand.d.ts +30 -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 +7 -6
  37. package/dist-types/ts3.4/models/index.d.ts +1 -1
  38. package/dist-types/ts3.4/models/models_0.d.ts +808 -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 +66 -39
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -39
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -38
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  47. package/dist-types/ts3.4/waiters/index.d.ts +2 -2
  48. package/dist-types/ts3.4/waiters/waitForStreamExists.d.ts +11 -7
  49. package/dist-types/ts3.4/waiters/waitForStreamNotExists.d.ts +11 -7
  50. package/package.json +38 -38
@@ -1,982 +1,808 @@
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
+ export interface AddTagsToStreamInput {
4
+ StreamName: string | undefined;
5
+ Tags: Record<string, string> | undefined;
6
+ }
7
+ export declare class InvalidArgumentException extends __BaseException {
8
+ readonly name: "InvalidArgumentException";
9
+ readonly $fault: "client";
10
+ constructor(
11
+ opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
12
+ );
13
+ }
14
+ export declare class LimitExceededException extends __BaseException {
15
+ readonly name: "LimitExceededException";
16
+ readonly $fault: "client";
17
+ constructor(
18
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
19
+ );
20
+ }
21
+ export declare class ResourceInUseException extends __BaseException {
22
+ readonly name: "ResourceInUseException";
23
+ readonly $fault: "client";
24
+ constructor(
25
+ opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
26
+ );
27
+ }
28
+ export declare class ResourceNotFoundException extends __BaseException {
29
+ readonly name: "ResourceNotFoundException";
30
+ readonly $fault: "client";
31
+ constructor(
32
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
33
+ );
34
+ }
35
+ export interface HashKeyRange {
36
+ StartingHashKey: string | undefined;
37
+ EndingHashKey: string | undefined;
38
+ }
39
+ export interface ChildShard {
40
+ ShardId: string | undefined;
41
+ ParentShards: string[] | undefined;
42
+ HashKeyRange: HashKeyRange | undefined;
43
+ }
44
+ export declare enum ConsumerStatus {
45
+ ACTIVE = "ACTIVE",
46
+ CREATING = "CREATING",
47
+ DELETING = "DELETING",
48
+ }
49
+ export interface Consumer {
50
+ ConsumerName: string | undefined;
51
+ ConsumerARN: string | undefined;
52
+ ConsumerStatus: ConsumerStatus | string | undefined;
53
+ ConsumerCreationTimestamp: Date | undefined;
54
+ }
55
+ export interface ConsumerDescription {
56
+ ConsumerName: string | undefined;
57
+ ConsumerARN: string | undefined;
58
+ ConsumerStatus: ConsumerStatus | string | undefined;
59
+ ConsumerCreationTimestamp: Date | undefined;
60
+ StreamARN: string | undefined;
61
+ }
62
+ export declare enum StreamMode {
63
+ ON_DEMAND = "ON_DEMAND",
64
+ PROVISIONED = "PROVISIONED",
65
+ }
66
+ export interface StreamModeDetails {
67
+ StreamMode: StreamMode | string | undefined;
68
+ }
69
+ export interface CreateStreamInput {
70
+ StreamName: string | undefined;
71
+ ShardCount?: number;
72
+ StreamModeDetails?: StreamModeDetails;
73
+ }
74
+ export interface DecreaseStreamRetentionPeriodInput {
75
+ StreamName: string | undefined;
76
+ RetentionPeriodHours: number | undefined;
77
+ }
78
+ export interface DeleteStreamInput {
79
+ StreamName: string | undefined;
80
+ EnforceConsumerDeletion?: boolean;
81
+ }
82
+ export interface DeregisterStreamConsumerInput {
83
+ StreamARN?: string;
84
+ ConsumerName?: string;
85
+ ConsumerARN?: string;
86
+ }
87
+ export interface DescribeLimitsInput {}
88
+ export interface DescribeLimitsOutput {
89
+ ShardLimit: number | undefined;
90
+ OpenShardCount: number | undefined;
91
+ OnDemandStreamCount: number | undefined;
92
+ OnDemandStreamCountLimit: number | undefined;
93
+ }
94
+ export interface DescribeStreamInput {
95
+ StreamName: string | undefined;
96
+ Limit?: number;
97
+ ExclusiveStartShardId?: string;
98
+ }
99
+ export declare enum EncryptionType {
100
+ KMS = "KMS",
101
+ NONE = "NONE",
102
+ }
103
+ export declare enum MetricsName {
104
+ ALL = "ALL",
105
+ INCOMING_BYTES = "IncomingBytes",
106
+ INCOMING_RECORDS = "IncomingRecords",
107
+ ITERATOR_AGE_MILLISECONDS = "IteratorAgeMilliseconds",
108
+ OUTGOING_BYTES = "OutgoingBytes",
109
+ OUTGOING_RECORDS = "OutgoingRecords",
110
+ READ_PROVISIONED_THROUGHPUT_EXCEEDED = "ReadProvisionedThroughputExceeded",
111
+ WRITE_PROVISIONED_THROUGHPUT_EXCEEDED = "WriteProvisionedThroughputExceeded",
112
+ }
113
+ export interface EnhancedMetrics {
114
+ ShardLevelMetrics?: (MetricsName | string)[];
115
+ }
116
+ export interface SequenceNumberRange {
117
+ StartingSequenceNumber: string | undefined;
118
+ EndingSequenceNumber?: string;
119
+ }
120
+ export interface Shard {
121
+ ShardId: string | undefined;
122
+ ParentShardId?: string;
123
+ AdjacentParentShardId?: string;
124
+ HashKeyRange: HashKeyRange | undefined;
125
+ SequenceNumberRange: SequenceNumberRange | undefined;
126
+ }
127
+ export declare enum StreamStatus {
128
+ ACTIVE = "ACTIVE",
129
+ CREATING = "CREATING",
130
+ DELETING = "DELETING",
131
+ UPDATING = "UPDATING",
132
+ }
133
+ export interface StreamDescription {
134
+ StreamName: string | undefined;
135
+ StreamARN: string | undefined;
136
+ StreamStatus: StreamStatus | string | undefined;
137
+ StreamModeDetails?: StreamModeDetails;
138
+ Shards: Shard[] | undefined;
139
+ HasMoreShards: boolean | undefined;
140
+ RetentionPeriodHours: number | undefined;
141
+ StreamCreationTimestamp: Date | undefined;
142
+ EnhancedMonitoring: EnhancedMetrics[] | undefined;
143
+ EncryptionType?: EncryptionType | string;
144
+ KeyId?: string;
145
+ }
146
+ export interface DescribeStreamOutput {
147
+ StreamDescription: StreamDescription | undefined;
148
+ }
149
+ export interface DescribeStreamConsumerInput {
150
+ StreamARN?: string;
151
+ ConsumerName?: string;
152
+ ConsumerARN?: string;
153
+ }
154
+ export interface DescribeStreamConsumerOutput {
155
+ ConsumerDescription: ConsumerDescription | undefined;
156
+ }
157
+ export interface DescribeStreamSummaryInput {
158
+ StreamName: string | undefined;
159
+ }
160
+ export interface StreamDescriptionSummary {
161
+ StreamName: string | undefined;
162
+ StreamARN: string | undefined;
163
+ StreamStatus: StreamStatus | string | undefined;
164
+ StreamModeDetails?: StreamModeDetails;
165
+ RetentionPeriodHours: number | undefined;
166
+ StreamCreationTimestamp: Date | undefined;
167
+ EnhancedMonitoring: EnhancedMetrics[] | undefined;
168
+ EncryptionType?: EncryptionType | string;
169
+ KeyId?: string;
170
+ OpenShardCount: number | undefined;
171
+ ConsumerCount?: number;
172
+ }
173
+ export interface DescribeStreamSummaryOutput {
174
+ StreamDescriptionSummary: StreamDescriptionSummary | undefined;
175
+ }
176
+ export interface DisableEnhancedMonitoringInput {
177
+ StreamName: string | undefined;
178
+ ShardLevelMetrics: (MetricsName | string)[] | undefined;
179
+ }
180
+ export interface EnhancedMonitoringOutput {
181
+ StreamName?: string;
182
+ CurrentShardLevelMetrics?: (MetricsName | string)[];
183
+ DesiredShardLevelMetrics?: (MetricsName | string)[];
184
+ }
185
+ export interface EnableEnhancedMonitoringInput {
186
+ StreamName: string | undefined;
187
+ ShardLevelMetrics: (MetricsName | string)[] | undefined;
188
+ }
189
+ export declare class ExpiredIteratorException extends __BaseException {
190
+ readonly name: "ExpiredIteratorException";
191
+ readonly $fault: "client";
192
+ constructor(
193
+ opts: __ExceptionOptionType<ExpiredIteratorException, __BaseException>
194
+ );
195
+ }
196
+ export declare class ExpiredNextTokenException extends __BaseException {
197
+ readonly name: "ExpiredNextTokenException";
198
+ readonly $fault: "client";
199
+ constructor(
200
+ opts: __ExceptionOptionType<ExpiredNextTokenException, __BaseException>
201
+ );
202
+ }
203
+ export interface GetRecordsInput {
204
+ ShardIterator: string | undefined;
205
+ Limit?: number;
206
+ }
207
+ export interface _Record {
208
+ SequenceNumber: string | undefined;
209
+ ApproximateArrivalTimestamp?: Date;
210
+ Data: Uint8Array | undefined;
211
+ PartitionKey: string | undefined;
212
+ EncryptionType?: EncryptionType | string;
213
+ }
214
+ export interface GetRecordsOutput {
215
+ Records: _Record[] | undefined;
216
+ NextShardIterator?: string;
217
+ MillisBehindLatest?: number;
218
+ ChildShards?: ChildShard[];
219
+ }
220
+ export declare class KMSAccessDeniedException extends __BaseException {
221
+ readonly name: "KMSAccessDeniedException";
222
+ readonly $fault: "client";
223
+ constructor(
224
+ opts: __ExceptionOptionType<KMSAccessDeniedException, __BaseException>
225
+ );
226
+ }
227
+ export declare class KMSDisabledException extends __BaseException {
228
+ readonly name: "KMSDisabledException";
229
+ readonly $fault: "client";
230
+ constructor(
231
+ opts: __ExceptionOptionType<KMSDisabledException, __BaseException>
232
+ );
233
+ }
234
+ export declare class KMSInvalidStateException extends __BaseException {
235
+ readonly name: "KMSInvalidStateException";
236
+ readonly $fault: "client";
237
+ constructor(
238
+ opts: __ExceptionOptionType<KMSInvalidStateException, __BaseException>
239
+ );
240
+ }
241
+ export declare class KMSNotFoundException extends __BaseException {
242
+ readonly name: "KMSNotFoundException";
243
+ readonly $fault: "client";
244
+ constructor(
245
+ opts: __ExceptionOptionType<KMSNotFoundException, __BaseException>
246
+ );
247
+ }
248
+ export declare class KMSOptInRequired extends __BaseException {
249
+ readonly name: "KMSOptInRequired";
250
+ readonly $fault: "client";
251
+ constructor(opts: __ExceptionOptionType<KMSOptInRequired, __BaseException>);
252
+ }
253
+ export declare class KMSThrottlingException extends __BaseException {
254
+ readonly name: "KMSThrottlingException";
255
+ readonly $fault: "client";
256
+ constructor(
257
+ opts: __ExceptionOptionType<KMSThrottlingException, __BaseException>
258
+ );
259
+ }
260
+ export declare class ProvisionedThroughputExceededException extends __BaseException {
261
+ readonly name: "ProvisionedThroughputExceededException";
262
+ readonly $fault: "client";
263
+ constructor(
264
+ opts: __ExceptionOptionType<
265
+ ProvisionedThroughputExceededException,
266
+ __BaseException
267
+ >
268
+ );
269
+ }
270
+ export declare enum ShardIteratorType {
271
+ AFTER_SEQUENCE_NUMBER = "AFTER_SEQUENCE_NUMBER",
272
+ AT_SEQUENCE_NUMBER = "AT_SEQUENCE_NUMBER",
273
+ AT_TIMESTAMP = "AT_TIMESTAMP",
274
+ LATEST = "LATEST",
275
+ TRIM_HORIZON = "TRIM_HORIZON",
276
+ }
277
+ export interface GetShardIteratorInput {
278
+ StreamName: string | undefined;
279
+ ShardId: string | undefined;
280
+ ShardIteratorType: ShardIteratorType | string | undefined;
281
+ StartingSequenceNumber?: string;
282
+ Timestamp?: Date;
283
+ }
284
+ export interface GetShardIteratorOutput {
285
+ ShardIterator?: string;
286
+ }
287
+ export interface IncreaseStreamRetentionPeriodInput {
288
+ StreamName: string | undefined;
289
+ RetentionPeriodHours: number | undefined;
290
+ }
291
+ export declare class InternalFailureException extends __BaseException {
292
+ readonly name: "InternalFailureException";
293
+ readonly $fault: "server";
294
+ constructor(
295
+ opts: __ExceptionOptionType<InternalFailureException, __BaseException>
296
+ );
297
+ }
298
+ export declare enum ShardFilterType {
299
+ AFTER_SHARD_ID = "AFTER_SHARD_ID",
300
+ AT_LATEST = "AT_LATEST",
301
+ AT_TIMESTAMP = "AT_TIMESTAMP",
302
+ AT_TRIM_HORIZON = "AT_TRIM_HORIZON",
303
+ FROM_TIMESTAMP = "FROM_TIMESTAMP",
304
+ FROM_TRIM_HORIZON = "FROM_TRIM_HORIZON",
305
+ }
306
+ export interface ShardFilter {
307
+ Type: ShardFilterType | string | undefined;
308
+ ShardId?: string;
309
+ Timestamp?: Date;
310
+ }
311
+ export interface ListShardsInput {
312
+ StreamName?: string;
313
+ NextToken?: string;
314
+ ExclusiveStartShardId?: string;
315
+ MaxResults?: number;
316
+ StreamCreationTimestamp?: Date;
317
+ ShardFilter?: ShardFilter;
318
+ }
319
+ export interface ListShardsOutput {
320
+ Shards?: Shard[];
321
+ NextToken?: string;
322
+ }
323
+ export interface ListStreamConsumersInput {
324
+ StreamARN: string | undefined;
325
+ NextToken?: string;
326
+ MaxResults?: number;
327
+ StreamCreationTimestamp?: Date;
328
+ }
329
+ export interface ListStreamConsumersOutput {
330
+ Consumers?: Consumer[];
331
+ NextToken?: string;
332
+ }
333
+ export interface ListStreamsInput {
334
+ Limit?: number;
335
+ ExclusiveStartStreamName?: string;
336
+ }
337
+ export interface ListStreamsOutput {
338
+ StreamNames: string[] | undefined;
339
+ HasMoreStreams: boolean | undefined;
340
+ }
341
+ export interface ListTagsForStreamInput {
342
+ StreamName: string | undefined;
343
+ ExclusiveStartTagKey?: string;
344
+ Limit?: number;
345
+ }
346
+ export interface Tag {
347
+ Key: string | undefined;
348
+ Value?: string;
349
+ }
350
+ export interface ListTagsForStreamOutput {
351
+ Tags: Tag[] | undefined;
352
+ HasMoreTags: boolean | undefined;
353
+ }
354
+ export interface MergeShardsInput {
355
+ StreamName: string | undefined;
356
+ ShardToMerge: string | undefined;
357
+ AdjacentShardToMerge: string | undefined;
358
+ }
359
+ export declare class ValidationException extends __BaseException {
360
+ readonly name: "ValidationException";
361
+ readonly $fault: "client";
362
+ constructor(
363
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
364
+ );
365
+ }
366
+ export interface PutRecordInput {
367
+ StreamName: string | undefined;
368
+ Data: Uint8Array | undefined;
369
+ PartitionKey: string | undefined;
370
+ ExplicitHashKey?: string;
371
+ SequenceNumberForOrdering?: string;
372
+ }
373
+ export interface PutRecordOutput {
374
+ ShardId: string | undefined;
375
+ SequenceNumber: string | undefined;
376
+ EncryptionType?: EncryptionType | string;
377
+ }
378
+ export interface PutRecordsRequestEntry {
379
+ Data: Uint8Array | undefined;
380
+ ExplicitHashKey?: string;
381
+ PartitionKey: string | undefined;
382
+ }
383
+ export interface PutRecordsInput {
384
+ Records: PutRecordsRequestEntry[] | undefined;
385
+ StreamName: string | undefined;
386
+ }
387
+ export interface PutRecordsResultEntry {
388
+ SequenceNumber?: string;
389
+ ShardId?: string;
390
+ ErrorCode?: string;
391
+ ErrorMessage?: string;
392
+ }
393
+ export interface PutRecordsOutput {
394
+ FailedRecordCount?: number;
395
+ Records: PutRecordsResultEntry[] | undefined;
396
+ EncryptionType?: EncryptionType | string;
397
+ }
398
+ export interface RegisterStreamConsumerInput {
399
+ StreamARN: string | undefined;
400
+ ConsumerName: string | undefined;
401
+ }
402
+ export interface RegisterStreamConsumerOutput {
403
+ Consumer: Consumer | undefined;
404
+ }
405
+ export interface RemoveTagsFromStreamInput {
406
+ StreamName: string | undefined;
407
+ TagKeys: string[] | undefined;
408
+ }
409
+ export interface SplitShardInput {
410
+ StreamName: string | undefined;
411
+ ShardToSplit: string | undefined;
412
+ NewStartingHashKey: string | undefined;
413
+ }
414
+ export interface StartStreamEncryptionInput {
415
+ StreamName: string | undefined;
416
+ EncryptionType: EncryptionType | string | undefined;
417
+ KeyId: string | undefined;
418
+ }
419
+ export interface StopStreamEncryptionInput {
420
+ StreamName: string | undefined;
421
+ EncryptionType: EncryptionType | string | undefined;
422
+ KeyId: string | undefined;
423
+ }
424
+ export interface StartingPosition {
425
+ Type: ShardIteratorType | string | undefined;
426
+ SequenceNumber?: string;
427
+ Timestamp?: Date;
428
+ }
429
+ export interface SubscribeToShardInput {
430
+ ConsumerARN: string | undefined;
431
+ ShardId: string | undefined;
432
+ StartingPosition: StartingPosition | undefined;
433
+ }
434
+ export interface SubscribeToShardEvent {
435
+ Records: _Record[] | undefined;
436
+ ContinuationSequenceNumber: string | undefined;
437
+ MillisBehindLatest: number | undefined;
438
+ ChildShards?: ChildShard[];
439
+ }
440
+ export declare type SubscribeToShardEventStream =
441
+ | SubscribeToShardEventStream.InternalFailureExceptionMember
442
+ | SubscribeToShardEventStream.KMSAccessDeniedExceptionMember
443
+ | SubscribeToShardEventStream.KMSDisabledExceptionMember
444
+ | SubscribeToShardEventStream.KMSInvalidStateExceptionMember
445
+ | SubscribeToShardEventStream.KMSNotFoundExceptionMember
446
+ | SubscribeToShardEventStream.KMSOptInRequiredMember
447
+ | SubscribeToShardEventStream.KMSThrottlingExceptionMember
448
+ | SubscribeToShardEventStream.ResourceInUseExceptionMember
449
+ | SubscribeToShardEventStream.ResourceNotFoundExceptionMember
450
+ | SubscribeToShardEventStream.SubscribeToShardEventMember
451
+ | SubscribeToShardEventStream.$UnknownMember;
452
+ export declare namespace SubscribeToShardEventStream {
453
+ interface SubscribeToShardEventMember {
454
+ SubscribeToShardEvent: SubscribeToShardEvent;
455
+ ResourceNotFoundException?: never;
456
+ ResourceInUseException?: never;
457
+ KMSDisabledException?: never;
458
+ KMSInvalidStateException?: never;
459
+ KMSAccessDeniedException?: never;
460
+ KMSNotFoundException?: never;
461
+ KMSOptInRequired?: never;
462
+ KMSThrottlingException?: never;
463
+ InternalFailureException?: never;
464
+ $unknown?: never;
465
+ }
466
+ interface ResourceNotFoundExceptionMember {
467
+ SubscribeToShardEvent?: never;
468
+ ResourceNotFoundException: ResourceNotFoundException;
469
+ ResourceInUseException?: never;
470
+ KMSDisabledException?: never;
471
+ KMSInvalidStateException?: never;
472
+ KMSAccessDeniedException?: never;
473
+ KMSNotFoundException?: never;
474
+ KMSOptInRequired?: never;
475
+ KMSThrottlingException?: never;
476
+ InternalFailureException?: never;
477
+ $unknown?: never;
478
+ }
479
+ interface ResourceInUseExceptionMember {
480
+ SubscribeToShardEvent?: never;
481
+ ResourceNotFoundException?: never;
482
+ ResourceInUseException: ResourceInUseException;
483
+ KMSDisabledException?: never;
484
+ KMSInvalidStateException?: never;
485
+ KMSAccessDeniedException?: never;
486
+ KMSNotFoundException?: never;
487
+ KMSOptInRequired?: never;
488
+ KMSThrottlingException?: never;
489
+ InternalFailureException?: never;
490
+ $unknown?: never;
491
+ }
492
+ interface KMSDisabledExceptionMember {
493
+ SubscribeToShardEvent?: never;
494
+ ResourceNotFoundException?: never;
495
+ ResourceInUseException?: never;
496
+ KMSDisabledException: KMSDisabledException;
497
+ KMSInvalidStateException?: never;
498
+ KMSAccessDeniedException?: never;
499
+ KMSNotFoundException?: never;
500
+ KMSOptInRequired?: never;
501
+ KMSThrottlingException?: never;
502
+ InternalFailureException?: never;
503
+ $unknown?: never;
504
+ }
505
+ interface KMSInvalidStateExceptionMember {
506
+ SubscribeToShardEvent?: never;
507
+ ResourceNotFoundException?: never;
508
+ ResourceInUseException?: never;
509
+ KMSDisabledException?: never;
510
+ KMSInvalidStateException: KMSInvalidStateException;
511
+ KMSAccessDeniedException?: never;
512
+ KMSNotFoundException?: never;
513
+ KMSOptInRequired?: never;
514
+ KMSThrottlingException?: never;
515
+ InternalFailureException?: never;
516
+ $unknown?: never;
517
+ }
518
+ interface KMSAccessDeniedExceptionMember {
519
+ SubscribeToShardEvent?: never;
520
+ ResourceNotFoundException?: never;
521
+ ResourceInUseException?: never;
522
+ KMSDisabledException?: never;
523
+ KMSInvalidStateException?: never;
524
+ KMSAccessDeniedException: KMSAccessDeniedException;
525
+ KMSNotFoundException?: never;
526
+ KMSOptInRequired?: never;
527
+ KMSThrottlingException?: never;
528
+ InternalFailureException?: never;
529
+ $unknown?: never;
530
+ }
531
+ interface KMSNotFoundExceptionMember {
532
+ SubscribeToShardEvent?: never;
533
+ ResourceNotFoundException?: never;
534
+ ResourceInUseException?: never;
535
+ KMSDisabledException?: never;
536
+ KMSInvalidStateException?: never;
537
+ KMSAccessDeniedException?: never;
538
+ KMSNotFoundException: KMSNotFoundException;
539
+ KMSOptInRequired?: never;
540
+ KMSThrottlingException?: never;
541
+ InternalFailureException?: never;
542
+ $unknown?: never;
543
+ }
544
+ interface KMSOptInRequiredMember {
545
+ SubscribeToShardEvent?: never;
546
+ ResourceNotFoundException?: never;
547
+ ResourceInUseException?: never;
548
+ KMSDisabledException?: never;
549
+ KMSInvalidStateException?: never;
550
+ KMSAccessDeniedException?: never;
551
+ KMSNotFoundException?: never;
552
+ KMSOptInRequired: KMSOptInRequired;
553
+ KMSThrottlingException?: never;
554
+ InternalFailureException?: never;
555
+ $unknown?: never;
556
+ }
557
+ interface KMSThrottlingExceptionMember {
558
+ SubscribeToShardEvent?: never;
559
+ ResourceNotFoundException?: never;
560
+ ResourceInUseException?: never;
561
+ KMSDisabledException?: never;
562
+ KMSInvalidStateException?: never;
563
+ KMSAccessDeniedException?: never;
564
+ KMSNotFoundException?: never;
565
+ KMSOptInRequired?: never;
566
+ KMSThrottlingException: KMSThrottlingException;
567
+ InternalFailureException?: never;
568
+ $unknown?: never;
569
+ }
570
+ interface InternalFailureExceptionMember {
571
+ SubscribeToShardEvent?: never;
572
+ ResourceNotFoundException?: never;
573
+ ResourceInUseException?: never;
574
+ KMSDisabledException?: never;
575
+ KMSInvalidStateException?: never;
576
+ KMSAccessDeniedException?: never;
577
+ KMSNotFoundException?: never;
578
+ KMSOptInRequired?: never;
579
+ KMSThrottlingException?: never;
580
+ InternalFailureException: InternalFailureException;
581
+ $unknown?: never;
582
+ }
583
+ interface $UnknownMember {
584
+ SubscribeToShardEvent?: never;
585
+ ResourceNotFoundException?: never;
586
+ ResourceInUseException?: never;
587
+ KMSDisabledException?: never;
588
+ KMSInvalidStateException?: never;
589
+ KMSAccessDeniedException?: never;
590
+ KMSNotFoundException?: never;
591
+ KMSOptInRequired?: never;
592
+ KMSThrottlingException?: never;
593
+ InternalFailureException?: never;
594
+ $unknown: [string, any];
595
+ }
596
+ interface Visitor<T> {
597
+ SubscribeToShardEvent: (value: SubscribeToShardEvent) => T;
598
+ ResourceNotFoundException: (value: ResourceNotFoundException) => T;
599
+ ResourceInUseException: (value: ResourceInUseException) => T;
600
+ KMSDisabledException: (value: KMSDisabledException) => T;
601
+ KMSInvalidStateException: (value: KMSInvalidStateException) => T;
602
+ KMSAccessDeniedException: (value: KMSAccessDeniedException) => T;
603
+ KMSNotFoundException: (value: KMSNotFoundException) => T;
604
+ KMSOptInRequired: (value: KMSOptInRequired) => T;
605
+ KMSThrottlingException: (value: KMSThrottlingException) => T;
606
+ InternalFailureException: (value: InternalFailureException) => T;
607
+ _: (name: string, value: any) => T;
608
+ }
609
+ const visit: <T>(
610
+ value: SubscribeToShardEventStream,
611
+ visitor: Visitor<T>
612
+ ) => T;
613
+ }
614
+ export interface SubscribeToShardOutput {
615
+ EventStream: AsyncIterable<SubscribeToShardEventStream> | undefined;
616
+ }
617
+ export declare enum ScalingType {
618
+ UNIFORM_SCALING = "UNIFORM_SCALING",
619
+ }
620
+ export interface UpdateShardCountInput {
621
+ StreamName: string | undefined;
622
+ TargetShardCount: number | undefined;
623
+ ScalingType: ScalingType | string | undefined;
624
+ }
625
+ export interface UpdateShardCountOutput {
626
+ StreamName?: string;
627
+ CurrentShardCount?: number;
628
+ TargetShardCount?: number;
629
+ }
630
+ export interface UpdateStreamModeInput {
631
+ StreamARN: string | undefined;
632
+ StreamModeDetails: StreamModeDetails | undefined;
633
+ }
634
+ export declare const AddTagsToStreamInputFilterSensitiveLog: (
635
+ obj: AddTagsToStreamInput
636
+ ) => any;
637
+ export declare const HashKeyRangeFilterSensitiveLog: (obj: HashKeyRange) => any;
638
+ export declare const ChildShardFilterSensitiveLog: (obj: ChildShard) => any;
639
+ export declare const ConsumerFilterSensitiveLog: (obj: Consumer) => any;
640
+ export declare const ConsumerDescriptionFilterSensitiveLog: (
641
+ obj: ConsumerDescription
642
+ ) => any;
643
+ export declare const StreamModeDetailsFilterSensitiveLog: (
644
+ obj: StreamModeDetails
645
+ ) => any;
646
+ export declare const CreateStreamInputFilterSensitiveLog: (
647
+ obj: CreateStreamInput
648
+ ) => any;
649
+ export declare const DecreaseStreamRetentionPeriodInputFilterSensitiveLog: (
650
+ obj: DecreaseStreamRetentionPeriodInput
651
+ ) => any;
652
+ export declare const DeleteStreamInputFilterSensitiveLog: (
653
+ obj: DeleteStreamInput
654
+ ) => any;
655
+ export declare const DeregisterStreamConsumerInputFilterSensitiveLog: (
656
+ obj: DeregisterStreamConsumerInput
657
+ ) => any;
658
+ export declare const DescribeLimitsInputFilterSensitiveLog: (
659
+ obj: DescribeLimitsInput
660
+ ) => any;
661
+ export declare const DescribeLimitsOutputFilterSensitiveLog: (
662
+ obj: DescribeLimitsOutput
663
+ ) => any;
664
+ export declare const DescribeStreamInputFilterSensitiveLog: (
665
+ obj: DescribeStreamInput
666
+ ) => any;
667
+ export declare const EnhancedMetricsFilterSensitiveLog: (
668
+ obj: EnhancedMetrics
669
+ ) => any;
670
+ export declare const SequenceNumberRangeFilterSensitiveLog: (
671
+ obj: SequenceNumberRange
672
+ ) => any;
673
+ export declare const ShardFilterSensitiveLog: (obj: Shard) => any;
674
+ export declare const StreamDescriptionFilterSensitiveLog: (
675
+ obj: StreamDescription
676
+ ) => any;
677
+ export declare const DescribeStreamOutputFilterSensitiveLog: (
678
+ obj: DescribeStreamOutput
679
+ ) => any;
680
+ export declare const DescribeStreamConsumerInputFilterSensitiveLog: (
681
+ obj: DescribeStreamConsumerInput
682
+ ) => any;
683
+ export declare const DescribeStreamConsumerOutputFilterSensitiveLog: (
684
+ obj: DescribeStreamConsumerOutput
685
+ ) => any;
686
+ export declare const DescribeStreamSummaryInputFilterSensitiveLog: (
687
+ obj: DescribeStreamSummaryInput
688
+ ) => any;
689
+ export declare const StreamDescriptionSummaryFilterSensitiveLog: (
690
+ obj: StreamDescriptionSummary
691
+ ) => any;
692
+ export declare const DescribeStreamSummaryOutputFilterSensitiveLog: (
693
+ obj: DescribeStreamSummaryOutput
694
+ ) => any;
695
+ export declare const DisableEnhancedMonitoringInputFilterSensitiveLog: (
696
+ obj: DisableEnhancedMonitoringInput
697
+ ) => any;
698
+ export declare const EnhancedMonitoringOutputFilterSensitiveLog: (
699
+ obj: EnhancedMonitoringOutput
700
+ ) => any;
701
+ export declare const EnableEnhancedMonitoringInputFilterSensitiveLog: (
702
+ obj: EnableEnhancedMonitoringInput
703
+ ) => any;
704
+ export declare const GetRecordsInputFilterSensitiveLog: (
705
+ obj: GetRecordsInput
706
+ ) => any;
707
+ export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
708
+ export declare const GetRecordsOutputFilterSensitiveLog: (
709
+ obj: GetRecordsOutput
710
+ ) => any;
711
+ export declare const GetShardIteratorInputFilterSensitiveLog: (
712
+ obj: GetShardIteratorInput
713
+ ) => any;
714
+ export declare const GetShardIteratorOutputFilterSensitiveLog: (
715
+ obj: GetShardIteratorOutput
716
+ ) => any;
717
+ export declare const IncreaseStreamRetentionPeriodInputFilterSensitiveLog: (
718
+ obj: IncreaseStreamRetentionPeriodInput
719
+ ) => any;
720
+ export declare const ShardFilterFilterSensitiveLog: (obj: ShardFilter) => any;
721
+ export declare const ListShardsInputFilterSensitiveLog: (
722
+ obj: ListShardsInput
723
+ ) => any;
724
+ export declare const ListShardsOutputFilterSensitiveLog: (
725
+ obj: ListShardsOutput
726
+ ) => any;
727
+ export declare const ListStreamConsumersInputFilterSensitiveLog: (
728
+ obj: ListStreamConsumersInput
729
+ ) => any;
730
+ export declare const ListStreamConsumersOutputFilterSensitiveLog: (
731
+ obj: ListStreamConsumersOutput
732
+ ) => any;
733
+ export declare const ListStreamsInputFilterSensitiveLog: (
734
+ obj: ListStreamsInput
735
+ ) => any;
736
+ export declare const ListStreamsOutputFilterSensitiveLog: (
737
+ obj: ListStreamsOutput
738
+ ) => any;
739
+ export declare const ListTagsForStreamInputFilterSensitiveLog: (
740
+ obj: ListTagsForStreamInput
741
+ ) => any;
742
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
743
+ export declare const ListTagsForStreamOutputFilterSensitiveLog: (
744
+ obj: ListTagsForStreamOutput
745
+ ) => any;
746
+ export declare const MergeShardsInputFilterSensitiveLog: (
747
+ obj: MergeShardsInput
748
+ ) => any;
749
+ export declare const PutRecordInputFilterSensitiveLog: (
750
+ obj: PutRecordInput
751
+ ) => any;
752
+ export declare const PutRecordOutputFilterSensitiveLog: (
753
+ obj: PutRecordOutput
754
+ ) => any;
755
+ export declare const PutRecordsRequestEntryFilterSensitiveLog: (
756
+ obj: PutRecordsRequestEntry
757
+ ) => any;
758
+ export declare const PutRecordsInputFilterSensitiveLog: (
759
+ obj: PutRecordsInput
760
+ ) => any;
761
+ export declare const PutRecordsResultEntryFilterSensitiveLog: (
762
+ obj: PutRecordsResultEntry
763
+ ) => any;
764
+ export declare const PutRecordsOutputFilterSensitiveLog: (
765
+ obj: PutRecordsOutput
766
+ ) => any;
767
+ export declare const RegisterStreamConsumerInputFilterSensitiveLog: (
768
+ obj: RegisterStreamConsumerInput
769
+ ) => any;
770
+ export declare const RegisterStreamConsumerOutputFilterSensitiveLog: (
771
+ obj: RegisterStreamConsumerOutput
772
+ ) => any;
773
+ export declare const RemoveTagsFromStreamInputFilterSensitiveLog: (
774
+ obj: RemoveTagsFromStreamInput
775
+ ) => any;
776
+ export declare const SplitShardInputFilterSensitiveLog: (
777
+ obj: SplitShardInput
778
+ ) => any;
779
+ export declare const StartStreamEncryptionInputFilterSensitiveLog: (
780
+ obj: StartStreamEncryptionInput
781
+ ) => any;
782
+ export declare const StopStreamEncryptionInputFilterSensitiveLog: (
783
+ obj: StopStreamEncryptionInput
784
+ ) => any;
785
+ export declare const StartingPositionFilterSensitiveLog: (
786
+ obj: StartingPosition
787
+ ) => any;
788
+ export declare const SubscribeToShardInputFilterSensitiveLog: (
789
+ obj: SubscribeToShardInput
790
+ ) => any;
791
+ export declare const SubscribeToShardEventFilterSensitiveLog: (
792
+ obj: SubscribeToShardEvent
793
+ ) => any;
794
+ export declare const SubscribeToShardEventStreamFilterSensitiveLog: (
795
+ obj: SubscribeToShardEventStream
796
+ ) => any;
797
+ export declare const SubscribeToShardOutputFilterSensitiveLog: (
798
+ obj: SubscribeToShardOutput
799
+ ) => any;
800
+ export declare const UpdateShardCountInputFilterSensitiveLog: (
801
+ obj: UpdateShardCountInput
802
+ ) => any;
803
+ export declare const UpdateShardCountOutputFilterSensitiveLog: (
804
+ obj: UpdateShardCountOutput
805
+ ) => any;
806
+ export declare const UpdateStreamModeInputFilterSensitiveLog: (
807
+ obj: UpdateStreamModeInput
808
+ ) => any;