@aws-sdk/client-kinesis 3.136.1 → 3.137.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/commands/AddTagsToStreamCommand.js +1 -1
- package/dist-cjs/commands/CreateStreamCommand.js +1 -1
- package/dist-cjs/commands/DecreaseStreamRetentionPeriodCommand.js +1 -1
- package/dist-cjs/commands/DeleteStreamCommand.js +1 -1
- package/dist-cjs/commands/DeregisterStreamConsumerCommand.js +1 -1
- package/dist-cjs/commands/DescribeLimitsCommand.js +2 -2
- package/dist-cjs/commands/DescribeStreamCommand.js +2 -2
- package/dist-cjs/commands/DescribeStreamConsumerCommand.js +2 -2
- package/dist-cjs/commands/DescribeStreamSummaryCommand.js +2 -2
- package/dist-cjs/commands/DisableEnhancedMonitoringCommand.js +2 -2
- package/dist-cjs/commands/EnableEnhancedMonitoringCommand.js +2 -2
- package/dist-cjs/commands/GetRecordsCommand.js +2 -2
- package/dist-cjs/commands/GetShardIteratorCommand.js +2 -2
- package/dist-cjs/commands/IncreaseStreamRetentionPeriodCommand.js +1 -1
- package/dist-cjs/commands/ListShardsCommand.js +2 -2
- package/dist-cjs/commands/ListStreamConsumersCommand.js +2 -2
- package/dist-cjs/commands/ListStreamsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForStreamCommand.js +2 -2
- package/dist-cjs/commands/MergeShardsCommand.js +1 -1
- package/dist-cjs/commands/PutRecordCommand.js +2 -2
- package/dist-cjs/commands/PutRecordsCommand.js +2 -2
- package/dist-cjs/commands/RegisterStreamConsumerCommand.js +2 -2
- package/dist-cjs/commands/RemoveTagsFromStreamCommand.js +1 -1
- package/dist-cjs/commands/SplitShardCommand.js +1 -1
- package/dist-cjs/commands/StartStreamEncryptionCommand.js +1 -1
- package/dist-cjs/commands/StopStreamEncryptionCommand.js +1 -1
- package/dist-cjs/commands/SubscribeToShardCommand.js +2 -2
- package/dist-cjs/commands/UpdateShardCountCommand.js +2 -2
- package/dist-cjs/commands/UpdateStreamModeCommand.js +1 -1
- package/dist-cjs/models/models_0.js +276 -399
- package/dist-es/commands/AddTagsToStreamCommand.js +2 -2
- package/dist-es/commands/CreateStreamCommand.js +2 -2
- package/dist-es/commands/DecreaseStreamRetentionPeriodCommand.js +2 -2
- package/dist-es/commands/DeleteStreamCommand.js +2 -2
- package/dist-es/commands/DeregisterStreamConsumerCommand.js +2 -2
- package/dist-es/commands/DescribeLimitsCommand.js +3 -3
- package/dist-es/commands/DescribeStreamCommand.js +3 -3
- package/dist-es/commands/DescribeStreamConsumerCommand.js +3 -3
- package/dist-es/commands/DescribeStreamSummaryCommand.js +3 -3
- package/dist-es/commands/DisableEnhancedMonitoringCommand.js +3 -3
- package/dist-es/commands/EnableEnhancedMonitoringCommand.js +3 -3
- package/dist-es/commands/GetRecordsCommand.js +3 -3
- package/dist-es/commands/GetShardIteratorCommand.js +3 -3
- package/dist-es/commands/IncreaseStreamRetentionPeriodCommand.js +2 -2
- package/dist-es/commands/ListShardsCommand.js +3 -3
- package/dist-es/commands/ListStreamConsumersCommand.js +3 -3
- package/dist-es/commands/ListStreamsCommand.js +3 -3
- package/dist-es/commands/ListTagsForStreamCommand.js +3 -3
- package/dist-es/commands/MergeShardsCommand.js +2 -2
- package/dist-es/commands/PutRecordCommand.js +3 -3
- package/dist-es/commands/PutRecordsCommand.js +3 -3
- package/dist-es/commands/RegisterStreamConsumerCommand.js +3 -3
- package/dist-es/commands/RemoveTagsFromStreamCommand.js +2 -2
- package/dist-es/commands/SplitShardCommand.js +2 -2
- package/dist-es/commands/StartStreamEncryptionCommand.js +2 -2
- package/dist-es/commands/StopStreamEncryptionCommand.js +2 -2
- package/dist-es/commands/SubscribeToShardCommand.js +3 -3
- package/dist-es/commands/UpdateShardCountCommand.js +3 -3
- package/dist-es/commands/UpdateStreamModeCommand.js +2 -2
- package/dist-es/models/models_0.js +87 -273
- package/dist-types/models/models_0.d.ts +252 -376
- package/dist-types/ts3.4/models/models_0.d.ts +126 -250
- package/package.json +6 -6
|
@@ -7,10 +7,6 @@ export interface AddTagsToStreamInput {
|
|
|
7
7
|
|
|
8
8
|
Tags: Record<string, string> | undefined;
|
|
9
9
|
}
|
|
10
|
-
export declare namespace AddTagsToStreamInput {
|
|
11
|
-
|
|
12
|
-
const filterSensitiveLog: (obj: AddTagsToStreamInput) => any;
|
|
13
|
-
}
|
|
14
10
|
|
|
15
11
|
export declare class InvalidArgumentException extends __BaseException {
|
|
16
12
|
readonly name: "InvalidArgumentException";
|
|
@@ -46,10 +42,6 @@ export interface HashKeyRange {
|
|
|
46
42
|
|
|
47
43
|
EndingHashKey: string | undefined;
|
|
48
44
|
}
|
|
49
|
-
export declare namespace HashKeyRange {
|
|
50
|
-
|
|
51
|
-
const filterSensitiveLog: (obj: HashKeyRange) => any;
|
|
52
|
-
}
|
|
53
45
|
|
|
54
46
|
export interface ChildShard {
|
|
55
47
|
|
|
@@ -59,10 +51,6 @@ export interface ChildShard {
|
|
|
59
51
|
|
|
60
52
|
HashKeyRange: HashKeyRange | undefined;
|
|
61
53
|
}
|
|
62
|
-
export declare namespace ChildShard {
|
|
63
|
-
|
|
64
|
-
const filterSensitiveLog: (obj: ChildShard) => any;
|
|
65
|
-
}
|
|
66
54
|
export declare enum ConsumerStatus {
|
|
67
55
|
ACTIVE = "ACTIVE",
|
|
68
56
|
CREATING = "CREATING",
|
|
@@ -79,10 +67,6 @@ export interface Consumer {
|
|
|
79
67
|
|
|
80
68
|
ConsumerCreationTimestamp: Date | undefined;
|
|
81
69
|
}
|
|
82
|
-
export declare namespace Consumer {
|
|
83
|
-
|
|
84
|
-
const filterSensitiveLog: (obj: Consumer) => any;
|
|
85
|
-
}
|
|
86
70
|
|
|
87
71
|
export interface ConsumerDescription {
|
|
88
72
|
|
|
@@ -96,10 +80,6 @@ export interface ConsumerDescription {
|
|
|
96
80
|
|
|
97
81
|
StreamARN: string | undefined;
|
|
98
82
|
}
|
|
99
|
-
export declare namespace ConsumerDescription {
|
|
100
|
-
|
|
101
|
-
const filterSensitiveLog: (obj: ConsumerDescription) => any;
|
|
102
|
-
}
|
|
103
83
|
export declare enum StreamMode {
|
|
104
84
|
ON_DEMAND = "ON_DEMAND",
|
|
105
85
|
PROVISIONED = "PROVISIONED"
|
|
@@ -109,10 +89,6 @@ export interface StreamModeDetails {
|
|
|
109
89
|
|
|
110
90
|
StreamMode: StreamMode | string | undefined;
|
|
111
91
|
}
|
|
112
|
-
export declare namespace StreamModeDetails {
|
|
113
|
-
|
|
114
|
-
const filterSensitiveLog: (obj: StreamModeDetails) => any;
|
|
115
|
-
}
|
|
116
92
|
|
|
117
93
|
export interface CreateStreamInput {
|
|
118
94
|
|
|
@@ -122,10 +98,6 @@ export interface CreateStreamInput {
|
|
|
122
98
|
|
|
123
99
|
StreamModeDetails?: StreamModeDetails;
|
|
124
100
|
}
|
|
125
|
-
export declare namespace CreateStreamInput {
|
|
126
|
-
|
|
127
|
-
const filterSensitiveLog: (obj: CreateStreamInput) => any;
|
|
128
|
-
}
|
|
129
101
|
|
|
130
102
|
export interface DecreaseStreamRetentionPeriodInput {
|
|
131
103
|
|
|
@@ -133,10 +105,6 @@ export interface DecreaseStreamRetentionPeriodInput {
|
|
|
133
105
|
|
|
134
106
|
RetentionPeriodHours: number | undefined;
|
|
135
107
|
}
|
|
136
|
-
export declare namespace DecreaseStreamRetentionPeriodInput {
|
|
137
|
-
|
|
138
|
-
const filterSensitiveLog: (obj: DecreaseStreamRetentionPeriodInput) => any;
|
|
139
|
-
}
|
|
140
108
|
|
|
141
109
|
export interface DeleteStreamInput {
|
|
142
110
|
|
|
@@ -144,10 +112,6 @@ export interface DeleteStreamInput {
|
|
|
144
112
|
|
|
145
113
|
EnforceConsumerDeletion?: boolean;
|
|
146
114
|
}
|
|
147
|
-
export declare namespace DeleteStreamInput {
|
|
148
|
-
|
|
149
|
-
const filterSensitiveLog: (obj: DeleteStreamInput) => any;
|
|
150
|
-
}
|
|
151
115
|
export interface DeregisterStreamConsumerInput {
|
|
152
116
|
|
|
153
117
|
StreamARN?: string;
|
|
@@ -156,16 +120,8 @@ export interface DeregisterStreamConsumerInput {
|
|
|
156
120
|
|
|
157
121
|
ConsumerARN?: string;
|
|
158
122
|
}
|
|
159
|
-
export declare namespace DeregisterStreamConsumerInput {
|
|
160
|
-
|
|
161
|
-
const filterSensitiveLog: (obj: DeregisterStreamConsumerInput) => any;
|
|
162
|
-
}
|
|
163
123
|
export interface DescribeLimitsInput {
|
|
164
124
|
}
|
|
165
|
-
export declare namespace DescribeLimitsInput {
|
|
166
|
-
|
|
167
|
-
const filterSensitiveLog: (obj: DescribeLimitsInput) => any;
|
|
168
|
-
}
|
|
169
125
|
export interface DescribeLimitsOutput {
|
|
170
126
|
|
|
171
127
|
ShardLimit: number | undefined;
|
|
@@ -176,10 +132,6 @@ export interface DescribeLimitsOutput {
|
|
|
176
132
|
|
|
177
133
|
OnDemandStreamCountLimit: number | undefined;
|
|
178
134
|
}
|
|
179
|
-
export declare namespace DescribeLimitsOutput {
|
|
180
|
-
|
|
181
|
-
const filterSensitiveLog: (obj: DescribeLimitsOutput) => any;
|
|
182
|
-
}
|
|
183
135
|
|
|
184
136
|
export interface DescribeStreamInput {
|
|
185
137
|
|
|
@@ -189,10 +141,6 @@ export interface DescribeStreamInput {
|
|
|
189
141
|
|
|
190
142
|
ExclusiveStartShardId?: string;
|
|
191
143
|
}
|
|
192
|
-
export declare namespace DescribeStreamInput {
|
|
193
|
-
|
|
194
|
-
const filterSensitiveLog: (obj: DescribeStreamInput) => any;
|
|
195
|
-
}
|
|
196
144
|
export declare enum EncryptionType {
|
|
197
145
|
KMS = "KMS",
|
|
198
146
|
NONE = "NONE"
|
|
@@ -212,10 +160,6 @@ export interface EnhancedMetrics {
|
|
|
212
160
|
|
|
213
161
|
ShardLevelMetrics?: (MetricsName | string)[];
|
|
214
162
|
}
|
|
215
|
-
export declare namespace EnhancedMetrics {
|
|
216
|
-
|
|
217
|
-
const filterSensitiveLog: (obj: EnhancedMetrics) => any;
|
|
218
|
-
}
|
|
219
163
|
|
|
220
164
|
export interface SequenceNumberRange {
|
|
221
165
|
|
|
@@ -223,10 +167,6 @@ export interface SequenceNumberRange {
|
|
|
223
167
|
|
|
224
168
|
EndingSequenceNumber?: string;
|
|
225
169
|
}
|
|
226
|
-
export declare namespace SequenceNumberRange {
|
|
227
|
-
|
|
228
|
-
const filterSensitiveLog: (obj: SequenceNumberRange) => any;
|
|
229
|
-
}
|
|
230
170
|
|
|
231
171
|
export interface Shard {
|
|
232
172
|
|
|
@@ -240,10 +180,6 @@ export interface Shard {
|
|
|
240
180
|
|
|
241
181
|
SequenceNumberRange: SequenceNumberRange | undefined;
|
|
242
182
|
}
|
|
243
|
-
export declare namespace Shard {
|
|
244
|
-
|
|
245
|
-
const filterSensitiveLog: (obj: Shard) => any;
|
|
246
|
-
}
|
|
247
183
|
export declare enum StreamStatus {
|
|
248
184
|
ACTIVE = "ACTIVE",
|
|
249
185
|
CREATING = "CREATING",
|
|
@@ -275,19 +211,11 @@ export interface StreamDescription {
|
|
|
275
211
|
|
|
276
212
|
KeyId?: string;
|
|
277
213
|
}
|
|
278
|
-
export declare namespace StreamDescription {
|
|
279
|
-
|
|
280
|
-
const filterSensitiveLog: (obj: StreamDescription) => any;
|
|
281
|
-
}
|
|
282
214
|
|
|
283
215
|
export interface DescribeStreamOutput {
|
|
284
216
|
|
|
285
217
|
StreamDescription: StreamDescription | undefined;
|
|
286
218
|
}
|
|
287
|
-
export declare namespace DescribeStreamOutput {
|
|
288
|
-
|
|
289
|
-
const filterSensitiveLog: (obj: DescribeStreamOutput) => any;
|
|
290
|
-
}
|
|
291
219
|
export interface DescribeStreamConsumerInput {
|
|
292
220
|
|
|
293
221
|
StreamARN?: string;
|
|
@@ -296,26 +224,14 @@ export interface DescribeStreamConsumerInput {
|
|
|
296
224
|
|
|
297
225
|
ConsumerARN?: string;
|
|
298
226
|
}
|
|
299
|
-
export declare namespace DescribeStreamConsumerInput {
|
|
300
|
-
|
|
301
|
-
const filterSensitiveLog: (obj: DescribeStreamConsumerInput) => any;
|
|
302
|
-
}
|
|
303
227
|
export interface DescribeStreamConsumerOutput {
|
|
304
228
|
|
|
305
229
|
ConsumerDescription: ConsumerDescription | undefined;
|
|
306
230
|
}
|
|
307
|
-
export declare namespace DescribeStreamConsumerOutput {
|
|
308
|
-
|
|
309
|
-
const filterSensitiveLog: (obj: DescribeStreamConsumerOutput) => any;
|
|
310
|
-
}
|
|
311
231
|
export interface DescribeStreamSummaryInput {
|
|
312
232
|
|
|
313
233
|
StreamName: string | undefined;
|
|
314
234
|
}
|
|
315
|
-
export declare namespace DescribeStreamSummaryInput {
|
|
316
|
-
|
|
317
|
-
const filterSensitiveLog: (obj: DescribeStreamSummaryInput) => any;
|
|
318
|
-
}
|
|
319
235
|
|
|
320
236
|
export interface StreamDescriptionSummary {
|
|
321
237
|
|
|
@@ -341,18 +257,10 @@ export interface StreamDescriptionSummary {
|
|
|
341
257
|
|
|
342
258
|
ConsumerCount?: number;
|
|
343
259
|
}
|
|
344
|
-
export declare namespace StreamDescriptionSummary {
|
|
345
|
-
|
|
346
|
-
const filterSensitiveLog: (obj: StreamDescriptionSummary) => any;
|
|
347
|
-
}
|
|
348
260
|
export interface DescribeStreamSummaryOutput {
|
|
349
261
|
|
|
350
262
|
StreamDescriptionSummary: StreamDescriptionSummary | undefined;
|
|
351
263
|
}
|
|
352
|
-
export declare namespace DescribeStreamSummaryOutput {
|
|
353
|
-
|
|
354
|
-
const filterSensitiveLog: (obj: DescribeStreamSummaryOutput) => any;
|
|
355
|
-
}
|
|
356
264
|
|
|
357
265
|
export interface DisableEnhancedMonitoringInput {
|
|
358
266
|
|
|
@@ -360,10 +268,6 @@ export interface DisableEnhancedMonitoringInput {
|
|
|
360
268
|
|
|
361
269
|
ShardLevelMetrics: (MetricsName | string)[] | undefined;
|
|
362
270
|
}
|
|
363
|
-
export declare namespace DisableEnhancedMonitoringInput {
|
|
364
|
-
|
|
365
|
-
const filterSensitiveLog: (obj: DisableEnhancedMonitoringInput) => any;
|
|
366
|
-
}
|
|
367
271
|
|
|
368
272
|
export interface EnhancedMonitoringOutput {
|
|
369
273
|
|
|
@@ -373,10 +277,6 @@ export interface EnhancedMonitoringOutput {
|
|
|
373
277
|
|
|
374
278
|
DesiredShardLevelMetrics?: (MetricsName | string)[];
|
|
375
279
|
}
|
|
376
|
-
export declare namespace EnhancedMonitoringOutput {
|
|
377
|
-
|
|
378
|
-
const filterSensitiveLog: (obj: EnhancedMonitoringOutput) => any;
|
|
379
|
-
}
|
|
380
280
|
|
|
381
281
|
export interface EnableEnhancedMonitoringInput {
|
|
382
282
|
|
|
@@ -384,10 +284,6 @@ export interface EnableEnhancedMonitoringInput {
|
|
|
384
284
|
|
|
385
285
|
ShardLevelMetrics: (MetricsName | string)[] | undefined;
|
|
386
286
|
}
|
|
387
|
-
export declare namespace EnableEnhancedMonitoringInput {
|
|
388
|
-
|
|
389
|
-
const filterSensitiveLog: (obj: EnableEnhancedMonitoringInput) => any;
|
|
390
|
-
}
|
|
391
287
|
|
|
392
288
|
export declare class ExpiredIteratorException extends __BaseException {
|
|
393
289
|
readonly name: "ExpiredIteratorException";
|
|
@@ -409,10 +305,6 @@ export interface GetRecordsInput {
|
|
|
409
305
|
|
|
410
306
|
Limit?: number;
|
|
411
307
|
}
|
|
412
|
-
export declare namespace GetRecordsInput {
|
|
413
|
-
|
|
414
|
-
const filterSensitiveLog: (obj: GetRecordsInput) => any;
|
|
415
|
-
}
|
|
416
308
|
|
|
417
309
|
export interface _Record {
|
|
418
310
|
|
|
@@ -426,10 +318,6 @@ export interface _Record {
|
|
|
426
318
|
|
|
427
319
|
EncryptionType?: EncryptionType | string;
|
|
428
320
|
}
|
|
429
|
-
export declare namespace _Record {
|
|
430
|
-
|
|
431
|
-
const filterSensitiveLog: (obj: _Record) => any;
|
|
432
|
-
}
|
|
433
321
|
|
|
434
322
|
export interface GetRecordsOutput {
|
|
435
323
|
|
|
@@ -441,10 +329,6 @@ export interface GetRecordsOutput {
|
|
|
441
329
|
|
|
442
330
|
ChildShards?: ChildShard[];
|
|
443
331
|
}
|
|
444
|
-
export declare namespace GetRecordsOutput {
|
|
445
|
-
|
|
446
|
-
const filterSensitiveLog: (obj: GetRecordsOutput) => any;
|
|
447
|
-
}
|
|
448
332
|
|
|
449
333
|
export declare class KMSAccessDeniedException extends __BaseException {
|
|
450
334
|
readonly name: "KMSAccessDeniedException";
|
|
@@ -514,19 +398,11 @@ export interface GetShardIteratorInput {
|
|
|
514
398
|
|
|
515
399
|
Timestamp?: Date;
|
|
516
400
|
}
|
|
517
|
-
export declare namespace GetShardIteratorInput {
|
|
518
|
-
|
|
519
|
-
const filterSensitiveLog: (obj: GetShardIteratorInput) => any;
|
|
520
|
-
}
|
|
521
401
|
|
|
522
402
|
export interface GetShardIteratorOutput {
|
|
523
403
|
|
|
524
404
|
ShardIterator?: string;
|
|
525
405
|
}
|
|
526
|
-
export declare namespace GetShardIteratorOutput {
|
|
527
|
-
|
|
528
|
-
const filterSensitiveLog: (obj: GetShardIteratorOutput) => any;
|
|
529
|
-
}
|
|
530
406
|
|
|
531
407
|
export interface IncreaseStreamRetentionPeriodInput {
|
|
532
408
|
|
|
@@ -534,10 +410,6 @@ export interface IncreaseStreamRetentionPeriodInput {
|
|
|
534
410
|
|
|
535
411
|
RetentionPeriodHours: number | undefined;
|
|
536
412
|
}
|
|
537
|
-
export declare namespace IncreaseStreamRetentionPeriodInput {
|
|
538
|
-
|
|
539
|
-
const filterSensitiveLog: (obj: IncreaseStreamRetentionPeriodInput) => any;
|
|
540
|
-
}
|
|
541
413
|
|
|
542
414
|
export declare class InternalFailureException extends __BaseException {
|
|
543
415
|
readonly name: "InternalFailureException";
|
|
@@ -562,10 +434,6 @@ export interface ShardFilter {
|
|
|
562
434
|
|
|
563
435
|
Timestamp?: Date;
|
|
564
436
|
}
|
|
565
|
-
export declare namespace ShardFilter {
|
|
566
|
-
|
|
567
|
-
const filterSensitiveLog: (obj: ShardFilter) => any;
|
|
568
|
-
}
|
|
569
437
|
export interface ListShardsInput {
|
|
570
438
|
|
|
571
439
|
StreamName?: string;
|
|
@@ -580,20 +448,12 @@ export interface ListShardsInput {
|
|
|
580
448
|
|
|
581
449
|
ShardFilter?: ShardFilter;
|
|
582
450
|
}
|
|
583
|
-
export declare namespace ListShardsInput {
|
|
584
|
-
|
|
585
|
-
const filterSensitiveLog: (obj: ListShardsInput) => any;
|
|
586
|
-
}
|
|
587
451
|
export interface ListShardsOutput {
|
|
588
452
|
|
|
589
453
|
Shards?: Shard[];
|
|
590
454
|
|
|
591
455
|
NextToken?: string;
|
|
592
456
|
}
|
|
593
|
-
export declare namespace ListShardsOutput {
|
|
594
|
-
|
|
595
|
-
const filterSensitiveLog: (obj: ListShardsOutput) => any;
|
|
596
|
-
}
|
|
597
457
|
export interface ListStreamConsumersInput {
|
|
598
458
|
|
|
599
459
|
StreamARN: string | undefined;
|
|
@@ -604,20 +464,12 @@ export interface ListStreamConsumersInput {
|
|
|
604
464
|
|
|
605
465
|
StreamCreationTimestamp?: Date;
|
|
606
466
|
}
|
|
607
|
-
export declare namespace ListStreamConsumersInput {
|
|
608
|
-
|
|
609
|
-
const filterSensitiveLog: (obj: ListStreamConsumersInput) => any;
|
|
610
|
-
}
|
|
611
467
|
export interface ListStreamConsumersOutput {
|
|
612
468
|
|
|
613
469
|
Consumers?: Consumer[];
|
|
614
470
|
|
|
615
471
|
NextToken?: string;
|
|
616
472
|
}
|
|
617
|
-
export declare namespace ListStreamConsumersOutput {
|
|
618
|
-
|
|
619
|
-
const filterSensitiveLog: (obj: ListStreamConsumersOutput) => any;
|
|
620
|
-
}
|
|
621
473
|
|
|
622
474
|
export interface ListStreamsInput {
|
|
623
475
|
|
|
@@ -625,10 +477,6 @@ export interface ListStreamsInput {
|
|
|
625
477
|
|
|
626
478
|
ExclusiveStartStreamName?: string;
|
|
627
479
|
}
|
|
628
|
-
export declare namespace ListStreamsInput {
|
|
629
|
-
|
|
630
|
-
const filterSensitiveLog: (obj: ListStreamsInput) => any;
|
|
631
|
-
}
|
|
632
480
|
|
|
633
481
|
export interface ListStreamsOutput {
|
|
634
482
|
|
|
@@ -636,10 +484,6 @@ export interface ListStreamsOutput {
|
|
|
636
484
|
|
|
637
485
|
HasMoreStreams: boolean | undefined;
|
|
638
486
|
}
|
|
639
|
-
export declare namespace ListStreamsOutput {
|
|
640
|
-
|
|
641
|
-
const filterSensitiveLog: (obj: ListStreamsOutput) => any;
|
|
642
|
-
}
|
|
643
487
|
|
|
644
488
|
export interface ListTagsForStreamInput {
|
|
645
489
|
|
|
@@ -649,10 +493,6 @@ export interface ListTagsForStreamInput {
|
|
|
649
493
|
|
|
650
494
|
Limit?: number;
|
|
651
495
|
}
|
|
652
|
-
export declare namespace ListTagsForStreamInput {
|
|
653
|
-
|
|
654
|
-
const filterSensitiveLog: (obj: ListTagsForStreamInput) => any;
|
|
655
|
-
}
|
|
656
496
|
|
|
657
497
|
export interface Tag {
|
|
658
498
|
|
|
@@ -660,10 +500,6 @@ export interface Tag {
|
|
|
660
500
|
|
|
661
501
|
Value?: string;
|
|
662
502
|
}
|
|
663
|
-
export declare namespace Tag {
|
|
664
|
-
|
|
665
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
666
|
-
}
|
|
667
503
|
|
|
668
504
|
export interface ListTagsForStreamOutput {
|
|
669
505
|
|
|
@@ -671,10 +507,6 @@ export interface ListTagsForStreamOutput {
|
|
|
671
507
|
|
|
672
508
|
HasMoreTags: boolean | undefined;
|
|
673
509
|
}
|
|
674
|
-
export declare namespace ListTagsForStreamOutput {
|
|
675
|
-
|
|
676
|
-
const filterSensitiveLog: (obj: ListTagsForStreamOutput) => any;
|
|
677
|
-
}
|
|
678
510
|
|
|
679
511
|
export interface MergeShardsInput {
|
|
680
512
|
|
|
@@ -684,10 +516,6 @@ export interface MergeShardsInput {
|
|
|
684
516
|
|
|
685
517
|
AdjacentShardToMerge: string | undefined;
|
|
686
518
|
}
|
|
687
|
-
export declare namespace MergeShardsInput {
|
|
688
|
-
|
|
689
|
-
const filterSensitiveLog: (obj: MergeShardsInput) => any;
|
|
690
|
-
}
|
|
691
519
|
|
|
692
520
|
export declare class ValidationException extends __BaseException {
|
|
693
521
|
readonly name: "ValidationException";
|
|
@@ -708,10 +536,6 @@ export interface PutRecordInput {
|
|
|
708
536
|
|
|
709
537
|
SequenceNumberForOrdering?: string;
|
|
710
538
|
}
|
|
711
|
-
export declare namespace PutRecordInput {
|
|
712
|
-
|
|
713
|
-
const filterSensitiveLog: (obj: PutRecordInput) => any;
|
|
714
|
-
}
|
|
715
539
|
|
|
716
540
|
export interface PutRecordOutput {
|
|
717
541
|
|
|
@@ -721,10 +545,6 @@ export interface PutRecordOutput {
|
|
|
721
545
|
|
|
722
546
|
EncryptionType?: EncryptionType | string;
|
|
723
547
|
}
|
|
724
|
-
export declare namespace PutRecordOutput {
|
|
725
|
-
|
|
726
|
-
const filterSensitiveLog: (obj: PutRecordOutput) => any;
|
|
727
|
-
}
|
|
728
548
|
|
|
729
549
|
export interface PutRecordsRequestEntry {
|
|
730
550
|
|
|
@@ -734,10 +554,6 @@ export interface PutRecordsRequestEntry {
|
|
|
734
554
|
|
|
735
555
|
PartitionKey: string | undefined;
|
|
736
556
|
}
|
|
737
|
-
export declare namespace PutRecordsRequestEntry {
|
|
738
|
-
|
|
739
|
-
const filterSensitiveLog: (obj: PutRecordsRequestEntry) => any;
|
|
740
|
-
}
|
|
741
557
|
|
|
742
558
|
export interface PutRecordsInput {
|
|
743
559
|
|
|
@@ -745,10 +561,6 @@ export interface PutRecordsInput {
|
|
|
745
561
|
|
|
746
562
|
StreamName: string | undefined;
|
|
747
563
|
}
|
|
748
|
-
export declare namespace PutRecordsInput {
|
|
749
|
-
|
|
750
|
-
const filterSensitiveLog: (obj: PutRecordsInput) => any;
|
|
751
|
-
}
|
|
752
564
|
|
|
753
565
|
export interface PutRecordsResultEntry {
|
|
754
566
|
|
|
@@ -760,10 +572,6 @@ export interface PutRecordsResultEntry {
|
|
|
760
572
|
|
|
761
573
|
ErrorMessage?: string;
|
|
762
574
|
}
|
|
763
|
-
export declare namespace PutRecordsResultEntry {
|
|
764
|
-
|
|
765
|
-
const filterSensitiveLog: (obj: PutRecordsResultEntry) => any;
|
|
766
|
-
}
|
|
767
575
|
|
|
768
576
|
export interface PutRecordsOutput {
|
|
769
577
|
|
|
@@ -773,28 +581,16 @@ export interface PutRecordsOutput {
|
|
|
773
581
|
|
|
774
582
|
EncryptionType?: EncryptionType | string;
|
|
775
583
|
}
|
|
776
|
-
export declare namespace PutRecordsOutput {
|
|
777
|
-
|
|
778
|
-
const filterSensitiveLog: (obj: PutRecordsOutput) => any;
|
|
779
|
-
}
|
|
780
584
|
export interface RegisterStreamConsumerInput {
|
|
781
585
|
|
|
782
586
|
StreamARN: string | undefined;
|
|
783
587
|
|
|
784
588
|
ConsumerName: string | undefined;
|
|
785
589
|
}
|
|
786
|
-
export declare namespace RegisterStreamConsumerInput {
|
|
787
|
-
|
|
788
|
-
const filterSensitiveLog: (obj: RegisterStreamConsumerInput) => any;
|
|
789
|
-
}
|
|
790
590
|
export interface RegisterStreamConsumerOutput {
|
|
791
591
|
|
|
792
592
|
Consumer: Consumer | undefined;
|
|
793
593
|
}
|
|
794
|
-
export declare namespace RegisterStreamConsumerOutput {
|
|
795
|
-
|
|
796
|
-
const filterSensitiveLog: (obj: RegisterStreamConsumerOutput) => any;
|
|
797
|
-
}
|
|
798
594
|
|
|
799
595
|
export interface RemoveTagsFromStreamInput {
|
|
800
596
|
|
|
@@ -802,10 +598,6 @@ export interface RemoveTagsFromStreamInput {
|
|
|
802
598
|
|
|
803
599
|
TagKeys: string[] | undefined;
|
|
804
600
|
}
|
|
805
|
-
export declare namespace RemoveTagsFromStreamInput {
|
|
806
|
-
|
|
807
|
-
const filterSensitiveLog: (obj: RemoveTagsFromStreamInput) => any;
|
|
808
|
-
}
|
|
809
601
|
|
|
810
602
|
export interface SplitShardInput {
|
|
811
603
|
|
|
@@ -815,10 +607,6 @@ export interface SplitShardInput {
|
|
|
815
607
|
|
|
816
608
|
NewStartingHashKey: string | undefined;
|
|
817
609
|
}
|
|
818
|
-
export declare namespace SplitShardInput {
|
|
819
|
-
|
|
820
|
-
const filterSensitiveLog: (obj: SplitShardInput) => any;
|
|
821
|
-
}
|
|
822
610
|
export interface StartStreamEncryptionInput {
|
|
823
611
|
|
|
824
612
|
StreamName: string | undefined;
|
|
@@ -827,10 +615,6 @@ export interface StartStreamEncryptionInput {
|
|
|
827
615
|
|
|
828
616
|
KeyId: string | undefined;
|
|
829
617
|
}
|
|
830
|
-
export declare namespace StartStreamEncryptionInput {
|
|
831
|
-
|
|
832
|
-
const filterSensitiveLog: (obj: StartStreamEncryptionInput) => any;
|
|
833
|
-
}
|
|
834
618
|
export interface StopStreamEncryptionInput {
|
|
835
619
|
|
|
836
620
|
StreamName: string | undefined;
|
|
@@ -839,10 +623,6 @@ export interface StopStreamEncryptionInput {
|
|
|
839
623
|
|
|
840
624
|
KeyId: string | undefined;
|
|
841
625
|
}
|
|
842
|
-
export declare namespace StopStreamEncryptionInput {
|
|
843
|
-
|
|
844
|
-
const filterSensitiveLog: (obj: StopStreamEncryptionInput) => any;
|
|
845
|
-
}
|
|
846
626
|
|
|
847
627
|
export interface StartingPosition {
|
|
848
628
|
|
|
@@ -852,10 +632,6 @@ export interface StartingPosition {
|
|
|
852
632
|
|
|
853
633
|
Timestamp?: Date;
|
|
854
634
|
}
|
|
855
|
-
export declare namespace StartingPosition {
|
|
856
|
-
|
|
857
|
-
const filterSensitiveLog: (obj: StartingPosition) => any;
|
|
858
|
-
}
|
|
859
635
|
export interface SubscribeToShardInput {
|
|
860
636
|
|
|
861
637
|
ConsumerARN: string | undefined;
|
|
@@ -864,10 +640,6 @@ export interface SubscribeToShardInput {
|
|
|
864
640
|
|
|
865
641
|
StartingPosition: StartingPosition | undefined;
|
|
866
642
|
}
|
|
867
|
-
export declare namespace SubscribeToShardInput {
|
|
868
|
-
|
|
869
|
-
const filterSensitiveLog: (obj: SubscribeToShardInput) => any;
|
|
870
|
-
}
|
|
871
643
|
|
|
872
644
|
export interface SubscribeToShardEvent {
|
|
873
645
|
|
|
@@ -879,10 +651,6 @@ export interface SubscribeToShardEvent {
|
|
|
879
651
|
|
|
880
652
|
ChildShards?: ChildShard[];
|
|
881
653
|
}
|
|
882
|
-
export declare namespace SubscribeToShardEvent {
|
|
883
|
-
|
|
884
|
-
const filterSensitiveLog: (obj: SubscribeToShardEvent) => any;
|
|
885
|
-
}
|
|
886
654
|
|
|
887
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;
|
|
888
656
|
export declare namespace SubscribeToShardEventStream {
|
|
@@ -1056,17 +824,11 @@ export declare namespace SubscribeToShardEventStream {
|
|
|
1056
824
|
_: (name: string, value: any) => T;
|
|
1057
825
|
}
|
|
1058
826
|
const visit: <T>(value: SubscribeToShardEventStream, visitor: Visitor<T>) => T;
|
|
1059
|
-
|
|
1060
|
-
const filterSensitiveLog: (obj: SubscribeToShardEventStream) => any;
|
|
1061
827
|
}
|
|
1062
828
|
export interface SubscribeToShardOutput {
|
|
1063
829
|
|
|
1064
830
|
EventStream: AsyncIterable<SubscribeToShardEventStream> | undefined;
|
|
1065
831
|
}
|
|
1066
|
-
export declare namespace SubscribeToShardOutput {
|
|
1067
|
-
|
|
1068
|
-
const filterSensitiveLog: (obj: SubscribeToShardOutput) => any;
|
|
1069
|
-
}
|
|
1070
832
|
export declare enum ScalingType {
|
|
1071
833
|
UNIFORM_SCALING = "UNIFORM_SCALING"
|
|
1072
834
|
}
|
|
@@ -1078,10 +840,6 @@ export interface UpdateShardCountInput {
|
|
|
1078
840
|
|
|
1079
841
|
ScalingType: ScalingType | string | undefined;
|
|
1080
842
|
}
|
|
1081
|
-
export declare namespace UpdateShardCountInput {
|
|
1082
|
-
|
|
1083
|
-
const filterSensitiveLog: (obj: UpdateShardCountInput) => any;
|
|
1084
|
-
}
|
|
1085
843
|
export interface UpdateShardCountOutput {
|
|
1086
844
|
|
|
1087
845
|
StreamName?: string;
|
|
@@ -1090,17 +848,135 @@ export interface UpdateShardCountOutput {
|
|
|
1090
848
|
|
|
1091
849
|
TargetShardCount?: number;
|
|
1092
850
|
}
|
|
1093
|
-
export declare namespace UpdateShardCountOutput {
|
|
1094
|
-
|
|
1095
|
-
const filterSensitiveLog: (obj: UpdateShardCountOutput) => any;
|
|
1096
|
-
}
|
|
1097
851
|
export interface UpdateStreamModeInput {
|
|
1098
852
|
|
|
1099
853
|
StreamARN: string | undefined;
|
|
1100
854
|
|
|
1101
855
|
StreamModeDetails: StreamModeDetails | undefined;
|
|
1102
856
|
}
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
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;
|