@aws-sdk/client-kinesis 3.952.0 → 3.953.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/dist-cjs/index.js +478 -319
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- 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/DeleteResourcePolicyCommand.js +2 -2
- package/dist-es/commands/DeleteStreamCommand.js +2 -2
- package/dist-es/commands/DeregisterStreamConsumerCommand.js +2 -2
- package/dist-es/commands/DescribeAccountSettingsCommand.js +2 -2
- package/dist-es/commands/DescribeLimitsCommand.js +2 -2
- package/dist-es/commands/DescribeStreamCommand.js +2 -2
- package/dist-es/commands/DescribeStreamConsumerCommand.js +2 -2
- package/dist-es/commands/DescribeStreamSummaryCommand.js +2 -2
- package/dist-es/commands/DisableEnhancedMonitoringCommand.js +2 -2
- package/dist-es/commands/EnableEnhancedMonitoringCommand.js +2 -2
- package/dist-es/commands/GetRecordsCommand.js +2 -2
- package/dist-es/commands/GetResourcePolicyCommand.js +2 -2
- package/dist-es/commands/GetShardIteratorCommand.js +2 -2
- package/dist-es/commands/IncreaseStreamRetentionPeriodCommand.js +2 -2
- package/dist-es/commands/ListShardsCommand.js +2 -2
- package/dist-es/commands/ListStreamConsumersCommand.js +2 -2
- package/dist-es/commands/ListStreamsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTagsForStreamCommand.js +2 -2
- package/dist-es/commands/MergeShardsCommand.js +2 -2
- package/dist-es/commands/PutRecordCommand.js +2 -2
- package/dist-es/commands/PutRecordsCommand.js +2 -2
- package/dist-es/commands/PutResourcePolicyCommand.js +2 -2
- package/dist-es/commands/RegisterStreamConsumerCommand.js +2 -2
- 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 +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAccountSettingsCommand.js +2 -2
- package/dist-es/commands/UpdateMaxRecordSizeCommand.js +2 -2
- package/dist-es/commands/UpdateShardCountCommand.js +2 -2
- package/dist-es/commands/UpdateStreamModeCommand.js +2 -2
- package/dist-es/commands/UpdateStreamWarmThroughputCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +261 -240
- package/dist-types/KinesisClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +139 -154
- package/dist-types/ts3.4/KinesisClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +138 -154
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -113,14 +113,14 @@ class KinesisClient extends smithyClient.Client {
|
|
|
113
113
|
}
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
|
|
116
|
+
class KinesisServiceException extends smithyClient.ServiceException {
|
|
117
117
|
constructor(options) {
|
|
118
118
|
super(options);
|
|
119
119
|
Object.setPrototypeOf(this, KinesisServiceException.prototype);
|
|
120
120
|
}
|
|
121
|
-
}
|
|
121
|
+
}
|
|
122
122
|
|
|
123
|
-
|
|
123
|
+
class AccessDeniedException extends KinesisServiceException {
|
|
124
124
|
name = "AccessDeniedException";
|
|
125
125
|
$fault = "client";
|
|
126
126
|
constructor(opts) {
|
|
@@ -131,8 +131,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends KinesisService
|
|
|
131
131
|
});
|
|
132
132
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
133
133
|
}
|
|
134
|
-
}
|
|
135
|
-
|
|
134
|
+
}
|
|
135
|
+
class InvalidArgumentException extends KinesisServiceException {
|
|
136
136
|
name = "InvalidArgumentException";
|
|
137
137
|
$fault = "client";
|
|
138
138
|
constructor(opts) {
|
|
@@ -143,8 +143,8 @@ let InvalidArgumentException$1 = class InvalidArgumentException extends KinesisS
|
|
|
143
143
|
});
|
|
144
144
|
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
145
145
|
}
|
|
146
|
-
}
|
|
147
|
-
|
|
146
|
+
}
|
|
147
|
+
class LimitExceededException extends KinesisServiceException {
|
|
148
148
|
name = "LimitExceededException";
|
|
149
149
|
$fault = "client";
|
|
150
150
|
constructor(opts) {
|
|
@@ -155,8 +155,8 @@ let LimitExceededException$1 = class LimitExceededException extends KinesisServi
|
|
|
155
155
|
});
|
|
156
156
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
157
157
|
}
|
|
158
|
-
}
|
|
159
|
-
|
|
158
|
+
}
|
|
159
|
+
class ResourceInUseException extends KinesisServiceException {
|
|
160
160
|
name = "ResourceInUseException";
|
|
161
161
|
$fault = "client";
|
|
162
162
|
constructor(opts) {
|
|
@@ -167,8 +167,8 @@ let ResourceInUseException$1 = class ResourceInUseException extends KinesisServi
|
|
|
167
167
|
});
|
|
168
168
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
169
169
|
}
|
|
170
|
-
}
|
|
171
|
-
|
|
170
|
+
}
|
|
171
|
+
class ResourceNotFoundException extends KinesisServiceException {
|
|
172
172
|
name = "ResourceNotFoundException";
|
|
173
173
|
$fault = "client";
|
|
174
174
|
constructor(opts) {
|
|
@@ -179,8 +179,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Kinesi
|
|
|
179
179
|
});
|
|
180
180
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
181
181
|
}
|
|
182
|
-
}
|
|
183
|
-
|
|
182
|
+
}
|
|
183
|
+
class ValidationException extends KinesisServiceException {
|
|
184
184
|
name = "ValidationException";
|
|
185
185
|
$fault = "client";
|
|
186
186
|
constructor(opts) {
|
|
@@ -191,8 +191,8 @@ let ValidationException$1 = class ValidationException extends KinesisServiceExce
|
|
|
191
191
|
});
|
|
192
192
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
193
193
|
}
|
|
194
|
-
}
|
|
195
|
-
|
|
194
|
+
}
|
|
195
|
+
class ExpiredIteratorException extends KinesisServiceException {
|
|
196
196
|
name = "ExpiredIteratorException";
|
|
197
197
|
$fault = "client";
|
|
198
198
|
constructor(opts) {
|
|
@@ -203,8 +203,8 @@ let ExpiredIteratorException$1 = class ExpiredIteratorException extends KinesisS
|
|
|
203
203
|
});
|
|
204
204
|
Object.setPrototypeOf(this, ExpiredIteratorException.prototype);
|
|
205
205
|
}
|
|
206
|
-
}
|
|
207
|
-
|
|
206
|
+
}
|
|
207
|
+
class ExpiredNextTokenException extends KinesisServiceException {
|
|
208
208
|
name = "ExpiredNextTokenException";
|
|
209
209
|
$fault = "client";
|
|
210
210
|
constructor(opts) {
|
|
@@ -215,8 +215,8 @@ let ExpiredNextTokenException$1 = class ExpiredNextTokenException extends Kinesi
|
|
|
215
215
|
});
|
|
216
216
|
Object.setPrototypeOf(this, ExpiredNextTokenException.prototype);
|
|
217
217
|
}
|
|
218
|
-
}
|
|
219
|
-
|
|
218
|
+
}
|
|
219
|
+
class InternalFailureException extends KinesisServiceException {
|
|
220
220
|
name = "InternalFailureException";
|
|
221
221
|
$fault = "server";
|
|
222
222
|
constructor(opts) {
|
|
@@ -227,8 +227,8 @@ let InternalFailureException$1 = class InternalFailureException extends KinesisS
|
|
|
227
227
|
});
|
|
228
228
|
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
229
229
|
}
|
|
230
|
-
}
|
|
231
|
-
|
|
230
|
+
}
|
|
231
|
+
class KMSAccessDeniedException extends KinesisServiceException {
|
|
232
232
|
name = "KMSAccessDeniedException";
|
|
233
233
|
$fault = "client";
|
|
234
234
|
constructor(opts) {
|
|
@@ -239,8 +239,8 @@ let KMSAccessDeniedException$1 = class KMSAccessDeniedException extends KinesisS
|
|
|
239
239
|
});
|
|
240
240
|
Object.setPrototypeOf(this, KMSAccessDeniedException.prototype);
|
|
241
241
|
}
|
|
242
|
-
}
|
|
243
|
-
|
|
242
|
+
}
|
|
243
|
+
class KMSDisabledException extends KinesisServiceException {
|
|
244
244
|
name = "KMSDisabledException";
|
|
245
245
|
$fault = "client";
|
|
246
246
|
constructor(opts) {
|
|
@@ -251,8 +251,8 @@ let KMSDisabledException$1 = class KMSDisabledException extends KinesisServiceEx
|
|
|
251
251
|
});
|
|
252
252
|
Object.setPrototypeOf(this, KMSDisabledException.prototype);
|
|
253
253
|
}
|
|
254
|
-
}
|
|
255
|
-
|
|
254
|
+
}
|
|
255
|
+
class KMSInvalidStateException extends KinesisServiceException {
|
|
256
256
|
name = "KMSInvalidStateException";
|
|
257
257
|
$fault = "client";
|
|
258
258
|
constructor(opts) {
|
|
@@ -263,8 +263,8 @@ let KMSInvalidStateException$1 = class KMSInvalidStateException extends KinesisS
|
|
|
263
263
|
});
|
|
264
264
|
Object.setPrototypeOf(this, KMSInvalidStateException.prototype);
|
|
265
265
|
}
|
|
266
|
-
}
|
|
267
|
-
|
|
266
|
+
}
|
|
267
|
+
class KMSNotFoundException extends KinesisServiceException {
|
|
268
268
|
name = "KMSNotFoundException";
|
|
269
269
|
$fault = "client";
|
|
270
270
|
constructor(opts) {
|
|
@@ -275,8 +275,8 @@ let KMSNotFoundException$1 = class KMSNotFoundException extends KinesisServiceEx
|
|
|
275
275
|
});
|
|
276
276
|
Object.setPrototypeOf(this, KMSNotFoundException.prototype);
|
|
277
277
|
}
|
|
278
|
-
}
|
|
279
|
-
|
|
278
|
+
}
|
|
279
|
+
class KMSOptInRequired extends KinesisServiceException {
|
|
280
280
|
name = "KMSOptInRequired";
|
|
281
281
|
$fault = "client";
|
|
282
282
|
constructor(opts) {
|
|
@@ -287,8 +287,8 @@ let KMSOptInRequired$1 = class KMSOptInRequired extends KinesisServiceException$
|
|
|
287
287
|
});
|
|
288
288
|
Object.setPrototypeOf(this, KMSOptInRequired.prototype);
|
|
289
289
|
}
|
|
290
|
-
}
|
|
291
|
-
|
|
290
|
+
}
|
|
291
|
+
class KMSThrottlingException extends KinesisServiceException {
|
|
292
292
|
name = "KMSThrottlingException";
|
|
293
293
|
$fault = "client";
|
|
294
294
|
constructor(opts) {
|
|
@@ -299,8 +299,8 @@ let KMSThrottlingException$1 = class KMSThrottlingException extends KinesisServi
|
|
|
299
299
|
});
|
|
300
300
|
Object.setPrototypeOf(this, KMSThrottlingException.prototype);
|
|
301
301
|
}
|
|
302
|
-
}
|
|
303
|
-
|
|
302
|
+
}
|
|
303
|
+
class ProvisionedThroughputExceededException extends KinesisServiceException {
|
|
304
304
|
name = "ProvisionedThroughputExceededException";
|
|
305
305
|
$fault = "client";
|
|
306
306
|
constructor(opts) {
|
|
@@ -311,7 +311,7 @@ let ProvisionedThroughputExceededException$1 = class ProvisionedThroughputExceed
|
|
|
311
311
|
});
|
|
312
312
|
Object.setPrototypeOf(this, ProvisionedThroughputExceededException.prototype);
|
|
313
313
|
}
|
|
314
|
-
}
|
|
314
|
+
}
|
|
315
315
|
|
|
316
316
|
const _AAT = "ApproximateArrivalTimestamp";
|
|
317
317
|
const _ADE = "AccessDeniedException";
|
|
@@ -552,12 +552,12 @@ const _s = "server";
|
|
|
552
552
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.kinesis";
|
|
553
553
|
const _st = "streaming";
|
|
554
554
|
const n0 = "com.amazonaws.kinesis";
|
|
555
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c }, [_m], [0]];
|
|
556
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
557
|
-
var AddTagsToStreamInput = [3, n0, _ATTSI, 0, [_SN, _T, _SARN], [0, 128 | 0, 0]];
|
|
558
|
-
var ChildShard = [3, n0, _CS, 0, [_SI, _PS, _HKR], [0, 64 | 0, () => HashKeyRange]];
|
|
559
|
-
var Consumer = [3, n0, _C, 0, [_CN, _CARN, _CSo, _CCT], [0, 0, 0, 4]];
|
|
560
|
-
var ConsumerDescription = [
|
|
555
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c }, [_m], [0]];
|
|
556
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
557
|
+
var AddTagsToStreamInput$ = [3, n0, _ATTSI, 0, [_SN, _T, _SARN], [0, 128 | 0, 0]];
|
|
558
|
+
var ChildShard$ = [3, n0, _CS, 0, [_SI, _PS, _HKR], [0, 64 | 0, () => HashKeyRange$]];
|
|
559
|
+
var Consumer$ = [3, n0, _C, 0, [_CN, _CARN, _CSo, _CCT], [0, 0, 0, 4]];
|
|
560
|
+
var ConsumerDescription$ = [
|
|
561
561
|
3,
|
|
562
562
|
n0,
|
|
563
563
|
_CD,
|
|
@@ -565,15 +565,15 @@ var ConsumerDescription = [
|
|
|
565
565
|
[_CN, _CARN, _CSo, _CCT, _SARN],
|
|
566
566
|
[0, 0, 0, 4, 0],
|
|
567
567
|
];
|
|
568
|
-
var CreateStreamInput = [
|
|
568
|
+
var CreateStreamInput$ = [
|
|
569
569
|
3,
|
|
570
570
|
n0,
|
|
571
571
|
_CSI,
|
|
572
572
|
0,
|
|
573
573
|
[_SN, _SC, _SMD, _T, _WTMB, _MRSIKB],
|
|
574
|
-
[0, 1, () => StreamModeDetails
|
|
574
|
+
[0, 1, () => StreamModeDetails$, 128 | 0, 1, 1],
|
|
575
575
|
];
|
|
576
|
-
var DecreaseStreamRetentionPeriodInput = [
|
|
576
|
+
var DecreaseStreamRetentionPeriodInput$ = [
|
|
577
577
|
3,
|
|
578
578
|
n0,
|
|
579
579
|
_DSRPI,
|
|
@@ -581,34 +581,41 @@ var DecreaseStreamRetentionPeriodInput = [
|
|
|
581
581
|
[_SN, _RPH, _SARN],
|
|
582
582
|
[0, 1, 0],
|
|
583
583
|
];
|
|
584
|
-
var DeleteResourcePolicyInput = [3, n0, _DRPI, 0, [_RARN], [0]];
|
|
585
|
-
var DeleteStreamInput = [3, n0, _DSI, 0, [_SN, _ECD, _SARN], [0, 2, 0]];
|
|
586
|
-
var DeregisterStreamConsumerInput = [3, n0, _DSCI, 0, [_SARN, _CN, _CARN], [0, 0, 0]];
|
|
587
|
-
var DescribeAccountSettingsInput = [3, n0, _DASI, 0, [], []];
|
|
588
|
-
var DescribeAccountSettingsOutput = [
|
|
584
|
+
var DeleteResourcePolicyInput$ = [3, n0, _DRPI, 0, [_RARN], [0]];
|
|
585
|
+
var DeleteStreamInput$ = [3, n0, _DSI, 0, [_SN, _ECD, _SARN], [0, 2, 0]];
|
|
586
|
+
var DeregisterStreamConsumerInput$ = [3, n0, _DSCI, 0, [_SARN, _CN, _CARN], [0, 0, 0]];
|
|
587
|
+
var DescribeAccountSettingsInput$ = [3, n0, _DASI, 0, [], []];
|
|
588
|
+
var DescribeAccountSettingsOutput$ = [
|
|
589
589
|
3,
|
|
590
590
|
n0,
|
|
591
591
|
_DASO,
|
|
592
592
|
0,
|
|
593
593
|
[_MTBC],
|
|
594
|
-
[() => MinimumThroughputBillingCommitmentOutput],
|
|
594
|
+
[() => MinimumThroughputBillingCommitmentOutput$],
|
|
595
|
+
];
|
|
596
|
+
var DescribeLimitsInput$ = [3, n0, _DLI, 0, [], []];
|
|
597
|
+
var DescribeLimitsOutput$ = [3, n0, _DLO, 0, [_SL, _OSC, _ODSC, _ODSCL], [1, 1, 1, 1]];
|
|
598
|
+
var DescribeStreamConsumerInput$ = [3, n0, _DSCIe, 0, [_SARN, _CN, _CARN], [0, 0, 0]];
|
|
599
|
+
var DescribeStreamConsumerOutput$ = [
|
|
600
|
+
3,
|
|
601
|
+
n0,
|
|
602
|
+
_DSCO,
|
|
603
|
+
0,
|
|
604
|
+
[_CD],
|
|
605
|
+
[() => ConsumerDescription$],
|
|
595
606
|
];
|
|
596
|
-
var
|
|
597
|
-
var
|
|
598
|
-
var
|
|
599
|
-
var
|
|
600
|
-
var DescribeStreamInput = [3, n0, _DSIe, 0, [_SN, _L, _ESSI, _SARN], [0, 1, 0, 0]];
|
|
601
|
-
var DescribeStreamOutput = [3, n0, _DSO, 0, [_SD], [() => StreamDescription]];
|
|
602
|
-
var DescribeStreamSummaryInput = [3, n0, _DSSI, 0, [_SN, _SARN], [0, 0]];
|
|
603
|
-
var DescribeStreamSummaryOutput = [
|
|
607
|
+
var DescribeStreamInput$ = [3, n0, _DSIe, 0, [_SN, _L, _ESSI, _SARN], [0, 1, 0, 0]];
|
|
608
|
+
var DescribeStreamOutput$ = [3, n0, _DSO, 0, [_SD], [() => StreamDescription$]];
|
|
609
|
+
var DescribeStreamSummaryInput$ = [3, n0, _DSSI, 0, [_SN, _SARN], [0, 0]];
|
|
610
|
+
var DescribeStreamSummaryOutput$ = [
|
|
604
611
|
3,
|
|
605
612
|
n0,
|
|
606
613
|
_DSSO,
|
|
607
614
|
0,
|
|
608
615
|
[_SDS],
|
|
609
|
-
[() => StreamDescriptionSummary],
|
|
616
|
+
[() => StreamDescriptionSummary$],
|
|
610
617
|
];
|
|
611
|
-
var DisableEnhancedMonitoringInput = [
|
|
618
|
+
var DisableEnhancedMonitoringInput$ = [
|
|
612
619
|
3,
|
|
613
620
|
n0,
|
|
614
621
|
_DEMI,
|
|
@@ -616,9 +623,16 @@ var DisableEnhancedMonitoringInput = [
|
|
|
616
623
|
[_SN, _SLM, _SARN],
|
|
617
624
|
[0, 64 | 0, 0],
|
|
618
625
|
];
|
|
619
|
-
var EnableEnhancedMonitoringInput = [
|
|
620
|
-
|
|
621
|
-
|
|
626
|
+
var EnableEnhancedMonitoringInput$ = [
|
|
627
|
+
3,
|
|
628
|
+
n0,
|
|
629
|
+
_EEMI,
|
|
630
|
+
0,
|
|
631
|
+
[_SN, _SLM, _SARN],
|
|
632
|
+
[0, 64 | 0, 0],
|
|
633
|
+
];
|
|
634
|
+
var EnhancedMetrics$ = [3, n0, _EM, 0, [_SLM], [64 | 0]];
|
|
635
|
+
var EnhancedMonitoringOutput$ = [
|
|
622
636
|
3,
|
|
623
637
|
n0,
|
|
624
638
|
_EMO,
|
|
@@ -626,12 +640,12 @@ var EnhancedMonitoringOutput = [
|
|
|
626
640
|
[_SN, _CSLM, _DSLM, _SARN],
|
|
627
641
|
[0, 64 | 0, 64 | 0, 0],
|
|
628
642
|
];
|
|
629
|
-
var ExpiredIteratorException = [-3, n0, _EIE, { [_e]: _c }, [_m], [0]];
|
|
630
|
-
schema.TypeRegistry.for(n0).registerError(ExpiredIteratorException
|
|
631
|
-
var ExpiredNextTokenException = [-3, n0, _ENTE, { [_e]: _c }, [_m], [0]];
|
|
632
|
-
schema.TypeRegistry.for(n0).registerError(ExpiredNextTokenException
|
|
633
|
-
var GetRecordsInput = [3, n0, _GRI, 0, [_SIh, _L, _SARN], [0, 1, 0]];
|
|
634
|
-
var GetRecordsOutput = [
|
|
643
|
+
var ExpiredIteratorException$ = [-3, n0, _EIE, { [_e]: _c }, [_m], [0]];
|
|
644
|
+
schema.TypeRegistry.for(n0).registerError(ExpiredIteratorException$, ExpiredIteratorException);
|
|
645
|
+
var ExpiredNextTokenException$ = [-3, n0, _ENTE, { [_e]: _c }, [_m], [0]];
|
|
646
|
+
schema.TypeRegistry.for(n0).registerError(ExpiredNextTokenException$, ExpiredNextTokenException);
|
|
647
|
+
var GetRecordsInput$ = [3, n0, _GRI, 0, [_SIh, _L, _SARN], [0, 1, 0]];
|
|
648
|
+
var GetRecordsOutput$ = [
|
|
635
649
|
3,
|
|
636
650
|
n0,
|
|
637
651
|
_GRO,
|
|
@@ -639,9 +653,9 @@ var GetRecordsOutput = [
|
|
|
639
653
|
[_R, _NSI, _MBL, _CSh],
|
|
640
654
|
[() => RecordList, 0, 1, () => ChildShardList],
|
|
641
655
|
];
|
|
642
|
-
var GetResourcePolicyInput = [3, n0, _GRPI, 0, [_RARN], [0]];
|
|
643
|
-
var GetResourcePolicyOutput = [3, n0, _GRPO, 0, [_P], [0]];
|
|
644
|
-
var GetShardIteratorInput = [
|
|
656
|
+
var GetResourcePolicyInput$ = [3, n0, _GRPI, 0, [_RARN], [0]];
|
|
657
|
+
var GetResourcePolicyOutput$ = [3, n0, _GRPO, 0, [_P], [0]];
|
|
658
|
+
var GetShardIteratorInput$ = [
|
|
645
659
|
3,
|
|
646
660
|
n0,
|
|
647
661
|
_GSII,
|
|
@@ -649,9 +663,9 @@ var GetShardIteratorInput = [
|
|
|
649
663
|
[_SN, _SI, _SIT, _SSN, _Ti, _SARN],
|
|
650
664
|
[0, 0, 0, 0, 4, 0],
|
|
651
665
|
];
|
|
652
|
-
var GetShardIteratorOutput = [3, n0, _GSIO, 0, [_SIh], [0]];
|
|
653
|
-
var HashKeyRange = [3, n0, _HKR, 0, [_SHK, _EHK], [0, 0]];
|
|
654
|
-
var IncreaseStreamRetentionPeriodInput = [
|
|
666
|
+
var GetShardIteratorOutput$ = [3, n0, _GSIO, 0, [_SIh], [0]];
|
|
667
|
+
var HashKeyRange$ = [3, n0, _HKR, 0, [_SHK, _EHK], [0, 0]];
|
|
668
|
+
var IncreaseStreamRetentionPeriodInput$ = [
|
|
655
669
|
3,
|
|
656
670
|
n0,
|
|
657
671
|
_ISRPI,
|
|
@@ -659,37 +673,37 @@ var IncreaseStreamRetentionPeriodInput = [
|
|
|
659
673
|
[_SN, _RPH, _SARN],
|
|
660
674
|
[0, 1, 0],
|
|
661
675
|
];
|
|
662
|
-
var InternalFailureException = [-3, n0, _IFE, { [_e]: _s }, [_m], [0]];
|
|
663
|
-
schema.TypeRegistry.for(n0).registerError(InternalFailureException
|
|
664
|
-
var InvalidArgumentException = [-3, n0, _IAE, { [_e]: _c }, [_m], [0]];
|
|
665
|
-
schema.TypeRegistry.for(n0).registerError(InvalidArgumentException
|
|
666
|
-
var KMSAccessDeniedException = [-3, n0, _KMSADE, { [_e]: _c }, [_m], [0]];
|
|
667
|
-
schema.TypeRegistry.for(n0).registerError(KMSAccessDeniedException
|
|
668
|
-
var KMSDisabledException = [-3, n0, _KMSDE, { [_e]: _c }, [_m], [0]];
|
|
669
|
-
schema.TypeRegistry.for(n0).registerError(KMSDisabledException
|
|
670
|
-
var KMSInvalidStateException = [-3, n0, _KMSISE, { [_e]: _c }, [_m], [0]];
|
|
671
|
-
schema.TypeRegistry.for(n0).registerError(KMSInvalidStateException
|
|
672
|
-
var KMSNotFoundException = [-3, n0, _KMSNFE, { [_e]: _c }, [_m], [0]];
|
|
673
|
-
schema.TypeRegistry.for(n0).registerError(KMSNotFoundException
|
|
674
|
-
var KMSOptInRequired = [-3, n0, _KMSOIR, { [_e]: _c }, [_m], [0]];
|
|
675
|
-
schema.TypeRegistry.for(n0).registerError(KMSOptInRequired
|
|
676
|
-
var KMSThrottlingException = [-3, n0, _KMSTE, { [_e]: _c }, [_m], [0]];
|
|
677
|
-
schema.TypeRegistry.for(n0).registerError(KMSThrottlingException
|
|
678
|
-
var LimitExceededException = [-3, n0, _LEE, { [_e]: _c }, [_m], [0]];
|
|
679
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException
|
|
680
|
-
var ListShardsInput = [
|
|
676
|
+
var InternalFailureException$ = [-3, n0, _IFE, { [_e]: _s }, [_m], [0]];
|
|
677
|
+
schema.TypeRegistry.for(n0).registerError(InternalFailureException$, InternalFailureException);
|
|
678
|
+
var InvalidArgumentException$ = [-3, n0, _IAE, { [_e]: _c }, [_m], [0]];
|
|
679
|
+
schema.TypeRegistry.for(n0).registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
680
|
+
var KMSAccessDeniedException$ = [-3, n0, _KMSADE, { [_e]: _c }, [_m], [0]];
|
|
681
|
+
schema.TypeRegistry.for(n0).registerError(KMSAccessDeniedException$, KMSAccessDeniedException);
|
|
682
|
+
var KMSDisabledException$ = [-3, n0, _KMSDE, { [_e]: _c }, [_m], [0]];
|
|
683
|
+
schema.TypeRegistry.for(n0).registerError(KMSDisabledException$, KMSDisabledException);
|
|
684
|
+
var KMSInvalidStateException$ = [-3, n0, _KMSISE, { [_e]: _c }, [_m], [0]];
|
|
685
|
+
schema.TypeRegistry.for(n0).registerError(KMSInvalidStateException$, KMSInvalidStateException);
|
|
686
|
+
var KMSNotFoundException$ = [-3, n0, _KMSNFE, { [_e]: _c }, [_m], [0]];
|
|
687
|
+
schema.TypeRegistry.for(n0).registerError(KMSNotFoundException$, KMSNotFoundException);
|
|
688
|
+
var KMSOptInRequired$ = [-3, n0, _KMSOIR, { [_e]: _c }, [_m], [0]];
|
|
689
|
+
schema.TypeRegistry.for(n0).registerError(KMSOptInRequired$, KMSOptInRequired);
|
|
690
|
+
var KMSThrottlingException$ = [-3, n0, _KMSTE, { [_e]: _c }, [_m], [0]];
|
|
691
|
+
schema.TypeRegistry.for(n0).registerError(KMSThrottlingException$, KMSThrottlingException);
|
|
692
|
+
var LimitExceededException$ = [-3, n0, _LEE, { [_e]: _c }, [_m], [0]];
|
|
693
|
+
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
694
|
+
var ListShardsInput$ = [
|
|
681
695
|
3,
|
|
682
696
|
n0,
|
|
683
697
|
_LSI,
|
|
684
698
|
0,
|
|
685
699
|
[_SN, _NT, _ESSI, _MR, _SCT, _SF, _SARN],
|
|
686
|
-
[0, 0, 0, 1, 4, () => ShardFilter
|
|
700
|
+
[0, 0, 0, 1, 4, () => ShardFilter$, 0],
|
|
687
701
|
];
|
|
688
|
-
var ListShardsOutput = [3, n0, _LSO, 0, [_S, _NT], [() => ShardList, 0]];
|
|
689
|
-
var ListStreamConsumersInput = [3, n0, _LSCI, 0, [_SARN, _NT, _MR, _SCT], [0, 0, 1, 4]];
|
|
690
|
-
var ListStreamConsumersOutput = [3, n0, _LSCO, 0, [_Co, _NT], [() => ConsumerList, 0]];
|
|
691
|
-
var ListStreamsInput = [3, n0, _LSIi, 0, [_L, _ESSN, _NT], [1, 0, 0]];
|
|
692
|
-
var ListStreamsOutput = [
|
|
702
|
+
var ListShardsOutput$ = [3, n0, _LSO, 0, [_S, _NT], [() => ShardList, 0]];
|
|
703
|
+
var ListStreamConsumersInput$ = [3, n0, _LSCI, 0, [_SARN, _NT, _MR, _SCT], [0, 0, 1, 4]];
|
|
704
|
+
var ListStreamConsumersOutput$ = [3, n0, _LSCO, 0, [_Co, _NT], [() => ConsumerList, 0]];
|
|
705
|
+
var ListStreamsInput$ = [3, n0, _LSIi, 0, [_L, _ESSN, _NT], [1, 0, 0]];
|
|
706
|
+
var ListStreamsOutput$ = [
|
|
693
707
|
3,
|
|
694
708
|
n0,
|
|
695
709
|
_LSOi,
|
|
@@ -697,13 +711,13 @@ var ListStreamsOutput = [
|
|
|
697
711
|
[_SNt, _HMS, _NT, _SS],
|
|
698
712
|
[64 | 0, 2, 0, () => StreamSummaryList],
|
|
699
713
|
];
|
|
700
|
-
var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_RARN], [0]];
|
|
701
|
-
var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_T], [() => TagList]];
|
|
702
|
-
var ListTagsForStreamInput = [3, n0, _LTFSI, 0, [_SN, _ESTK, _L, _SARN], [0, 0, 1, 0]];
|
|
703
|
-
var ListTagsForStreamOutput = [3, n0, _LTFSO, 0, [_T, _HMT], [() => TagList, 2]];
|
|
704
|
-
var MergeShardsInput = [3, n0, _MSI, 0, [_SN, _STM, _ASTM, _SARN], [0, 0, 0, 0]];
|
|
705
|
-
var MinimumThroughputBillingCommitmentInput = [3, n0, _MTBCI, 0, [_St], [0]];
|
|
706
|
-
var MinimumThroughputBillingCommitmentOutput = [
|
|
714
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI, 0, [_RARN], [0]];
|
|
715
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO, 0, [_T], [() => TagList]];
|
|
716
|
+
var ListTagsForStreamInput$ = [3, n0, _LTFSI, 0, [_SN, _ESTK, _L, _SARN], [0, 0, 1, 0]];
|
|
717
|
+
var ListTagsForStreamOutput$ = [3, n0, _LTFSO, 0, [_T, _HMT], [() => TagList, 2]];
|
|
718
|
+
var MergeShardsInput$ = [3, n0, _MSI, 0, [_SN, _STM, _ASTM, _SARN], [0, 0, 0, 0]];
|
|
719
|
+
var MinimumThroughputBillingCommitmentInput$ = [3, n0, _MTBCI, 0, [_St], [0]];
|
|
720
|
+
var MinimumThroughputBillingCommitmentOutput$ = [
|
|
707
721
|
3,
|
|
708
722
|
n0,
|
|
709
723
|
_MTBCO,
|
|
@@ -711,9 +725,9 @@ var MinimumThroughputBillingCommitmentOutput = [
|
|
|
711
725
|
[_St, _SA, _EA, _EAEA],
|
|
712
726
|
[0, 4, 4, 4],
|
|
713
727
|
];
|
|
714
|
-
var ProvisionedThroughputExceededException = [-3, n0, _PTEE, { [_e]: _c }, [_m], [0]];
|
|
715
|
-
schema.TypeRegistry.for(n0).registerError(ProvisionedThroughputExceededException
|
|
716
|
-
var PutRecordInput = [
|
|
728
|
+
var ProvisionedThroughputExceededException$ = [-3, n0, _PTEE, { [_e]: _c }, [_m], [0]];
|
|
729
|
+
schema.TypeRegistry.for(n0).registerError(ProvisionedThroughputExceededException$, ProvisionedThroughputExceededException);
|
|
730
|
+
var PutRecordInput$ = [
|
|
717
731
|
3,
|
|
718
732
|
n0,
|
|
719
733
|
_PRI,
|
|
@@ -721,8 +735,8 @@ var PutRecordInput = [
|
|
|
721
735
|
[_SN, _D, _PK, _EHKx, _SNFO, _SARN],
|
|
722
736
|
[0, 21, 0, 0, 0, 0],
|
|
723
737
|
];
|
|
724
|
-
var PutRecordOutput = [3, n0, _PRO, 0, [_SI, _SNe, _ET], [0, 0, 0]];
|
|
725
|
-
var PutRecordsInput = [
|
|
738
|
+
var PutRecordOutput$ = [3, n0, _PRO, 0, [_SI, _SNe, _ET], [0, 0, 0]];
|
|
739
|
+
var PutRecordsInput$ = [
|
|
726
740
|
3,
|
|
727
741
|
n0,
|
|
728
742
|
_PRIu,
|
|
@@ -730,7 +744,7 @@ var PutRecordsInput = [
|
|
|
730
744
|
[_R, _SN, _SARN],
|
|
731
745
|
[() => PutRecordsRequestEntryList, 0, 0],
|
|
732
746
|
];
|
|
733
|
-
var PutRecordsOutput = [
|
|
747
|
+
var PutRecordsOutput$ = [
|
|
734
748
|
3,
|
|
735
749
|
n0,
|
|
736
750
|
_PROu,
|
|
@@ -738,57 +752,57 @@ var PutRecordsOutput = [
|
|
|
738
752
|
[_FRC, _R, _ET],
|
|
739
753
|
[1, () => PutRecordsResultEntryList, 0],
|
|
740
754
|
];
|
|
741
|
-
var PutRecordsRequestEntry = [3, n0, _PRRE, 0, [_D, _EHKx, _PK], [21, 0, 0]];
|
|
742
|
-
var PutRecordsResultEntry = [3, n0, _PRREu, 0, [_SNe, _SI, _EC, _EMr], [0, 0, 0, 0]];
|
|
743
|
-
var PutResourcePolicyInput = [3, n0, _PRPI, 0, [_RARN, _P], [0, 0]];
|
|
744
|
-
var _Record = [3, n0, _Re, 0, [_SNe, _AAT, _D, _PK, _ET], [0, 4, 21, 0, 0]];
|
|
745
|
-
var RegisterStreamConsumerInput = [3, n0, _RSCI, 0, [_SARN, _CN, _T], [0, 0, 128 | 0]];
|
|
746
|
-
var RegisterStreamConsumerOutput = [3, n0, _RSCO, 0, [_C], [() => Consumer]];
|
|
747
|
-
var RemoveTagsFromStreamInput = [3, n0, _RTFSI, 0, [_SN, _TK, _SARN], [0, 64 | 0, 0]];
|
|
748
|
-
var ResourceInUseException = [-3, n0, _RIUE, { [_e]: _c }, [_m], [0]];
|
|
749
|
-
schema.TypeRegistry.for(n0).registerError(ResourceInUseException
|
|
750
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c }, [_m], [0]];
|
|
751
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
752
|
-
var SequenceNumberRange = [3, n0, _SNR, 0, [_SSN, _ESN], [0, 0]];
|
|
753
|
-
var Shard = [
|
|
755
|
+
var PutRecordsRequestEntry$ = [3, n0, _PRRE, 0, [_D, _EHKx, _PK], [21, 0, 0]];
|
|
756
|
+
var PutRecordsResultEntry$ = [3, n0, _PRREu, 0, [_SNe, _SI, _EC, _EMr], [0, 0, 0, 0]];
|
|
757
|
+
var PutResourcePolicyInput$ = [3, n0, _PRPI, 0, [_RARN, _P], [0, 0]];
|
|
758
|
+
var _Record$ = [3, n0, _Re, 0, [_SNe, _AAT, _D, _PK, _ET], [0, 4, 21, 0, 0]];
|
|
759
|
+
var RegisterStreamConsumerInput$ = [3, n0, _RSCI, 0, [_SARN, _CN, _T], [0, 0, 128 | 0]];
|
|
760
|
+
var RegisterStreamConsumerOutput$ = [3, n0, _RSCO, 0, [_C], [() => Consumer$]];
|
|
761
|
+
var RemoveTagsFromStreamInput$ = [3, n0, _RTFSI, 0, [_SN, _TK, _SARN], [0, 64 | 0, 0]];
|
|
762
|
+
var ResourceInUseException$ = [-3, n0, _RIUE, { [_e]: _c }, [_m], [0]];
|
|
763
|
+
schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
764
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c }, [_m], [0]];
|
|
765
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
766
|
+
var SequenceNumberRange$ = [3, n0, _SNR, 0, [_SSN, _ESN], [0, 0]];
|
|
767
|
+
var Shard$ = [
|
|
754
768
|
3,
|
|
755
769
|
n0,
|
|
756
770
|
_Sh,
|
|
757
771
|
0,
|
|
758
772
|
[_SI, _PSI, _APSI, _HKR, _SNR],
|
|
759
|
-
[0, 0, 0, () => HashKeyRange
|
|
773
|
+
[0, 0, 0, () => HashKeyRange$, () => SequenceNumberRange$],
|
|
760
774
|
];
|
|
761
|
-
var ShardFilter = [3, n0, _SF, 0, [_Ty, _SI, _Ti], [0, 0, 4]];
|
|
762
|
-
var SplitShardInput = [3, n0, _SSI, 0, [_SN, _STS, _NSHK, _SARN], [0, 0, 0, 0]];
|
|
763
|
-
var StartingPosition = [3, n0, _SP, 0, [_Ty, _SNe, _Ti], [0, 0, 4]];
|
|
764
|
-
var StartStreamEncryptionInput = [3, n0, _SSEI, 0, [_SN, _ET, _KI, _SARN], [0, 0, 0, 0]];
|
|
765
|
-
var StopStreamEncryptionInput = [3, n0, _SSEIt, 0, [_SN, _ET, _KI, _SARN], [0, 0, 0, 0]];
|
|
766
|
-
var StreamDescription = [
|
|
775
|
+
var ShardFilter$ = [3, n0, _SF, 0, [_Ty, _SI, _Ti], [0, 0, 4]];
|
|
776
|
+
var SplitShardInput$ = [3, n0, _SSI, 0, [_SN, _STS, _NSHK, _SARN], [0, 0, 0, 0]];
|
|
777
|
+
var StartingPosition$ = [3, n0, _SP, 0, [_Ty, _SNe, _Ti], [0, 0, 4]];
|
|
778
|
+
var StartStreamEncryptionInput$ = [3, n0, _SSEI, 0, [_SN, _ET, _KI, _SARN], [0, 0, 0, 0]];
|
|
779
|
+
var StopStreamEncryptionInput$ = [3, n0, _SSEIt, 0, [_SN, _ET, _KI, _SARN], [0, 0, 0, 0]];
|
|
780
|
+
var StreamDescription$ = [
|
|
767
781
|
3,
|
|
768
782
|
n0,
|
|
769
783
|
_SD,
|
|
770
784
|
0,
|
|
771
785
|
[_SN, _SARN, _SSt, _SMD, _S, _HMSa, _RPH, _SCT, _EMn, _ET, _KI],
|
|
772
|
-
[0, 0, 0, () => StreamModeDetails
|
|
786
|
+
[0, 0, 0, () => StreamModeDetails$, () => ShardList, 2, 1, 4, () => EnhancedMonitoringList, 0, 0],
|
|
773
787
|
];
|
|
774
|
-
var StreamDescriptionSummary = [
|
|
788
|
+
var StreamDescriptionSummary$ = [
|
|
775
789
|
3,
|
|
776
790
|
n0,
|
|
777
791
|
_SDS,
|
|
778
792
|
0,
|
|
779
793
|
[_SN, _SARN, _SSt, _SMD, _RPH, _SCT, _EMn, _ET, _KI, _OSC, _CC, _WT, _MRSIKB],
|
|
780
|
-
[0, 0, 0, () => StreamModeDetails
|
|
794
|
+
[0, 0, 0, () => StreamModeDetails$, 1, 4, () => EnhancedMonitoringList, 0, 0, 1, 1, () => WarmThroughputObject$, 1],
|
|
781
795
|
];
|
|
782
|
-
var StreamModeDetails = [3, n0, _SMD, 0, [_SM], [0]];
|
|
783
|
-
var StreamSummary = [
|
|
796
|
+
var StreamModeDetails$ = [3, n0, _SMD, 0, [_SM], [0]];
|
|
797
|
+
var StreamSummary$ = [
|
|
784
798
|
3,
|
|
785
799
|
n0,
|
|
786
800
|
_SStr,
|
|
787
801
|
0,
|
|
788
802
|
[_SN, _SARN, _SSt, _SMD, _SCT],
|
|
789
|
-
[0, 0, 0, () => StreamModeDetails
|
|
803
|
+
[0, 0, 0, () => StreamModeDetails$, 4],
|
|
790
804
|
];
|
|
791
|
-
var SubscribeToShardEvent = [
|
|
805
|
+
var SubscribeToShardEvent$ = [
|
|
792
806
|
3,
|
|
793
807
|
n0,
|
|
794
808
|
_STSE,
|
|
@@ -796,301 +810,308 @@ var SubscribeToShardEvent = [
|
|
|
796
810
|
[_R, _CSN, _MBL, _CSh],
|
|
797
811
|
[() => RecordList, 0, 1, () => ChildShardList],
|
|
798
812
|
];
|
|
799
|
-
var SubscribeToShardInput = [
|
|
813
|
+
var SubscribeToShardInput$ = [
|
|
800
814
|
3,
|
|
801
815
|
n0,
|
|
802
816
|
_STSI,
|
|
803
817
|
0,
|
|
804
818
|
[_CARN, _SI, _SP],
|
|
805
|
-
[0, 0, () => StartingPosition],
|
|
819
|
+
[0, 0, () => StartingPosition$],
|
|
806
820
|
];
|
|
807
|
-
var SubscribeToShardOutput = [
|
|
821
|
+
var SubscribeToShardOutput$ = [
|
|
808
822
|
3,
|
|
809
823
|
n0,
|
|
810
824
|
_STSO,
|
|
811
825
|
0,
|
|
812
826
|
[_ES],
|
|
813
|
-
[[() => SubscribeToShardEventStream
|
|
827
|
+
[[() => SubscribeToShardEventStream$, 0]],
|
|
814
828
|
];
|
|
815
|
-
var Tag = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
|
|
816
|
-
var TagResourceInput = [3, n0, _TRI, 0, [_T, _RARN], [128 | 0, 0]];
|
|
817
|
-
var UntagResourceInput = [3, n0, _URI, 0, [_TK, _RARN], [64 | 0, 0]];
|
|
818
|
-
var UpdateAccountSettingsInput = [
|
|
829
|
+
var Tag$ = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
|
|
830
|
+
var TagResourceInput$ = [3, n0, _TRI, 0, [_T, _RARN], [128 | 0, 0]];
|
|
831
|
+
var UntagResourceInput$ = [3, n0, _URI, 0, [_TK, _RARN], [64 | 0, 0]];
|
|
832
|
+
var UpdateAccountSettingsInput$ = [
|
|
819
833
|
3,
|
|
820
834
|
n0,
|
|
821
835
|
_UASI,
|
|
822
836
|
0,
|
|
823
837
|
[_MTBC],
|
|
824
|
-
[() => MinimumThroughputBillingCommitmentInput],
|
|
838
|
+
[() => MinimumThroughputBillingCommitmentInput$],
|
|
825
839
|
];
|
|
826
|
-
var UpdateAccountSettingsOutput = [
|
|
840
|
+
var UpdateAccountSettingsOutput$ = [
|
|
827
841
|
3,
|
|
828
842
|
n0,
|
|
829
843
|
_UASO,
|
|
830
844
|
0,
|
|
831
845
|
[_MTBC],
|
|
832
|
-
[() => MinimumThroughputBillingCommitmentOutput],
|
|
846
|
+
[() => MinimumThroughputBillingCommitmentOutput$],
|
|
833
847
|
];
|
|
834
|
-
var UpdateMaxRecordSizeInput = [3, n0, _UMRSI, 0, [_SARN, _MRSIKB], [0, 1]];
|
|
835
|
-
var UpdateShardCountInput = [3, n0, _USCI, 0, [_SN, _TSC, _ST, _SARN], [0, 1, 0, 0]];
|
|
836
|
-
var UpdateShardCountOutput = [3, n0, _USCO, 0, [_SN, _CSC, _TSC, _SARN], [0, 1, 1, 0]];
|
|
837
|
-
var UpdateStreamModeInput = [
|
|
848
|
+
var UpdateMaxRecordSizeInput$ = [3, n0, _UMRSI, 0, [_SARN, _MRSIKB], [0, 1]];
|
|
849
|
+
var UpdateShardCountInput$ = [3, n0, _USCI, 0, [_SN, _TSC, _ST, _SARN], [0, 1, 0, 0]];
|
|
850
|
+
var UpdateShardCountOutput$ = [3, n0, _USCO, 0, [_SN, _CSC, _TSC, _SARN], [0, 1, 1, 0]];
|
|
851
|
+
var UpdateStreamModeInput$ = [
|
|
838
852
|
3,
|
|
839
853
|
n0,
|
|
840
854
|
_USMI,
|
|
841
855
|
0,
|
|
842
856
|
[_SARN, _SMD, _WTMB],
|
|
843
|
-
[0, () => StreamModeDetails
|
|
857
|
+
[0, () => StreamModeDetails$, 1],
|
|
844
858
|
];
|
|
845
|
-
var UpdateStreamWarmThroughputInput = [3, n0, _USWTI, 0, [_SARN, _SN, _WTMB], [0, 0, 1]];
|
|
846
|
-
var UpdateStreamWarmThroughputOutput = [
|
|
859
|
+
var UpdateStreamWarmThroughputInput$ = [3, n0, _USWTI, 0, [_SARN, _SN, _WTMB], [0, 0, 1]];
|
|
860
|
+
var UpdateStreamWarmThroughputOutput$ = [
|
|
847
861
|
3,
|
|
848
862
|
n0,
|
|
849
863
|
_USWTO,
|
|
850
864
|
0,
|
|
851
865
|
[_SARN, _SN, _WT],
|
|
852
|
-
[0, 0, () => WarmThroughputObject],
|
|
866
|
+
[0, 0, () => WarmThroughputObject$],
|
|
853
867
|
];
|
|
854
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c }, [_m], [0]];
|
|
855
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
856
|
-
var WarmThroughputObject = [3, n0, _WTO, 0, [_TMB, _CMB], [1, 1]];
|
|
868
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c }, [_m], [0]];
|
|
869
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
870
|
+
var WarmThroughputObject$ = [3, n0, _WTO, 0, [_TMB, _CMB], [1, 1]];
|
|
857
871
|
var __Unit = "unit";
|
|
858
|
-
var KinesisServiceException = [-3, _sm, "KinesisServiceException", 0, [], []];
|
|
859
|
-
schema.TypeRegistry.for(_sm).registerError(KinesisServiceException
|
|
860
|
-
var ChildShardList = [1, n0, _CSL, 0, () => ChildShard];
|
|
861
|
-
var ConsumerList = [1, n0, _CL, 0, () => Consumer];
|
|
862
|
-
var EnhancedMonitoringList = [1, n0, _EML, 0, () => EnhancedMetrics];
|
|
863
|
-
var PutRecordsRequestEntryList = [1, n0, _PRREL, 0, () => PutRecordsRequestEntry];
|
|
864
|
-
var PutRecordsResultEntryList = [1, n0, _PRRELu, 0, () => PutRecordsResultEntry];
|
|
865
|
-
var RecordList = [1, n0, _RL, 0, () => _Record];
|
|
866
|
-
var ShardList = [1, n0, _SLh, 0, () => Shard];
|
|
867
|
-
var StreamSummaryList = [1, n0, _SSL, 0, () => StreamSummary];
|
|
868
|
-
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
869
|
-
var SubscribeToShardEventStream = [
|
|
872
|
+
var KinesisServiceException$ = [-3, _sm, "KinesisServiceException", 0, [], []];
|
|
873
|
+
schema.TypeRegistry.for(_sm).registerError(KinesisServiceException$, KinesisServiceException);
|
|
874
|
+
var ChildShardList = [1, n0, _CSL, 0, () => ChildShard$];
|
|
875
|
+
var ConsumerList = [1, n0, _CL, 0, () => Consumer$];
|
|
876
|
+
var EnhancedMonitoringList = [1, n0, _EML, 0, () => EnhancedMetrics$];
|
|
877
|
+
var PutRecordsRequestEntryList = [1, n0, _PRREL, 0, () => PutRecordsRequestEntry$];
|
|
878
|
+
var PutRecordsResultEntryList = [1, n0, _PRRELu, 0, () => PutRecordsResultEntry$];
|
|
879
|
+
var RecordList = [1, n0, _RL, 0, () => _Record$];
|
|
880
|
+
var ShardList = [1, n0, _SLh, 0, () => Shard$];
|
|
881
|
+
var StreamSummaryList = [1, n0, _SSL, 0, () => StreamSummary$];
|
|
882
|
+
var TagList = [1, n0, _TL, 0, () => Tag$];
|
|
883
|
+
var SubscribeToShardEventStream$ = [
|
|
870
884
|
3,
|
|
871
885
|
n0,
|
|
872
886
|
_STSES,
|
|
873
887
|
{ [_st]: 1 },
|
|
874
888
|
[_STSE, _RNFE, _RIUE, _KMSDE, _KMSISE, _KMSADE, _KMSNFE, _KMSOIR, _KMSTE, _IFE],
|
|
875
889
|
[
|
|
876
|
-
() => SubscribeToShardEvent
|
|
877
|
-
[() => ResourceNotFoundException
|
|
878
|
-
[() => ResourceInUseException
|
|
879
|
-
[() => KMSDisabledException
|
|
880
|
-
[() => KMSInvalidStateException
|
|
881
|
-
[() => KMSAccessDeniedException
|
|
882
|
-
[() => KMSNotFoundException
|
|
883
|
-
[() => KMSOptInRequired
|
|
884
|
-
[() => KMSThrottlingException
|
|
885
|
-
[() => InternalFailureException
|
|
890
|
+
() => SubscribeToShardEvent$,
|
|
891
|
+
[() => ResourceNotFoundException$, 0],
|
|
892
|
+
[() => ResourceInUseException$, 0],
|
|
893
|
+
[() => KMSDisabledException$, 0],
|
|
894
|
+
[() => KMSInvalidStateException$, 0],
|
|
895
|
+
[() => KMSAccessDeniedException$, 0],
|
|
896
|
+
[() => KMSNotFoundException$, 0],
|
|
897
|
+
[() => KMSOptInRequired$, 0],
|
|
898
|
+
[() => KMSThrottlingException$, 0],
|
|
899
|
+
[() => InternalFailureException$, 0],
|
|
886
900
|
],
|
|
887
901
|
];
|
|
888
|
-
var AddTagsToStream = [9, n0, _ATTS, 0, () => AddTagsToStreamInput
|
|
889
|
-
var CreateStream = [9, n0, _CSr, 0, () => CreateStreamInput
|
|
890
|
-
var DecreaseStreamRetentionPeriod = [
|
|
902
|
+
var AddTagsToStream$ = [9, n0, _ATTS, 0, () => AddTagsToStreamInput$, () => __Unit];
|
|
903
|
+
var CreateStream$ = [9, n0, _CSr, 0, () => CreateStreamInput$, () => __Unit];
|
|
904
|
+
var DecreaseStreamRetentionPeriod$ = [
|
|
891
905
|
9,
|
|
892
906
|
n0,
|
|
893
907
|
_DSRP,
|
|
894
908
|
0,
|
|
895
|
-
() => DecreaseStreamRetentionPeriodInput
|
|
909
|
+
() => DecreaseStreamRetentionPeriodInput$,
|
|
896
910
|
() => __Unit,
|
|
897
911
|
];
|
|
898
|
-
var DeleteResourcePolicy = [
|
|
912
|
+
var DeleteResourcePolicy$ = [
|
|
899
913
|
9,
|
|
900
914
|
n0,
|
|
901
915
|
_DRP,
|
|
902
916
|
0,
|
|
903
|
-
() => DeleteResourcePolicyInput
|
|
917
|
+
() => DeleteResourcePolicyInput$,
|
|
904
918
|
() => __Unit,
|
|
905
919
|
];
|
|
906
|
-
var DeleteStream = [9, n0, _DS, 0, () => DeleteStreamInput
|
|
907
|
-
var DeregisterStreamConsumer = [
|
|
920
|
+
var DeleteStream$ = [9, n0, _DS, 0, () => DeleteStreamInput$, () => __Unit];
|
|
921
|
+
var DeregisterStreamConsumer$ = [
|
|
908
922
|
9,
|
|
909
923
|
n0,
|
|
910
924
|
_DSC,
|
|
911
925
|
0,
|
|
912
|
-
() => DeregisterStreamConsumerInput
|
|
926
|
+
() => DeregisterStreamConsumerInput$,
|
|
913
927
|
() => __Unit,
|
|
914
928
|
];
|
|
915
|
-
var DescribeAccountSettings = [
|
|
929
|
+
var DescribeAccountSettings$ = [
|
|
916
930
|
9,
|
|
917
931
|
n0,
|
|
918
932
|
_DAS,
|
|
919
933
|
0,
|
|
920
|
-
() => DescribeAccountSettingsInput
|
|
921
|
-
() => DescribeAccountSettingsOutput
|
|
934
|
+
() => DescribeAccountSettingsInput$,
|
|
935
|
+
() => DescribeAccountSettingsOutput$,
|
|
922
936
|
];
|
|
923
|
-
var DescribeLimits = [
|
|
937
|
+
var DescribeLimits$ = [
|
|
924
938
|
9,
|
|
925
939
|
n0,
|
|
926
940
|
_DL,
|
|
927
941
|
0,
|
|
928
|
-
() => DescribeLimitsInput
|
|
929
|
-
() => DescribeLimitsOutput
|
|
942
|
+
() => DescribeLimitsInput$,
|
|
943
|
+
() => DescribeLimitsOutput$,
|
|
930
944
|
];
|
|
931
|
-
var DescribeStream = [
|
|
945
|
+
var DescribeStream$ = [
|
|
932
946
|
9,
|
|
933
947
|
n0,
|
|
934
948
|
_DSe,
|
|
935
949
|
0,
|
|
936
|
-
() => DescribeStreamInput
|
|
937
|
-
() => DescribeStreamOutput
|
|
950
|
+
() => DescribeStreamInput$,
|
|
951
|
+
() => DescribeStreamOutput$,
|
|
938
952
|
];
|
|
939
|
-
var DescribeStreamConsumer = [
|
|
953
|
+
var DescribeStreamConsumer$ = [
|
|
940
954
|
9,
|
|
941
955
|
n0,
|
|
942
956
|
_DSCe,
|
|
943
957
|
0,
|
|
944
|
-
() => DescribeStreamConsumerInput
|
|
945
|
-
() => DescribeStreamConsumerOutput
|
|
958
|
+
() => DescribeStreamConsumerInput$,
|
|
959
|
+
() => DescribeStreamConsumerOutput$,
|
|
946
960
|
];
|
|
947
|
-
var DescribeStreamSummary = [
|
|
961
|
+
var DescribeStreamSummary$ = [
|
|
948
962
|
9,
|
|
949
963
|
n0,
|
|
950
964
|
_DSS,
|
|
951
965
|
0,
|
|
952
|
-
() => DescribeStreamSummaryInput
|
|
953
|
-
() => DescribeStreamSummaryOutput
|
|
966
|
+
() => DescribeStreamSummaryInput$,
|
|
967
|
+
() => DescribeStreamSummaryOutput$,
|
|
954
968
|
];
|
|
955
|
-
var DisableEnhancedMonitoring = [
|
|
969
|
+
var DisableEnhancedMonitoring$ = [
|
|
956
970
|
9,
|
|
957
971
|
n0,
|
|
958
972
|
_DEM,
|
|
959
973
|
0,
|
|
960
|
-
() => DisableEnhancedMonitoringInput
|
|
961
|
-
() => EnhancedMonitoringOutput
|
|
974
|
+
() => DisableEnhancedMonitoringInput$,
|
|
975
|
+
() => EnhancedMonitoringOutput$,
|
|
962
976
|
];
|
|
963
|
-
var EnableEnhancedMonitoring = [
|
|
977
|
+
var EnableEnhancedMonitoring$ = [
|
|
964
978
|
9,
|
|
965
979
|
n0,
|
|
966
980
|
_EEM,
|
|
967
981
|
0,
|
|
968
|
-
() => EnableEnhancedMonitoringInput
|
|
969
|
-
() => EnhancedMonitoringOutput
|
|
982
|
+
() => EnableEnhancedMonitoringInput$,
|
|
983
|
+
() => EnhancedMonitoringOutput$,
|
|
970
984
|
];
|
|
971
|
-
var GetRecords = [9, n0, _GR, 0, () => GetRecordsInput
|
|
972
|
-
var GetResourcePolicy = [
|
|
985
|
+
var GetRecords$ = [9, n0, _GR, 0, () => GetRecordsInput$, () => GetRecordsOutput$];
|
|
986
|
+
var GetResourcePolicy$ = [
|
|
973
987
|
9,
|
|
974
988
|
n0,
|
|
975
989
|
_GRP,
|
|
976
990
|
0,
|
|
977
|
-
() => GetResourcePolicyInput
|
|
978
|
-
() => GetResourcePolicyOutput
|
|
991
|
+
() => GetResourcePolicyInput$,
|
|
992
|
+
() => GetResourcePolicyOutput$,
|
|
979
993
|
];
|
|
980
|
-
var GetShardIterator = [
|
|
994
|
+
var GetShardIterator$ = [
|
|
981
995
|
9,
|
|
982
996
|
n0,
|
|
983
997
|
_GSI,
|
|
984
998
|
0,
|
|
985
|
-
() => GetShardIteratorInput
|
|
986
|
-
() => GetShardIteratorOutput
|
|
999
|
+
() => GetShardIteratorInput$,
|
|
1000
|
+
() => GetShardIteratorOutput$,
|
|
987
1001
|
];
|
|
988
|
-
var IncreaseStreamRetentionPeriod = [
|
|
1002
|
+
var IncreaseStreamRetentionPeriod$ = [
|
|
989
1003
|
9,
|
|
990
1004
|
n0,
|
|
991
1005
|
_ISRP,
|
|
992
1006
|
0,
|
|
993
|
-
() => IncreaseStreamRetentionPeriodInput
|
|
1007
|
+
() => IncreaseStreamRetentionPeriodInput$,
|
|
994
1008
|
() => __Unit,
|
|
995
1009
|
];
|
|
996
|
-
var ListShards = [9, n0, _LS, 0, () => ListShardsInput
|
|
997
|
-
var ListStreamConsumers = [
|
|
1010
|
+
var ListShards$ = [9, n0, _LS, 0, () => ListShardsInput$, () => ListShardsOutput$];
|
|
1011
|
+
var ListStreamConsumers$ = [
|
|
998
1012
|
9,
|
|
999
1013
|
n0,
|
|
1000
1014
|
_LSC,
|
|
1001
1015
|
0,
|
|
1002
|
-
() => ListStreamConsumersInput
|
|
1003
|
-
() => ListStreamConsumersOutput
|
|
1016
|
+
() => ListStreamConsumersInput$,
|
|
1017
|
+
() => ListStreamConsumersOutput$,
|
|
1004
1018
|
];
|
|
1005
|
-
var ListStreams = [9, n0, _LSi, 0, () => ListStreamsInput
|
|
1006
|
-
var ListTagsForResource = [
|
|
1019
|
+
var ListStreams$ = [9, n0, _LSi, 0, () => ListStreamsInput$, () => ListStreamsOutput$];
|
|
1020
|
+
var ListTagsForResource$ = [
|
|
1007
1021
|
9,
|
|
1008
1022
|
n0,
|
|
1009
1023
|
_LTFR,
|
|
1010
1024
|
0,
|
|
1011
|
-
() => ListTagsForResourceInput
|
|
1012
|
-
() => ListTagsForResourceOutput
|
|
1025
|
+
() => ListTagsForResourceInput$,
|
|
1026
|
+
() => ListTagsForResourceOutput$,
|
|
1013
1027
|
];
|
|
1014
|
-
var ListTagsForStream = [
|
|
1028
|
+
var ListTagsForStream$ = [
|
|
1015
1029
|
9,
|
|
1016
1030
|
n0,
|
|
1017
1031
|
_LTFS,
|
|
1018
1032
|
0,
|
|
1019
|
-
() => ListTagsForStreamInput
|
|
1020
|
-
() => ListTagsForStreamOutput
|
|
1033
|
+
() => ListTagsForStreamInput$,
|
|
1034
|
+
() => ListTagsForStreamOutput$,
|
|
1021
1035
|
];
|
|
1022
|
-
var MergeShards = [9, n0, _MS, 0, () => MergeShardsInput
|
|
1023
|
-
var PutRecord = [9, n0, _PR, 0, () => PutRecordInput
|
|
1024
|
-
var PutRecords = [9, n0, _PRu, 0, () => PutRecordsInput
|
|
1025
|
-
var PutResourcePolicy = [9, n0, _PRP, 0, () => PutResourcePolicyInput
|
|
1026
|
-
var RegisterStreamConsumer = [
|
|
1036
|
+
var MergeShards$ = [9, n0, _MS, 0, () => MergeShardsInput$, () => __Unit];
|
|
1037
|
+
var PutRecord$ = [9, n0, _PR, 0, () => PutRecordInput$, () => PutRecordOutput$];
|
|
1038
|
+
var PutRecords$ = [9, n0, _PRu, 0, () => PutRecordsInput$, () => PutRecordsOutput$];
|
|
1039
|
+
var PutResourcePolicy$ = [9, n0, _PRP, 0, () => PutResourcePolicyInput$, () => __Unit];
|
|
1040
|
+
var RegisterStreamConsumer$ = [
|
|
1027
1041
|
9,
|
|
1028
1042
|
n0,
|
|
1029
1043
|
_RSC,
|
|
1030
1044
|
0,
|
|
1031
|
-
() => RegisterStreamConsumerInput
|
|
1032
|
-
() => RegisterStreamConsumerOutput
|
|
1045
|
+
() => RegisterStreamConsumerInput$,
|
|
1046
|
+
() => RegisterStreamConsumerOutput$,
|
|
1033
1047
|
];
|
|
1034
|
-
var RemoveTagsFromStream = [
|
|
1048
|
+
var RemoveTagsFromStream$ = [
|
|
1035
1049
|
9,
|
|
1036
1050
|
n0,
|
|
1037
1051
|
_RTFS,
|
|
1038
1052
|
0,
|
|
1039
|
-
() => RemoveTagsFromStreamInput
|
|
1053
|
+
() => RemoveTagsFromStreamInput$,
|
|
1040
1054
|
() => __Unit,
|
|
1041
1055
|
];
|
|
1042
|
-
var SplitShard = [9, n0, _SSp, 0, () => SplitShardInput
|
|
1043
|
-
var StartStreamEncryption = [
|
|
1056
|
+
var SplitShard$ = [9, n0, _SSp, 0, () => SplitShardInput$, () => __Unit];
|
|
1057
|
+
var StartStreamEncryption$ = [
|
|
1044
1058
|
9,
|
|
1045
1059
|
n0,
|
|
1046
1060
|
_SSE,
|
|
1047
1061
|
0,
|
|
1048
|
-
() => StartStreamEncryptionInput
|
|
1062
|
+
() => StartStreamEncryptionInput$,
|
|
1049
1063
|
() => __Unit,
|
|
1050
1064
|
];
|
|
1051
|
-
var StopStreamEncryption = [
|
|
1065
|
+
var StopStreamEncryption$ = [
|
|
1052
1066
|
9,
|
|
1053
1067
|
n0,
|
|
1054
1068
|
_SSEt,
|
|
1055
1069
|
0,
|
|
1056
|
-
() => StopStreamEncryptionInput
|
|
1070
|
+
() => StopStreamEncryptionInput$,
|
|
1057
1071
|
() => __Unit,
|
|
1058
1072
|
];
|
|
1059
|
-
var SubscribeToShard = [
|
|
1073
|
+
var SubscribeToShard$ = [
|
|
1060
1074
|
9,
|
|
1061
1075
|
n0,
|
|
1062
1076
|
_STSu,
|
|
1063
1077
|
0,
|
|
1064
|
-
() => SubscribeToShardInput
|
|
1065
|
-
() => SubscribeToShardOutput
|
|
1078
|
+
() => SubscribeToShardInput$,
|
|
1079
|
+
() => SubscribeToShardOutput$,
|
|
1066
1080
|
];
|
|
1067
|
-
var TagResource = [9, n0, _TR, 0, () => TagResourceInput
|
|
1068
|
-
var UntagResource = [9, n0, _UR, 0, () => UntagResourceInput
|
|
1069
|
-
var UpdateAccountSettings = [
|
|
1081
|
+
var TagResource$ = [9, n0, _TR, 0, () => TagResourceInput$, () => __Unit];
|
|
1082
|
+
var UntagResource$ = [9, n0, _UR, 0, () => UntagResourceInput$, () => __Unit];
|
|
1083
|
+
var UpdateAccountSettings$ = [
|
|
1070
1084
|
9,
|
|
1071
1085
|
n0,
|
|
1072
1086
|
_UAS,
|
|
1073
1087
|
0,
|
|
1074
|
-
() => UpdateAccountSettingsInput
|
|
1075
|
-
() => UpdateAccountSettingsOutput
|
|
1088
|
+
() => UpdateAccountSettingsInput$,
|
|
1089
|
+
() => UpdateAccountSettingsOutput$,
|
|
1090
|
+
];
|
|
1091
|
+
var UpdateMaxRecordSize$ = [
|
|
1092
|
+
9,
|
|
1093
|
+
n0,
|
|
1094
|
+
_UMRS,
|
|
1095
|
+
0,
|
|
1096
|
+
() => UpdateMaxRecordSizeInput$,
|
|
1097
|
+
() => __Unit,
|
|
1076
1098
|
];
|
|
1077
|
-
var
|
|
1078
|
-
var UpdateShardCount = [
|
|
1099
|
+
var UpdateShardCount$ = [
|
|
1079
1100
|
9,
|
|
1080
1101
|
n0,
|
|
1081
1102
|
_USC,
|
|
1082
1103
|
0,
|
|
1083
|
-
() => UpdateShardCountInput
|
|
1084
|
-
() => UpdateShardCountOutput
|
|
1104
|
+
() => UpdateShardCountInput$,
|
|
1105
|
+
() => UpdateShardCountOutput$,
|
|
1085
1106
|
];
|
|
1086
|
-
var UpdateStreamMode = [9, n0, _USM, 0, () => UpdateStreamModeInput
|
|
1087
|
-
var UpdateStreamWarmThroughput = [
|
|
1107
|
+
var UpdateStreamMode$ = [9, n0, _USM, 0, () => UpdateStreamModeInput$, () => __Unit];
|
|
1108
|
+
var UpdateStreamWarmThroughput$ = [
|
|
1088
1109
|
9,
|
|
1089
1110
|
n0,
|
|
1090
1111
|
_USWT,
|
|
1091
1112
|
0,
|
|
1092
|
-
() => UpdateStreamWarmThroughputInput
|
|
1093
|
-
() => UpdateStreamWarmThroughputOutput
|
|
1113
|
+
() => UpdateStreamWarmThroughputInput$,
|
|
1114
|
+
() => UpdateStreamWarmThroughputOutput$,
|
|
1094
1115
|
];
|
|
1095
1116
|
|
|
1096
1117
|
class AddTagsToStreamCommand extends smithyClient.Command
|
|
@@ -1105,7 +1126,7 @@ class AddTagsToStreamCommand extends smithyClient.Command
|
|
|
1105
1126
|
})
|
|
1106
1127
|
.s("Kinesis_20131202", "AddTagsToStream", {})
|
|
1107
1128
|
.n("KinesisClient", "AddTagsToStreamCommand")
|
|
1108
|
-
.sc(AddTagsToStream)
|
|
1129
|
+
.sc(AddTagsToStream$)
|
|
1109
1130
|
.build() {
|
|
1110
1131
|
}
|
|
1111
1132
|
|
|
@@ -1117,7 +1138,7 @@ class CreateStreamCommand extends smithyClient.Command
|
|
|
1117
1138
|
})
|
|
1118
1139
|
.s("Kinesis_20131202", "CreateStream", {})
|
|
1119
1140
|
.n("KinesisClient", "CreateStreamCommand")
|
|
1120
|
-
.sc(CreateStream)
|
|
1141
|
+
.sc(CreateStream$)
|
|
1121
1142
|
.build() {
|
|
1122
1143
|
}
|
|
1123
1144
|
|
|
@@ -1133,7 +1154,7 @@ class DecreaseStreamRetentionPeriodCommand extends smithyClient.Command
|
|
|
1133
1154
|
})
|
|
1134
1155
|
.s("Kinesis_20131202", "DecreaseStreamRetentionPeriod", {})
|
|
1135
1156
|
.n("KinesisClient", "DecreaseStreamRetentionPeriodCommand")
|
|
1136
|
-
.sc(DecreaseStreamRetentionPeriod)
|
|
1157
|
+
.sc(DecreaseStreamRetentionPeriod$)
|
|
1137
1158
|
.build() {
|
|
1138
1159
|
}
|
|
1139
1160
|
|
|
@@ -1149,7 +1170,7 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
|
1149
1170
|
})
|
|
1150
1171
|
.s("Kinesis_20131202", "DeleteResourcePolicy", {})
|
|
1151
1172
|
.n("KinesisClient", "DeleteResourcePolicyCommand")
|
|
1152
|
-
.sc(DeleteResourcePolicy)
|
|
1173
|
+
.sc(DeleteResourcePolicy$)
|
|
1153
1174
|
.build() {
|
|
1154
1175
|
}
|
|
1155
1176
|
|
|
@@ -1165,7 +1186,7 @@ class DeleteStreamCommand extends smithyClient.Command
|
|
|
1165
1186
|
})
|
|
1166
1187
|
.s("Kinesis_20131202", "DeleteStream", {})
|
|
1167
1188
|
.n("KinesisClient", "DeleteStreamCommand")
|
|
1168
|
-
.sc(DeleteStream)
|
|
1189
|
+
.sc(DeleteStream$)
|
|
1169
1190
|
.build() {
|
|
1170
1191
|
}
|
|
1171
1192
|
|
|
@@ -1182,7 +1203,7 @@ class DeregisterStreamConsumerCommand extends smithyClient.Command
|
|
|
1182
1203
|
})
|
|
1183
1204
|
.s("Kinesis_20131202", "DeregisterStreamConsumer", {})
|
|
1184
1205
|
.n("KinesisClient", "DeregisterStreamConsumerCommand")
|
|
1185
|
-
.sc(DeregisterStreamConsumer)
|
|
1206
|
+
.sc(DeregisterStreamConsumer$)
|
|
1186
1207
|
.build() {
|
|
1187
1208
|
}
|
|
1188
1209
|
|
|
@@ -1194,7 +1215,7 @@ class DescribeAccountSettingsCommand extends smithyClient.Command
|
|
|
1194
1215
|
})
|
|
1195
1216
|
.s("Kinesis_20131202", "DescribeAccountSettings", {})
|
|
1196
1217
|
.n("KinesisClient", "DescribeAccountSettingsCommand")
|
|
1197
|
-
.sc(DescribeAccountSettings)
|
|
1218
|
+
.sc(DescribeAccountSettings$)
|
|
1198
1219
|
.build() {
|
|
1199
1220
|
}
|
|
1200
1221
|
|
|
@@ -1206,7 +1227,7 @@ class DescribeLimitsCommand extends smithyClient.Command
|
|
|
1206
1227
|
})
|
|
1207
1228
|
.s("Kinesis_20131202", "DescribeLimits", {})
|
|
1208
1229
|
.n("KinesisClient", "DescribeLimitsCommand")
|
|
1209
|
-
.sc(DescribeLimits)
|
|
1230
|
+
.sc(DescribeLimits$)
|
|
1210
1231
|
.build() {
|
|
1211
1232
|
}
|
|
1212
1233
|
|
|
@@ -1222,7 +1243,7 @@ class DescribeStreamCommand extends smithyClient.Command
|
|
|
1222
1243
|
})
|
|
1223
1244
|
.s("Kinesis_20131202", "DescribeStream", {})
|
|
1224
1245
|
.n("KinesisClient", "DescribeStreamCommand")
|
|
1225
|
-
.sc(DescribeStream)
|
|
1246
|
+
.sc(DescribeStream$)
|
|
1226
1247
|
.build() {
|
|
1227
1248
|
}
|
|
1228
1249
|
|
|
@@ -1239,7 +1260,7 @@ class DescribeStreamConsumerCommand extends smithyClient.Command
|
|
|
1239
1260
|
})
|
|
1240
1261
|
.s("Kinesis_20131202", "DescribeStreamConsumer", {})
|
|
1241
1262
|
.n("KinesisClient", "DescribeStreamConsumerCommand")
|
|
1242
|
-
.sc(DescribeStreamConsumer)
|
|
1263
|
+
.sc(DescribeStreamConsumer$)
|
|
1243
1264
|
.build() {
|
|
1244
1265
|
}
|
|
1245
1266
|
|
|
@@ -1255,7 +1276,7 @@ class DescribeStreamSummaryCommand extends smithyClient.Command
|
|
|
1255
1276
|
})
|
|
1256
1277
|
.s("Kinesis_20131202", "DescribeStreamSummary", {})
|
|
1257
1278
|
.n("KinesisClient", "DescribeStreamSummaryCommand")
|
|
1258
|
-
.sc(DescribeStreamSummary)
|
|
1279
|
+
.sc(DescribeStreamSummary$)
|
|
1259
1280
|
.build() {
|
|
1260
1281
|
}
|
|
1261
1282
|
|
|
@@ -1271,7 +1292,7 @@ class DisableEnhancedMonitoringCommand extends smithyClient.Command
|
|
|
1271
1292
|
})
|
|
1272
1293
|
.s("Kinesis_20131202", "DisableEnhancedMonitoring", {})
|
|
1273
1294
|
.n("KinesisClient", "DisableEnhancedMonitoringCommand")
|
|
1274
|
-
.sc(DisableEnhancedMonitoring)
|
|
1295
|
+
.sc(DisableEnhancedMonitoring$)
|
|
1275
1296
|
.build() {
|
|
1276
1297
|
}
|
|
1277
1298
|
|
|
@@ -1287,7 +1308,7 @@ class EnableEnhancedMonitoringCommand extends smithyClient.Command
|
|
|
1287
1308
|
})
|
|
1288
1309
|
.s("Kinesis_20131202", "EnableEnhancedMonitoring", {})
|
|
1289
1310
|
.n("KinesisClient", "EnableEnhancedMonitoringCommand")
|
|
1290
|
-
.sc(EnableEnhancedMonitoring)
|
|
1311
|
+
.sc(EnableEnhancedMonitoring$)
|
|
1291
1312
|
.build() {
|
|
1292
1313
|
}
|
|
1293
1314
|
|
|
@@ -1303,7 +1324,7 @@ class GetRecordsCommand extends smithyClient.Command
|
|
|
1303
1324
|
})
|
|
1304
1325
|
.s("Kinesis_20131202", "GetRecords", {})
|
|
1305
1326
|
.n("KinesisClient", "GetRecordsCommand")
|
|
1306
|
-
.sc(GetRecords)
|
|
1327
|
+
.sc(GetRecords$)
|
|
1307
1328
|
.build() {
|
|
1308
1329
|
}
|
|
1309
1330
|
|
|
@@ -1319,7 +1340,7 @@ class GetResourcePolicyCommand extends smithyClient.Command
|
|
|
1319
1340
|
})
|
|
1320
1341
|
.s("Kinesis_20131202", "GetResourcePolicy", {})
|
|
1321
1342
|
.n("KinesisClient", "GetResourcePolicyCommand")
|
|
1322
|
-
.sc(GetResourcePolicy)
|
|
1343
|
+
.sc(GetResourcePolicy$)
|
|
1323
1344
|
.build() {
|
|
1324
1345
|
}
|
|
1325
1346
|
|
|
@@ -1335,7 +1356,7 @@ class GetShardIteratorCommand extends smithyClient.Command
|
|
|
1335
1356
|
})
|
|
1336
1357
|
.s("Kinesis_20131202", "GetShardIterator", {})
|
|
1337
1358
|
.n("KinesisClient", "GetShardIteratorCommand")
|
|
1338
|
-
.sc(GetShardIterator)
|
|
1359
|
+
.sc(GetShardIterator$)
|
|
1339
1360
|
.build() {
|
|
1340
1361
|
}
|
|
1341
1362
|
|
|
@@ -1351,7 +1372,7 @@ class IncreaseStreamRetentionPeriodCommand extends smithyClient.Command
|
|
|
1351
1372
|
})
|
|
1352
1373
|
.s("Kinesis_20131202", "IncreaseStreamRetentionPeriod", {})
|
|
1353
1374
|
.n("KinesisClient", "IncreaseStreamRetentionPeriodCommand")
|
|
1354
|
-
.sc(IncreaseStreamRetentionPeriod)
|
|
1375
|
+
.sc(IncreaseStreamRetentionPeriod$)
|
|
1355
1376
|
.build() {
|
|
1356
1377
|
}
|
|
1357
1378
|
|
|
@@ -1367,7 +1388,7 @@ class ListShardsCommand extends smithyClient.Command
|
|
|
1367
1388
|
})
|
|
1368
1389
|
.s("Kinesis_20131202", "ListShards", {})
|
|
1369
1390
|
.n("KinesisClient", "ListShardsCommand")
|
|
1370
|
-
.sc(ListShards)
|
|
1391
|
+
.sc(ListShards$)
|
|
1371
1392
|
.build() {
|
|
1372
1393
|
}
|
|
1373
1394
|
|
|
@@ -1383,7 +1404,7 @@ class ListStreamConsumersCommand extends smithyClient.Command
|
|
|
1383
1404
|
})
|
|
1384
1405
|
.s("Kinesis_20131202", "ListStreamConsumers", {})
|
|
1385
1406
|
.n("KinesisClient", "ListStreamConsumersCommand")
|
|
1386
|
-
.sc(ListStreamConsumers)
|
|
1407
|
+
.sc(ListStreamConsumers$)
|
|
1387
1408
|
.build() {
|
|
1388
1409
|
}
|
|
1389
1410
|
|
|
@@ -1395,7 +1416,7 @@ class ListStreamsCommand extends smithyClient.Command
|
|
|
1395
1416
|
})
|
|
1396
1417
|
.s("Kinesis_20131202", "ListStreams", {})
|
|
1397
1418
|
.n("KinesisClient", "ListStreamsCommand")
|
|
1398
|
-
.sc(ListStreams)
|
|
1419
|
+
.sc(ListStreams$)
|
|
1399
1420
|
.build() {
|
|
1400
1421
|
}
|
|
1401
1422
|
|
|
@@ -1411,7 +1432,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1411
1432
|
})
|
|
1412
1433
|
.s("Kinesis_20131202", "ListTagsForResource", {})
|
|
1413
1434
|
.n("KinesisClient", "ListTagsForResourceCommand")
|
|
1414
|
-
.sc(ListTagsForResource)
|
|
1435
|
+
.sc(ListTagsForResource$)
|
|
1415
1436
|
.build() {
|
|
1416
1437
|
}
|
|
1417
1438
|
|
|
@@ -1427,7 +1448,7 @@ class ListTagsForStreamCommand extends smithyClient.Command
|
|
|
1427
1448
|
})
|
|
1428
1449
|
.s("Kinesis_20131202", "ListTagsForStream", {})
|
|
1429
1450
|
.n("KinesisClient", "ListTagsForStreamCommand")
|
|
1430
|
-
.sc(ListTagsForStream)
|
|
1451
|
+
.sc(ListTagsForStream$)
|
|
1431
1452
|
.build() {
|
|
1432
1453
|
}
|
|
1433
1454
|
|
|
@@ -1443,7 +1464,7 @@ class MergeShardsCommand extends smithyClient.Command
|
|
|
1443
1464
|
})
|
|
1444
1465
|
.s("Kinesis_20131202", "MergeShards", {})
|
|
1445
1466
|
.n("KinesisClient", "MergeShardsCommand")
|
|
1446
|
-
.sc(MergeShards)
|
|
1467
|
+
.sc(MergeShards$)
|
|
1447
1468
|
.build() {
|
|
1448
1469
|
}
|
|
1449
1470
|
|
|
@@ -1459,7 +1480,7 @@ class PutRecordCommand extends smithyClient.Command
|
|
|
1459
1480
|
})
|
|
1460
1481
|
.s("Kinesis_20131202", "PutRecord", {})
|
|
1461
1482
|
.n("KinesisClient", "PutRecordCommand")
|
|
1462
|
-
.sc(PutRecord)
|
|
1483
|
+
.sc(PutRecord$)
|
|
1463
1484
|
.build() {
|
|
1464
1485
|
}
|
|
1465
1486
|
|
|
@@ -1475,7 +1496,7 @@ class PutRecordsCommand extends smithyClient.Command
|
|
|
1475
1496
|
})
|
|
1476
1497
|
.s("Kinesis_20131202", "PutRecords", {})
|
|
1477
1498
|
.n("KinesisClient", "PutRecordsCommand")
|
|
1478
|
-
.sc(PutRecords)
|
|
1499
|
+
.sc(PutRecords$)
|
|
1479
1500
|
.build() {
|
|
1480
1501
|
}
|
|
1481
1502
|
|
|
@@ -1491,7 +1512,7 @@ class PutResourcePolicyCommand extends smithyClient.Command
|
|
|
1491
1512
|
})
|
|
1492
1513
|
.s("Kinesis_20131202", "PutResourcePolicy", {})
|
|
1493
1514
|
.n("KinesisClient", "PutResourcePolicyCommand")
|
|
1494
|
-
.sc(PutResourcePolicy)
|
|
1515
|
+
.sc(PutResourcePolicy$)
|
|
1495
1516
|
.build() {
|
|
1496
1517
|
}
|
|
1497
1518
|
|
|
@@ -1507,7 +1528,7 @@ class RegisterStreamConsumerCommand extends smithyClient.Command
|
|
|
1507
1528
|
})
|
|
1508
1529
|
.s("Kinesis_20131202", "RegisterStreamConsumer", {})
|
|
1509
1530
|
.n("KinesisClient", "RegisterStreamConsumerCommand")
|
|
1510
|
-
.sc(RegisterStreamConsumer)
|
|
1531
|
+
.sc(RegisterStreamConsumer$)
|
|
1511
1532
|
.build() {
|
|
1512
1533
|
}
|
|
1513
1534
|
|
|
@@ -1523,7 +1544,7 @@ class RemoveTagsFromStreamCommand extends smithyClient.Command
|
|
|
1523
1544
|
})
|
|
1524
1545
|
.s("Kinesis_20131202", "RemoveTagsFromStream", {})
|
|
1525
1546
|
.n("KinesisClient", "RemoveTagsFromStreamCommand")
|
|
1526
|
-
.sc(RemoveTagsFromStream)
|
|
1547
|
+
.sc(RemoveTagsFromStream$)
|
|
1527
1548
|
.build() {
|
|
1528
1549
|
}
|
|
1529
1550
|
|
|
@@ -1539,7 +1560,7 @@ class SplitShardCommand extends smithyClient.Command
|
|
|
1539
1560
|
})
|
|
1540
1561
|
.s("Kinesis_20131202", "SplitShard", {})
|
|
1541
1562
|
.n("KinesisClient", "SplitShardCommand")
|
|
1542
|
-
.sc(SplitShard)
|
|
1563
|
+
.sc(SplitShard$)
|
|
1543
1564
|
.build() {
|
|
1544
1565
|
}
|
|
1545
1566
|
|
|
@@ -1555,7 +1576,7 @@ class StartStreamEncryptionCommand extends smithyClient.Command
|
|
|
1555
1576
|
})
|
|
1556
1577
|
.s("Kinesis_20131202", "StartStreamEncryption", {})
|
|
1557
1578
|
.n("KinesisClient", "StartStreamEncryptionCommand")
|
|
1558
|
-
.sc(StartStreamEncryption)
|
|
1579
|
+
.sc(StartStreamEncryption$)
|
|
1559
1580
|
.build() {
|
|
1560
1581
|
}
|
|
1561
1582
|
|
|
@@ -1571,7 +1592,7 @@ class StopStreamEncryptionCommand extends smithyClient.Command
|
|
|
1571
1592
|
})
|
|
1572
1593
|
.s("Kinesis_20131202", "StopStreamEncryption", {})
|
|
1573
1594
|
.n("KinesisClient", "StopStreamEncryptionCommand")
|
|
1574
|
-
.sc(StopStreamEncryption)
|
|
1595
|
+
.sc(StopStreamEncryption$)
|
|
1575
1596
|
.build() {
|
|
1576
1597
|
}
|
|
1577
1598
|
|
|
@@ -1591,7 +1612,7 @@ class SubscribeToShardCommand extends smithyClient.Command
|
|
|
1591
1612
|
},
|
|
1592
1613
|
})
|
|
1593
1614
|
.n("KinesisClient", "SubscribeToShardCommand")
|
|
1594
|
-
.sc(SubscribeToShard)
|
|
1615
|
+
.sc(SubscribeToShard$)
|
|
1595
1616
|
.build() {
|
|
1596
1617
|
}
|
|
1597
1618
|
|
|
@@ -1607,7 +1628,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1607
1628
|
})
|
|
1608
1629
|
.s("Kinesis_20131202", "TagResource", {})
|
|
1609
1630
|
.n("KinesisClient", "TagResourceCommand")
|
|
1610
|
-
.sc(TagResource)
|
|
1631
|
+
.sc(TagResource$)
|
|
1611
1632
|
.build() {
|
|
1612
1633
|
}
|
|
1613
1634
|
|
|
@@ -1623,7 +1644,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1623
1644
|
})
|
|
1624
1645
|
.s("Kinesis_20131202", "UntagResource", {})
|
|
1625
1646
|
.n("KinesisClient", "UntagResourceCommand")
|
|
1626
|
-
.sc(UntagResource)
|
|
1647
|
+
.sc(UntagResource$)
|
|
1627
1648
|
.build() {
|
|
1628
1649
|
}
|
|
1629
1650
|
|
|
@@ -1635,7 +1656,7 @@ class UpdateAccountSettingsCommand extends smithyClient.Command
|
|
|
1635
1656
|
})
|
|
1636
1657
|
.s("Kinesis_20131202", "UpdateAccountSettings", {})
|
|
1637
1658
|
.n("KinesisClient", "UpdateAccountSettingsCommand")
|
|
1638
|
-
.sc(UpdateAccountSettings)
|
|
1659
|
+
.sc(UpdateAccountSettings$)
|
|
1639
1660
|
.build() {
|
|
1640
1661
|
}
|
|
1641
1662
|
|
|
@@ -1651,7 +1672,7 @@ class UpdateMaxRecordSizeCommand extends smithyClient.Command
|
|
|
1651
1672
|
})
|
|
1652
1673
|
.s("Kinesis_20131202", "UpdateMaxRecordSize", {})
|
|
1653
1674
|
.n("KinesisClient", "UpdateMaxRecordSizeCommand")
|
|
1654
|
-
.sc(UpdateMaxRecordSize)
|
|
1675
|
+
.sc(UpdateMaxRecordSize$)
|
|
1655
1676
|
.build() {
|
|
1656
1677
|
}
|
|
1657
1678
|
|
|
@@ -1667,7 +1688,7 @@ class UpdateShardCountCommand extends smithyClient.Command
|
|
|
1667
1688
|
})
|
|
1668
1689
|
.s("Kinesis_20131202", "UpdateShardCount", {})
|
|
1669
1690
|
.n("KinesisClient", "UpdateShardCountCommand")
|
|
1670
|
-
.sc(UpdateShardCount)
|
|
1691
|
+
.sc(UpdateShardCount$)
|
|
1671
1692
|
.build() {
|
|
1672
1693
|
}
|
|
1673
1694
|
|
|
@@ -1683,7 +1704,7 @@ class UpdateStreamModeCommand extends smithyClient.Command
|
|
|
1683
1704
|
})
|
|
1684
1705
|
.s("Kinesis_20131202", "UpdateStreamMode", {})
|
|
1685
1706
|
.n("KinesisClient", "UpdateStreamModeCommand")
|
|
1686
|
-
.sc(UpdateStreamMode)
|
|
1707
|
+
.sc(UpdateStreamMode$)
|
|
1687
1708
|
.build() {
|
|
1688
1709
|
}
|
|
1689
1710
|
|
|
@@ -1699,7 +1720,7 @@ class UpdateStreamWarmThroughputCommand extends smithyClient.Command
|
|
|
1699
1720
|
})
|
|
1700
1721
|
.s("Kinesis_20131202", "UpdateStreamWarmThroughput", {})
|
|
1701
1722
|
.n("KinesisClient", "UpdateStreamWarmThroughputCommand")
|
|
1702
|
-
.sc(UpdateStreamWarmThroughput)
|
|
1723
|
+
.sc(UpdateStreamWarmThroughput$)
|
|
1703
1724
|
.build() {
|
|
1704
1725
|
}
|
|
1705
1726
|
|
|
@@ -1871,74 +1892,212 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1871
1892
|
enumerable: true,
|
|
1872
1893
|
get: function () { return smithyClient.Client; }
|
|
1873
1894
|
});
|
|
1874
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1895
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1896
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1897
|
+
exports.AddTagsToStream$ = AddTagsToStream$;
|
|
1875
1898
|
exports.AddTagsToStreamCommand = AddTagsToStreamCommand;
|
|
1899
|
+
exports.AddTagsToStreamInput$ = AddTagsToStreamInput$;
|
|
1900
|
+
exports.ChildShard$ = ChildShard$;
|
|
1901
|
+
exports.Consumer$ = Consumer$;
|
|
1902
|
+
exports.ConsumerDescription$ = ConsumerDescription$;
|
|
1876
1903
|
exports.ConsumerStatus = ConsumerStatus;
|
|
1904
|
+
exports.CreateStream$ = CreateStream$;
|
|
1877
1905
|
exports.CreateStreamCommand = CreateStreamCommand;
|
|
1906
|
+
exports.CreateStreamInput$ = CreateStreamInput$;
|
|
1907
|
+
exports.DecreaseStreamRetentionPeriod$ = DecreaseStreamRetentionPeriod$;
|
|
1878
1908
|
exports.DecreaseStreamRetentionPeriodCommand = DecreaseStreamRetentionPeriodCommand;
|
|
1909
|
+
exports.DecreaseStreamRetentionPeriodInput$ = DecreaseStreamRetentionPeriodInput$;
|
|
1910
|
+
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
1879
1911
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
1912
|
+
exports.DeleteResourcePolicyInput$ = DeleteResourcePolicyInput$;
|
|
1913
|
+
exports.DeleteStream$ = DeleteStream$;
|
|
1880
1914
|
exports.DeleteStreamCommand = DeleteStreamCommand;
|
|
1915
|
+
exports.DeleteStreamInput$ = DeleteStreamInput$;
|
|
1916
|
+
exports.DeregisterStreamConsumer$ = DeregisterStreamConsumer$;
|
|
1881
1917
|
exports.DeregisterStreamConsumerCommand = DeregisterStreamConsumerCommand;
|
|
1918
|
+
exports.DeregisterStreamConsumerInput$ = DeregisterStreamConsumerInput$;
|
|
1919
|
+
exports.DescribeAccountSettings$ = DescribeAccountSettings$;
|
|
1882
1920
|
exports.DescribeAccountSettingsCommand = DescribeAccountSettingsCommand;
|
|
1921
|
+
exports.DescribeAccountSettingsInput$ = DescribeAccountSettingsInput$;
|
|
1922
|
+
exports.DescribeAccountSettingsOutput$ = DescribeAccountSettingsOutput$;
|
|
1923
|
+
exports.DescribeLimits$ = DescribeLimits$;
|
|
1883
1924
|
exports.DescribeLimitsCommand = DescribeLimitsCommand;
|
|
1925
|
+
exports.DescribeLimitsInput$ = DescribeLimitsInput$;
|
|
1926
|
+
exports.DescribeLimitsOutput$ = DescribeLimitsOutput$;
|
|
1927
|
+
exports.DescribeStream$ = DescribeStream$;
|
|
1884
1928
|
exports.DescribeStreamCommand = DescribeStreamCommand;
|
|
1929
|
+
exports.DescribeStreamConsumer$ = DescribeStreamConsumer$;
|
|
1885
1930
|
exports.DescribeStreamConsumerCommand = DescribeStreamConsumerCommand;
|
|
1931
|
+
exports.DescribeStreamConsumerInput$ = DescribeStreamConsumerInput$;
|
|
1932
|
+
exports.DescribeStreamConsumerOutput$ = DescribeStreamConsumerOutput$;
|
|
1933
|
+
exports.DescribeStreamInput$ = DescribeStreamInput$;
|
|
1934
|
+
exports.DescribeStreamOutput$ = DescribeStreamOutput$;
|
|
1935
|
+
exports.DescribeStreamSummary$ = DescribeStreamSummary$;
|
|
1886
1936
|
exports.DescribeStreamSummaryCommand = DescribeStreamSummaryCommand;
|
|
1937
|
+
exports.DescribeStreamSummaryInput$ = DescribeStreamSummaryInput$;
|
|
1938
|
+
exports.DescribeStreamSummaryOutput$ = DescribeStreamSummaryOutput$;
|
|
1939
|
+
exports.DisableEnhancedMonitoring$ = DisableEnhancedMonitoring$;
|
|
1887
1940
|
exports.DisableEnhancedMonitoringCommand = DisableEnhancedMonitoringCommand;
|
|
1941
|
+
exports.DisableEnhancedMonitoringInput$ = DisableEnhancedMonitoringInput$;
|
|
1942
|
+
exports.EnableEnhancedMonitoring$ = EnableEnhancedMonitoring$;
|
|
1888
1943
|
exports.EnableEnhancedMonitoringCommand = EnableEnhancedMonitoringCommand;
|
|
1944
|
+
exports.EnableEnhancedMonitoringInput$ = EnableEnhancedMonitoringInput$;
|
|
1889
1945
|
exports.EncryptionType = EncryptionType;
|
|
1890
|
-
exports.
|
|
1891
|
-
exports.
|
|
1946
|
+
exports.EnhancedMetrics$ = EnhancedMetrics$;
|
|
1947
|
+
exports.EnhancedMonitoringOutput$ = EnhancedMonitoringOutput$;
|
|
1948
|
+
exports.ExpiredIteratorException = ExpiredIteratorException;
|
|
1949
|
+
exports.ExpiredIteratorException$ = ExpiredIteratorException$;
|
|
1950
|
+
exports.ExpiredNextTokenException = ExpiredNextTokenException;
|
|
1951
|
+
exports.ExpiredNextTokenException$ = ExpiredNextTokenException$;
|
|
1952
|
+
exports.GetRecords$ = GetRecords$;
|
|
1892
1953
|
exports.GetRecordsCommand = GetRecordsCommand;
|
|
1954
|
+
exports.GetRecordsInput$ = GetRecordsInput$;
|
|
1955
|
+
exports.GetRecordsOutput$ = GetRecordsOutput$;
|
|
1956
|
+
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
1893
1957
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
1958
|
+
exports.GetResourcePolicyInput$ = GetResourcePolicyInput$;
|
|
1959
|
+
exports.GetResourcePolicyOutput$ = GetResourcePolicyOutput$;
|
|
1960
|
+
exports.GetShardIterator$ = GetShardIterator$;
|
|
1894
1961
|
exports.GetShardIteratorCommand = GetShardIteratorCommand;
|
|
1962
|
+
exports.GetShardIteratorInput$ = GetShardIteratorInput$;
|
|
1963
|
+
exports.GetShardIteratorOutput$ = GetShardIteratorOutput$;
|
|
1964
|
+
exports.HashKeyRange$ = HashKeyRange$;
|
|
1965
|
+
exports.IncreaseStreamRetentionPeriod$ = IncreaseStreamRetentionPeriod$;
|
|
1895
1966
|
exports.IncreaseStreamRetentionPeriodCommand = IncreaseStreamRetentionPeriodCommand;
|
|
1896
|
-
exports.
|
|
1897
|
-
exports.
|
|
1898
|
-
exports.
|
|
1899
|
-
exports.
|
|
1900
|
-
exports.
|
|
1901
|
-
exports.
|
|
1902
|
-
exports.
|
|
1903
|
-
exports.
|
|
1967
|
+
exports.IncreaseStreamRetentionPeriodInput$ = IncreaseStreamRetentionPeriodInput$;
|
|
1968
|
+
exports.InternalFailureException = InternalFailureException;
|
|
1969
|
+
exports.InternalFailureException$ = InternalFailureException$;
|
|
1970
|
+
exports.InvalidArgumentException = InvalidArgumentException;
|
|
1971
|
+
exports.InvalidArgumentException$ = InvalidArgumentException$;
|
|
1972
|
+
exports.KMSAccessDeniedException = KMSAccessDeniedException;
|
|
1973
|
+
exports.KMSAccessDeniedException$ = KMSAccessDeniedException$;
|
|
1974
|
+
exports.KMSDisabledException = KMSDisabledException;
|
|
1975
|
+
exports.KMSDisabledException$ = KMSDisabledException$;
|
|
1976
|
+
exports.KMSInvalidStateException = KMSInvalidStateException;
|
|
1977
|
+
exports.KMSInvalidStateException$ = KMSInvalidStateException$;
|
|
1978
|
+
exports.KMSNotFoundException = KMSNotFoundException;
|
|
1979
|
+
exports.KMSNotFoundException$ = KMSNotFoundException$;
|
|
1980
|
+
exports.KMSOptInRequired = KMSOptInRequired;
|
|
1981
|
+
exports.KMSOptInRequired$ = KMSOptInRequired$;
|
|
1982
|
+
exports.KMSThrottlingException = KMSThrottlingException;
|
|
1983
|
+
exports.KMSThrottlingException$ = KMSThrottlingException$;
|
|
1904
1984
|
exports.Kinesis = Kinesis;
|
|
1905
1985
|
exports.KinesisClient = KinesisClient;
|
|
1906
|
-
exports.KinesisServiceException = KinesisServiceException
|
|
1907
|
-
exports.
|
|
1986
|
+
exports.KinesisServiceException = KinesisServiceException;
|
|
1987
|
+
exports.KinesisServiceException$ = KinesisServiceException$;
|
|
1988
|
+
exports.LimitExceededException = LimitExceededException;
|
|
1989
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
1990
|
+
exports.ListShards$ = ListShards$;
|
|
1908
1991
|
exports.ListShardsCommand = ListShardsCommand;
|
|
1992
|
+
exports.ListShardsInput$ = ListShardsInput$;
|
|
1993
|
+
exports.ListShardsOutput$ = ListShardsOutput$;
|
|
1994
|
+
exports.ListStreamConsumers$ = ListStreamConsumers$;
|
|
1909
1995
|
exports.ListStreamConsumersCommand = ListStreamConsumersCommand;
|
|
1996
|
+
exports.ListStreamConsumersInput$ = ListStreamConsumersInput$;
|
|
1997
|
+
exports.ListStreamConsumersOutput$ = ListStreamConsumersOutput$;
|
|
1998
|
+
exports.ListStreams$ = ListStreams$;
|
|
1910
1999
|
exports.ListStreamsCommand = ListStreamsCommand;
|
|
2000
|
+
exports.ListStreamsInput$ = ListStreamsInput$;
|
|
2001
|
+
exports.ListStreamsOutput$ = ListStreamsOutput$;
|
|
2002
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1911
2003
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2004
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
2005
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
2006
|
+
exports.ListTagsForStream$ = ListTagsForStream$;
|
|
1912
2007
|
exports.ListTagsForStreamCommand = ListTagsForStreamCommand;
|
|
2008
|
+
exports.ListTagsForStreamInput$ = ListTagsForStreamInput$;
|
|
2009
|
+
exports.ListTagsForStreamOutput$ = ListTagsForStreamOutput$;
|
|
2010
|
+
exports.MergeShards$ = MergeShards$;
|
|
1913
2011
|
exports.MergeShardsCommand = MergeShardsCommand;
|
|
2012
|
+
exports.MergeShardsInput$ = MergeShardsInput$;
|
|
1914
2013
|
exports.MetricsName = MetricsName;
|
|
2014
|
+
exports.MinimumThroughputBillingCommitmentInput$ = MinimumThroughputBillingCommitmentInput$;
|
|
1915
2015
|
exports.MinimumThroughputBillingCommitmentInputStatus = MinimumThroughputBillingCommitmentInputStatus;
|
|
2016
|
+
exports.MinimumThroughputBillingCommitmentOutput$ = MinimumThroughputBillingCommitmentOutput$;
|
|
1916
2017
|
exports.MinimumThroughputBillingCommitmentOutputStatus = MinimumThroughputBillingCommitmentOutputStatus;
|
|
1917
|
-
exports.ProvisionedThroughputExceededException = ProvisionedThroughputExceededException
|
|
2018
|
+
exports.ProvisionedThroughputExceededException = ProvisionedThroughputExceededException;
|
|
2019
|
+
exports.ProvisionedThroughputExceededException$ = ProvisionedThroughputExceededException$;
|
|
2020
|
+
exports.PutRecord$ = PutRecord$;
|
|
1918
2021
|
exports.PutRecordCommand = PutRecordCommand;
|
|
2022
|
+
exports.PutRecordInput$ = PutRecordInput$;
|
|
2023
|
+
exports.PutRecordOutput$ = PutRecordOutput$;
|
|
2024
|
+
exports.PutRecords$ = PutRecords$;
|
|
1919
2025
|
exports.PutRecordsCommand = PutRecordsCommand;
|
|
2026
|
+
exports.PutRecordsInput$ = PutRecordsInput$;
|
|
2027
|
+
exports.PutRecordsOutput$ = PutRecordsOutput$;
|
|
2028
|
+
exports.PutRecordsRequestEntry$ = PutRecordsRequestEntry$;
|
|
2029
|
+
exports.PutRecordsResultEntry$ = PutRecordsResultEntry$;
|
|
2030
|
+
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
1920
2031
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
2032
|
+
exports.PutResourcePolicyInput$ = PutResourcePolicyInput$;
|
|
2033
|
+
exports.RegisterStreamConsumer$ = RegisterStreamConsumer$;
|
|
1921
2034
|
exports.RegisterStreamConsumerCommand = RegisterStreamConsumerCommand;
|
|
2035
|
+
exports.RegisterStreamConsumerInput$ = RegisterStreamConsumerInput$;
|
|
2036
|
+
exports.RegisterStreamConsumerOutput$ = RegisterStreamConsumerOutput$;
|
|
2037
|
+
exports.RemoveTagsFromStream$ = RemoveTagsFromStream$;
|
|
1922
2038
|
exports.RemoveTagsFromStreamCommand = RemoveTagsFromStreamCommand;
|
|
1923
|
-
exports.
|
|
1924
|
-
exports.
|
|
2039
|
+
exports.RemoveTagsFromStreamInput$ = RemoveTagsFromStreamInput$;
|
|
2040
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
2041
|
+
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
2042
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2043
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1925
2044
|
exports.ScalingType = ScalingType;
|
|
2045
|
+
exports.SequenceNumberRange$ = SequenceNumberRange$;
|
|
2046
|
+
exports.Shard$ = Shard$;
|
|
2047
|
+
exports.ShardFilter$ = ShardFilter$;
|
|
1926
2048
|
exports.ShardFilterType = ShardFilterType;
|
|
1927
2049
|
exports.ShardIteratorType = ShardIteratorType;
|
|
2050
|
+
exports.SplitShard$ = SplitShard$;
|
|
1928
2051
|
exports.SplitShardCommand = SplitShardCommand;
|
|
2052
|
+
exports.SplitShardInput$ = SplitShardInput$;
|
|
2053
|
+
exports.StartStreamEncryption$ = StartStreamEncryption$;
|
|
1929
2054
|
exports.StartStreamEncryptionCommand = StartStreamEncryptionCommand;
|
|
2055
|
+
exports.StartStreamEncryptionInput$ = StartStreamEncryptionInput$;
|
|
2056
|
+
exports.StartingPosition$ = StartingPosition$;
|
|
2057
|
+
exports.StopStreamEncryption$ = StopStreamEncryption$;
|
|
1930
2058
|
exports.StopStreamEncryptionCommand = StopStreamEncryptionCommand;
|
|
2059
|
+
exports.StopStreamEncryptionInput$ = StopStreamEncryptionInput$;
|
|
2060
|
+
exports.StreamDescription$ = StreamDescription$;
|
|
2061
|
+
exports.StreamDescriptionSummary$ = StreamDescriptionSummary$;
|
|
1931
2062
|
exports.StreamMode = StreamMode;
|
|
2063
|
+
exports.StreamModeDetails$ = StreamModeDetails$;
|
|
1932
2064
|
exports.StreamStatus = StreamStatus;
|
|
2065
|
+
exports.StreamSummary$ = StreamSummary$;
|
|
2066
|
+
exports.SubscribeToShard$ = SubscribeToShard$;
|
|
1933
2067
|
exports.SubscribeToShardCommand = SubscribeToShardCommand;
|
|
2068
|
+
exports.SubscribeToShardEvent$ = SubscribeToShardEvent$;
|
|
2069
|
+
exports.SubscribeToShardEventStream$ = SubscribeToShardEventStream$;
|
|
2070
|
+
exports.SubscribeToShardInput$ = SubscribeToShardInput$;
|
|
2071
|
+
exports.SubscribeToShardOutput$ = SubscribeToShardOutput$;
|
|
2072
|
+
exports.Tag$ = Tag$;
|
|
2073
|
+
exports.TagResource$ = TagResource$;
|
|
1934
2074
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2075
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
2076
|
+
exports.UntagResource$ = UntagResource$;
|
|
1935
2077
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2078
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
2079
|
+
exports.UpdateAccountSettings$ = UpdateAccountSettings$;
|
|
1936
2080
|
exports.UpdateAccountSettingsCommand = UpdateAccountSettingsCommand;
|
|
2081
|
+
exports.UpdateAccountSettingsInput$ = UpdateAccountSettingsInput$;
|
|
2082
|
+
exports.UpdateAccountSettingsOutput$ = UpdateAccountSettingsOutput$;
|
|
2083
|
+
exports.UpdateMaxRecordSize$ = UpdateMaxRecordSize$;
|
|
1937
2084
|
exports.UpdateMaxRecordSizeCommand = UpdateMaxRecordSizeCommand;
|
|
2085
|
+
exports.UpdateMaxRecordSizeInput$ = UpdateMaxRecordSizeInput$;
|
|
2086
|
+
exports.UpdateShardCount$ = UpdateShardCount$;
|
|
1938
2087
|
exports.UpdateShardCountCommand = UpdateShardCountCommand;
|
|
2088
|
+
exports.UpdateShardCountInput$ = UpdateShardCountInput$;
|
|
2089
|
+
exports.UpdateShardCountOutput$ = UpdateShardCountOutput$;
|
|
2090
|
+
exports.UpdateStreamMode$ = UpdateStreamMode$;
|
|
1939
2091
|
exports.UpdateStreamModeCommand = UpdateStreamModeCommand;
|
|
2092
|
+
exports.UpdateStreamModeInput$ = UpdateStreamModeInput$;
|
|
2093
|
+
exports.UpdateStreamWarmThroughput$ = UpdateStreamWarmThroughput$;
|
|
1940
2094
|
exports.UpdateStreamWarmThroughputCommand = UpdateStreamWarmThroughputCommand;
|
|
1941
|
-
exports.
|
|
2095
|
+
exports.UpdateStreamWarmThroughputInput$ = UpdateStreamWarmThroughputInput$;
|
|
2096
|
+
exports.UpdateStreamWarmThroughputOutput$ = UpdateStreamWarmThroughputOutput$;
|
|
2097
|
+
exports.ValidationException = ValidationException;
|
|
2098
|
+
exports.ValidationException$ = ValidationException$;
|
|
2099
|
+
exports.WarmThroughputObject$ = WarmThroughputObject$;
|
|
2100
|
+
exports._Record$ = _Record$;
|
|
1942
2101
|
exports.paginateListStreamConsumers = paginateListStreamConsumers;
|
|
1943
2102
|
exports.paginateListStreams = paginateListStreams;
|
|
1944
2103
|
exports.waitForStreamExists = waitForStreamExists;
|