@aws-sdk/client-kinesis 3.987.0 → 3.988.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 +58 -1288
- package/dist-cjs/models/KinesisServiceException.js +12 -0
- package/dist-cjs/models/errors.js +212 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +912 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +101 -95
- package/dist-types/schemas/schemas_0.d.ts +23 -16
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +18 -16
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -16,7 +16,10 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
16
16
|
var runtimeConfig = require('./runtimeConfig');
|
|
17
17
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
18
18
|
var protocolHttp = require('@smithy/protocol-http');
|
|
19
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
20
|
var utilWaiter = require('@smithy/util-waiter');
|
|
21
|
+
var errors = require('./models/errors');
|
|
22
|
+
var KinesisServiceException = require('./models/KinesisServiceException');
|
|
20
23
|
|
|
21
24
|
const resolveClientEndpointParameters = (options) => {
|
|
22
25
|
return Object.assign(options, {
|
|
@@ -113,1100 +116,6 @@ class KinesisClient extends smithyClient.Client {
|
|
|
113
116
|
}
|
|
114
117
|
}
|
|
115
118
|
|
|
116
|
-
class KinesisServiceException extends smithyClient.ServiceException {
|
|
117
|
-
constructor(options) {
|
|
118
|
-
super(options);
|
|
119
|
-
Object.setPrototypeOf(this, KinesisServiceException.prototype);
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
class AccessDeniedException extends KinesisServiceException {
|
|
124
|
-
name = "AccessDeniedException";
|
|
125
|
-
$fault = "client";
|
|
126
|
-
constructor(opts) {
|
|
127
|
-
super({
|
|
128
|
-
name: "AccessDeniedException",
|
|
129
|
-
$fault: "client",
|
|
130
|
-
...opts,
|
|
131
|
-
});
|
|
132
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
class InvalidArgumentException extends KinesisServiceException {
|
|
136
|
-
name = "InvalidArgumentException";
|
|
137
|
-
$fault = "client";
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "InvalidArgumentException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
class LimitExceededException extends KinesisServiceException {
|
|
148
|
-
name = "LimitExceededException";
|
|
149
|
-
$fault = "client";
|
|
150
|
-
constructor(opts) {
|
|
151
|
-
super({
|
|
152
|
-
name: "LimitExceededException",
|
|
153
|
-
$fault: "client",
|
|
154
|
-
...opts,
|
|
155
|
-
});
|
|
156
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
class ResourceInUseException extends KinesisServiceException {
|
|
160
|
-
name = "ResourceInUseException";
|
|
161
|
-
$fault = "client";
|
|
162
|
-
constructor(opts) {
|
|
163
|
-
super({
|
|
164
|
-
name: "ResourceInUseException",
|
|
165
|
-
$fault: "client",
|
|
166
|
-
...opts,
|
|
167
|
-
});
|
|
168
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
class ResourceNotFoundException extends KinesisServiceException {
|
|
172
|
-
name = "ResourceNotFoundException";
|
|
173
|
-
$fault = "client";
|
|
174
|
-
constructor(opts) {
|
|
175
|
-
super({
|
|
176
|
-
name: "ResourceNotFoundException",
|
|
177
|
-
$fault: "client",
|
|
178
|
-
...opts,
|
|
179
|
-
});
|
|
180
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
class ValidationException extends KinesisServiceException {
|
|
184
|
-
name = "ValidationException";
|
|
185
|
-
$fault = "client";
|
|
186
|
-
constructor(opts) {
|
|
187
|
-
super({
|
|
188
|
-
name: "ValidationException",
|
|
189
|
-
$fault: "client",
|
|
190
|
-
...opts,
|
|
191
|
-
});
|
|
192
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
class ExpiredIteratorException extends KinesisServiceException {
|
|
196
|
-
name = "ExpiredIteratorException";
|
|
197
|
-
$fault = "client";
|
|
198
|
-
constructor(opts) {
|
|
199
|
-
super({
|
|
200
|
-
name: "ExpiredIteratorException",
|
|
201
|
-
$fault: "client",
|
|
202
|
-
...opts,
|
|
203
|
-
});
|
|
204
|
-
Object.setPrototypeOf(this, ExpiredIteratorException.prototype);
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
class ExpiredNextTokenException extends KinesisServiceException {
|
|
208
|
-
name = "ExpiredNextTokenException";
|
|
209
|
-
$fault = "client";
|
|
210
|
-
constructor(opts) {
|
|
211
|
-
super({
|
|
212
|
-
name: "ExpiredNextTokenException",
|
|
213
|
-
$fault: "client",
|
|
214
|
-
...opts,
|
|
215
|
-
});
|
|
216
|
-
Object.setPrototypeOf(this, ExpiredNextTokenException.prototype);
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
class InternalFailureException extends KinesisServiceException {
|
|
220
|
-
name = "InternalFailureException";
|
|
221
|
-
$fault = "server";
|
|
222
|
-
constructor(opts) {
|
|
223
|
-
super({
|
|
224
|
-
name: "InternalFailureException",
|
|
225
|
-
$fault: "server",
|
|
226
|
-
...opts,
|
|
227
|
-
});
|
|
228
|
-
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
class KMSAccessDeniedException extends KinesisServiceException {
|
|
232
|
-
name = "KMSAccessDeniedException";
|
|
233
|
-
$fault = "client";
|
|
234
|
-
constructor(opts) {
|
|
235
|
-
super({
|
|
236
|
-
name: "KMSAccessDeniedException",
|
|
237
|
-
$fault: "client",
|
|
238
|
-
...opts,
|
|
239
|
-
});
|
|
240
|
-
Object.setPrototypeOf(this, KMSAccessDeniedException.prototype);
|
|
241
|
-
}
|
|
242
|
-
}
|
|
243
|
-
class KMSDisabledException extends KinesisServiceException {
|
|
244
|
-
name = "KMSDisabledException";
|
|
245
|
-
$fault = "client";
|
|
246
|
-
constructor(opts) {
|
|
247
|
-
super({
|
|
248
|
-
name: "KMSDisabledException",
|
|
249
|
-
$fault: "client",
|
|
250
|
-
...opts,
|
|
251
|
-
});
|
|
252
|
-
Object.setPrototypeOf(this, KMSDisabledException.prototype);
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
|
-
class KMSInvalidStateException extends KinesisServiceException {
|
|
256
|
-
name = "KMSInvalidStateException";
|
|
257
|
-
$fault = "client";
|
|
258
|
-
constructor(opts) {
|
|
259
|
-
super({
|
|
260
|
-
name: "KMSInvalidStateException",
|
|
261
|
-
$fault: "client",
|
|
262
|
-
...opts,
|
|
263
|
-
});
|
|
264
|
-
Object.setPrototypeOf(this, KMSInvalidStateException.prototype);
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
class KMSNotFoundException extends KinesisServiceException {
|
|
268
|
-
name = "KMSNotFoundException";
|
|
269
|
-
$fault = "client";
|
|
270
|
-
constructor(opts) {
|
|
271
|
-
super({
|
|
272
|
-
name: "KMSNotFoundException",
|
|
273
|
-
$fault: "client",
|
|
274
|
-
...opts,
|
|
275
|
-
});
|
|
276
|
-
Object.setPrototypeOf(this, KMSNotFoundException.prototype);
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
|
-
class KMSOptInRequired extends KinesisServiceException {
|
|
280
|
-
name = "KMSOptInRequired";
|
|
281
|
-
$fault = "client";
|
|
282
|
-
constructor(opts) {
|
|
283
|
-
super({
|
|
284
|
-
name: "KMSOptInRequired",
|
|
285
|
-
$fault: "client",
|
|
286
|
-
...opts,
|
|
287
|
-
});
|
|
288
|
-
Object.setPrototypeOf(this, KMSOptInRequired.prototype);
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
class KMSThrottlingException extends KinesisServiceException {
|
|
292
|
-
name = "KMSThrottlingException";
|
|
293
|
-
$fault = "client";
|
|
294
|
-
constructor(opts) {
|
|
295
|
-
super({
|
|
296
|
-
name: "KMSThrottlingException",
|
|
297
|
-
$fault: "client",
|
|
298
|
-
...opts,
|
|
299
|
-
});
|
|
300
|
-
Object.setPrototypeOf(this, KMSThrottlingException.prototype);
|
|
301
|
-
}
|
|
302
|
-
}
|
|
303
|
-
class ProvisionedThroughputExceededException extends KinesisServiceException {
|
|
304
|
-
name = "ProvisionedThroughputExceededException";
|
|
305
|
-
$fault = "client";
|
|
306
|
-
constructor(opts) {
|
|
307
|
-
super({
|
|
308
|
-
name: "ProvisionedThroughputExceededException",
|
|
309
|
-
$fault: "client",
|
|
310
|
-
...opts,
|
|
311
|
-
});
|
|
312
|
-
Object.setPrototypeOf(this, ProvisionedThroughputExceededException.prototype);
|
|
313
|
-
}
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
const _AAT = "ApproximateArrivalTimestamp";
|
|
317
|
-
const _ADE = "AccessDeniedException";
|
|
318
|
-
const _APSI = "AdjacentParentShardId";
|
|
319
|
-
const _ASTM = "AdjacentShardToMerge";
|
|
320
|
-
const _ATTS = "AddTagsToStream";
|
|
321
|
-
const _ATTSI = "AddTagsToStreamInput";
|
|
322
|
-
const _C = "Consumer";
|
|
323
|
-
const _CARN = "ConsumerARN";
|
|
324
|
-
const _CC = "ConsumerCount";
|
|
325
|
-
const _CCT = "ConsumerCreationTimestamp";
|
|
326
|
-
const _CD = "ConsumerDescription";
|
|
327
|
-
const _CL = "ConsumerList";
|
|
328
|
-
const _CMB = "CurrentMiBps";
|
|
329
|
-
const _CN = "ConsumerName";
|
|
330
|
-
const _CS = "ChildShard";
|
|
331
|
-
const _CSC = "CurrentShardCount";
|
|
332
|
-
const _CSI = "CreateStreamInput";
|
|
333
|
-
const _CSL = "ChildShardList";
|
|
334
|
-
const _CSLM = "CurrentShardLevelMetrics";
|
|
335
|
-
const _CSN = "ContinuationSequenceNumber";
|
|
336
|
-
const _CSh = "ChildShards";
|
|
337
|
-
const _CSo = "ConsumerStatus";
|
|
338
|
-
const _CSr = "CreateStream";
|
|
339
|
-
const _Co = "Consumers";
|
|
340
|
-
const _D = "Data";
|
|
341
|
-
const _DAS = "DescribeAccountSettings";
|
|
342
|
-
const _DASI = "DescribeAccountSettingsInput";
|
|
343
|
-
const _DASO = "DescribeAccountSettingsOutput";
|
|
344
|
-
const _DEM = "DisableEnhancedMonitoring";
|
|
345
|
-
const _DEMI = "DisableEnhancedMonitoringInput";
|
|
346
|
-
const _DL = "DescribeLimits";
|
|
347
|
-
const _DLI = "DescribeLimitsInput";
|
|
348
|
-
const _DLO = "DescribeLimitsOutput";
|
|
349
|
-
const _DRP = "DeleteResourcePolicy";
|
|
350
|
-
const _DRPI = "DeleteResourcePolicyInput";
|
|
351
|
-
const _DS = "DeleteStream";
|
|
352
|
-
const _DSC = "DeregisterStreamConsumer";
|
|
353
|
-
const _DSCI = "DeregisterStreamConsumerInput";
|
|
354
|
-
const _DSCIe = "DescribeStreamConsumerInput";
|
|
355
|
-
const _DSCO = "DescribeStreamConsumerOutput";
|
|
356
|
-
const _DSCe = "DescribeStreamConsumer";
|
|
357
|
-
const _DSI = "DeleteStreamInput";
|
|
358
|
-
const _DSIe = "DescribeStreamInput";
|
|
359
|
-
const _DSLM = "DesiredShardLevelMetrics";
|
|
360
|
-
const _DSO = "DescribeStreamOutput";
|
|
361
|
-
const _DSRP = "DecreaseStreamRetentionPeriod";
|
|
362
|
-
const _DSRPI = "DecreaseStreamRetentionPeriodInput";
|
|
363
|
-
const _DSS = "DescribeStreamSummary";
|
|
364
|
-
const _DSSI = "DescribeStreamSummaryInput";
|
|
365
|
-
const _DSSO = "DescribeStreamSummaryOutput";
|
|
366
|
-
const _DSe = "DescribeStream";
|
|
367
|
-
const _EA = "EndedAt";
|
|
368
|
-
const _EAEA = "EarliestAllowedEndAt";
|
|
369
|
-
const _EC = "ErrorCode";
|
|
370
|
-
const _ECD = "EnforceConsumerDeletion";
|
|
371
|
-
const _EEM = "EnableEnhancedMonitoring";
|
|
372
|
-
const _EEMI = "EnableEnhancedMonitoringInput";
|
|
373
|
-
const _EHK = "EndingHashKey";
|
|
374
|
-
const _EHKx = "ExplicitHashKey";
|
|
375
|
-
const _EIE = "ExpiredIteratorException";
|
|
376
|
-
const _EM = "EnhancedMetrics";
|
|
377
|
-
const _EML = "EnhancedMonitoringList";
|
|
378
|
-
const _EMO = "EnhancedMonitoringOutput";
|
|
379
|
-
const _EMn = "EnhancedMonitoring";
|
|
380
|
-
const _EMr = "ErrorMessage";
|
|
381
|
-
const _ENTE = "ExpiredNextTokenException";
|
|
382
|
-
const _ES = "EventStream";
|
|
383
|
-
const _ESN = "EndingSequenceNumber";
|
|
384
|
-
const _ESSI = "ExclusiveStartShardId";
|
|
385
|
-
const _ESSN = "ExclusiveStartStreamName";
|
|
386
|
-
const _ESTK = "ExclusiveStartTagKey";
|
|
387
|
-
const _ET = "EncryptionType";
|
|
388
|
-
const _FRC = "FailedRecordCount";
|
|
389
|
-
const _GR = "GetRecords";
|
|
390
|
-
const _GRI = "GetRecordsInput";
|
|
391
|
-
const _GRO = "GetRecordsOutput";
|
|
392
|
-
const _GRP = "GetResourcePolicy";
|
|
393
|
-
const _GRPI = "GetResourcePolicyInput";
|
|
394
|
-
const _GRPO = "GetResourcePolicyOutput";
|
|
395
|
-
const _GSI = "GetShardIterator";
|
|
396
|
-
const _GSII = "GetShardIteratorInput";
|
|
397
|
-
const _GSIO = "GetShardIteratorOutput";
|
|
398
|
-
const _HKR = "HashKeyRange";
|
|
399
|
-
const _HMS = "HasMoreStreams";
|
|
400
|
-
const _HMSa = "HasMoreShards";
|
|
401
|
-
const _HMT = "HasMoreTags";
|
|
402
|
-
const _IAE = "InvalidArgumentException";
|
|
403
|
-
const _IFE = "InternalFailureException";
|
|
404
|
-
const _ISRP = "IncreaseStreamRetentionPeriod";
|
|
405
|
-
const _ISRPI = "IncreaseStreamRetentionPeriodInput";
|
|
406
|
-
const _K = "Key";
|
|
407
|
-
const _KI = "KeyId";
|
|
408
|
-
const _KMSADE = "KMSAccessDeniedException";
|
|
409
|
-
const _KMSDE = "KMSDisabledException";
|
|
410
|
-
const _KMSISE = "KMSInvalidStateException";
|
|
411
|
-
const _KMSNFE = "KMSNotFoundException";
|
|
412
|
-
const _KMSOIR = "KMSOptInRequired";
|
|
413
|
-
const _KMSTE = "KMSThrottlingException";
|
|
414
|
-
const _L = "Limit";
|
|
415
|
-
const _LEE = "LimitExceededException";
|
|
416
|
-
const _LS = "ListShards";
|
|
417
|
-
const _LSC = "ListStreamConsumers";
|
|
418
|
-
const _LSCI = "ListStreamConsumersInput";
|
|
419
|
-
const _LSCO = "ListStreamConsumersOutput";
|
|
420
|
-
const _LSI = "ListShardsInput";
|
|
421
|
-
const _LSIi = "ListStreamsInput";
|
|
422
|
-
const _LSO = "ListShardsOutput";
|
|
423
|
-
const _LSOi = "ListStreamsOutput";
|
|
424
|
-
const _LSi = "ListStreams";
|
|
425
|
-
const _LTFR = "ListTagsForResource";
|
|
426
|
-
const _LTFRI = "ListTagsForResourceInput";
|
|
427
|
-
const _LTFRO = "ListTagsForResourceOutput";
|
|
428
|
-
const _LTFS = "ListTagsForStream";
|
|
429
|
-
const _LTFSI = "ListTagsForStreamInput";
|
|
430
|
-
const _LTFSO = "ListTagsForStreamOutput";
|
|
431
|
-
const _MBL = "MillisBehindLatest";
|
|
432
|
-
const _MR = "MaxResults";
|
|
433
|
-
const _MRSIKB = "MaxRecordSizeInKiB";
|
|
434
|
-
const _MS = "MergeShards";
|
|
435
|
-
const _MSI = "MergeShardsInput";
|
|
436
|
-
const _MTBC = "MinimumThroughputBillingCommitment";
|
|
437
|
-
const _MTBCI = "MinimumThroughputBillingCommitmentInput";
|
|
438
|
-
const _MTBCO = "MinimumThroughputBillingCommitmentOutput";
|
|
439
|
-
const _NSHK = "NewStartingHashKey";
|
|
440
|
-
const _NSI = "NextShardIterator";
|
|
441
|
-
const _NT = "NextToken";
|
|
442
|
-
const _ODSC = "OnDemandStreamCount";
|
|
443
|
-
const _ODSCL = "OnDemandStreamCountLimit";
|
|
444
|
-
const _OSC = "OpenShardCount";
|
|
445
|
-
const _P = "Policy";
|
|
446
|
-
const _PK = "PartitionKey";
|
|
447
|
-
const _PR = "PutRecord";
|
|
448
|
-
const _PRI = "PutRecordInput";
|
|
449
|
-
const _PRIu = "PutRecordsInput";
|
|
450
|
-
const _PRO = "PutRecordOutput";
|
|
451
|
-
const _PROu = "PutRecordsOutput";
|
|
452
|
-
const _PRP = "PutResourcePolicy";
|
|
453
|
-
const _PRPI = "PutResourcePolicyInput";
|
|
454
|
-
const _PRRE = "PutRecordsRequestEntry";
|
|
455
|
-
const _PRREL = "PutRecordsRequestEntryList";
|
|
456
|
-
const _PRRELu = "PutRecordsResultEntryList";
|
|
457
|
-
const _PRREu = "PutRecordsResultEntry";
|
|
458
|
-
const _PRu = "PutRecords";
|
|
459
|
-
const _PS = "ParentShards";
|
|
460
|
-
const _PSI = "ParentShardId";
|
|
461
|
-
const _PTEE = "ProvisionedThroughputExceededException";
|
|
462
|
-
const _R = "Records";
|
|
463
|
-
const _RARN = "ResourceARN";
|
|
464
|
-
const _RIUE = "ResourceInUseException";
|
|
465
|
-
const _RL = "RecordList";
|
|
466
|
-
const _RNFE = "ResourceNotFoundException";
|
|
467
|
-
const _RPH = "RetentionPeriodHours";
|
|
468
|
-
const _RSC = "RegisterStreamConsumer";
|
|
469
|
-
const _RSCI = "RegisterStreamConsumerInput";
|
|
470
|
-
const _RSCO = "RegisterStreamConsumerOutput";
|
|
471
|
-
const _RTFS = "RemoveTagsFromStream";
|
|
472
|
-
const _RTFSI = "RemoveTagsFromStreamInput";
|
|
473
|
-
const _Re = "Record";
|
|
474
|
-
const _S = "Shards";
|
|
475
|
-
const _SA = "StartedAt";
|
|
476
|
-
const _SARN = "StreamARN";
|
|
477
|
-
const _SC = "ShardCount";
|
|
478
|
-
const _SCT = "StreamCreationTimestamp";
|
|
479
|
-
const _SD = "StreamDescription";
|
|
480
|
-
const _SDS = "StreamDescriptionSummary";
|
|
481
|
-
const _SF = "ShardFilter";
|
|
482
|
-
const _SHK = "StartingHashKey";
|
|
483
|
-
const _SI = "StreamId";
|
|
484
|
-
const _SIT = "ShardIteratorType";
|
|
485
|
-
const _SIh = "ShardId";
|
|
486
|
-
const _SIha = "ShardIterator";
|
|
487
|
-
const _SL = "ShardLimit";
|
|
488
|
-
const _SLM = "ShardLevelMetrics";
|
|
489
|
-
const _SLh = "ShardList";
|
|
490
|
-
const _SM = "StreamMode";
|
|
491
|
-
const _SMD = "StreamModeDetails";
|
|
492
|
-
const _SN = "StreamName";
|
|
493
|
-
const _SNFO = "SequenceNumberForOrdering";
|
|
494
|
-
const _SNR = "SequenceNumberRange";
|
|
495
|
-
const _SNe = "SequenceNumber";
|
|
496
|
-
const _SNt = "StreamNames";
|
|
497
|
-
const _SP = "StartingPosition";
|
|
498
|
-
const _SS = "StreamSummaries";
|
|
499
|
-
const _SSE = "StartStreamEncryption";
|
|
500
|
-
const _SSEI = "StartStreamEncryptionInput";
|
|
501
|
-
const _SSEIt = "StopStreamEncryptionInput";
|
|
502
|
-
const _SSEt = "StopStreamEncryption";
|
|
503
|
-
const _SSI = "SplitShardInput";
|
|
504
|
-
const _SSL = "StreamSummaryList";
|
|
505
|
-
const _SSN = "StartingSequenceNumber";
|
|
506
|
-
const _SSp = "SplitShard";
|
|
507
|
-
const _SSt = "StreamStatus";
|
|
508
|
-
const _SStr = "StreamSummary";
|
|
509
|
-
const _ST = "ScalingType";
|
|
510
|
-
const _STM = "ShardToMerge";
|
|
511
|
-
const _STS = "ShardToSplit";
|
|
512
|
-
const _STSE = "SubscribeToShardEvent";
|
|
513
|
-
const _STSES = "SubscribeToShardEventStream";
|
|
514
|
-
const _STSI = "SubscribeToShardInput";
|
|
515
|
-
const _STSO = "SubscribeToShardOutput";
|
|
516
|
-
const _STSu = "SubscribeToShard";
|
|
517
|
-
const _Sh = "Shard";
|
|
518
|
-
const _St = "Status";
|
|
519
|
-
const _T = "Tags";
|
|
520
|
-
const _TK = "TagKeys";
|
|
521
|
-
const _TL = "TagList";
|
|
522
|
-
const _TMB = "TargetMiBps";
|
|
523
|
-
const _TR = "TagResource";
|
|
524
|
-
const _TRI = "TagResourceInput";
|
|
525
|
-
const _TSC = "TargetShardCount";
|
|
526
|
-
const _Ta = "Tag";
|
|
527
|
-
const _Ti = "Timestamp";
|
|
528
|
-
const _Ty = "Type";
|
|
529
|
-
const _UAS = "UpdateAccountSettings";
|
|
530
|
-
const _UASI = "UpdateAccountSettingsInput";
|
|
531
|
-
const _UASO = "UpdateAccountSettingsOutput";
|
|
532
|
-
const _UMRS = "UpdateMaxRecordSize";
|
|
533
|
-
const _UMRSI = "UpdateMaxRecordSizeInput";
|
|
534
|
-
const _UR = "UntagResource";
|
|
535
|
-
const _URI = "UntagResourceInput";
|
|
536
|
-
const _USC = "UpdateShardCount";
|
|
537
|
-
const _USCI = "UpdateShardCountInput";
|
|
538
|
-
const _USCO = "UpdateShardCountOutput";
|
|
539
|
-
const _USM = "UpdateStreamMode";
|
|
540
|
-
const _USMI = "UpdateStreamModeInput";
|
|
541
|
-
const _USWT = "UpdateStreamWarmThroughput";
|
|
542
|
-
const _USWTI = "UpdateStreamWarmThroughputInput";
|
|
543
|
-
const _USWTO = "UpdateStreamWarmThroughputOutput";
|
|
544
|
-
const _V = "Value";
|
|
545
|
-
const _VE = "ValidationException";
|
|
546
|
-
const _WT = "WarmThroughput";
|
|
547
|
-
const _WTMB = "WarmThroughputMiBps";
|
|
548
|
-
const _WTO = "WarmThroughputObject";
|
|
549
|
-
const _c = "client";
|
|
550
|
-
const _e = "error";
|
|
551
|
-
const _m = "message";
|
|
552
|
-
const _s = "server";
|
|
553
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.kinesis";
|
|
554
|
-
const _st = "streaming";
|
|
555
|
-
const n0 = "com.amazonaws.kinesis";
|
|
556
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
557
|
-
{ [_e]: _c },
|
|
558
|
-
[_m],
|
|
559
|
-
[0]
|
|
560
|
-
];
|
|
561
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
562
|
-
var AddTagsToStreamInput$ = [3, n0, _ATTSI,
|
|
563
|
-
0,
|
|
564
|
-
[_T, _SN, _SARN, _SI],
|
|
565
|
-
[128 | 0, 0, 0, 0], 1
|
|
566
|
-
];
|
|
567
|
-
var ChildShard$ = [3, n0, _CS,
|
|
568
|
-
0,
|
|
569
|
-
[_SIh, _PS, _HKR],
|
|
570
|
-
[0, 64 | 0, () => HashKeyRange$], 3
|
|
571
|
-
];
|
|
572
|
-
var Consumer$ = [3, n0, _C,
|
|
573
|
-
0,
|
|
574
|
-
[_CN, _CARN, _CSo, _CCT],
|
|
575
|
-
[0, 0, 0, 4], 4
|
|
576
|
-
];
|
|
577
|
-
var ConsumerDescription$ = [3, n0, _CD,
|
|
578
|
-
0,
|
|
579
|
-
[_CN, _CARN, _CSo, _CCT, _SARN],
|
|
580
|
-
[0, 0, 0, 4, 0], 5
|
|
581
|
-
];
|
|
582
|
-
var CreateStreamInput$ = [3, n0, _CSI,
|
|
583
|
-
0,
|
|
584
|
-
[_SN, _SC, _SMD, _T, _WTMB, _MRSIKB],
|
|
585
|
-
[0, 1, () => StreamModeDetails$, 128 | 0, 1, 1], 1
|
|
586
|
-
];
|
|
587
|
-
var DecreaseStreamRetentionPeriodInput$ = [3, n0, _DSRPI,
|
|
588
|
-
0,
|
|
589
|
-
[_RPH, _SN, _SARN, _SI],
|
|
590
|
-
[1, 0, 0, 0], 1
|
|
591
|
-
];
|
|
592
|
-
var DeleteResourcePolicyInput$ = [3, n0, _DRPI,
|
|
593
|
-
0,
|
|
594
|
-
[_RARN, _SI],
|
|
595
|
-
[0, 0], 1
|
|
596
|
-
];
|
|
597
|
-
var DeleteStreamInput$ = [3, n0, _DSI,
|
|
598
|
-
0,
|
|
599
|
-
[_SN, _ECD, _SARN, _SI],
|
|
600
|
-
[0, 2, 0, 0]
|
|
601
|
-
];
|
|
602
|
-
var DeregisterStreamConsumerInput$ = [3, n0, _DSCI,
|
|
603
|
-
0,
|
|
604
|
-
[_SARN, _CN, _CARN, _SI],
|
|
605
|
-
[0, 0, 0, 0]
|
|
606
|
-
];
|
|
607
|
-
var DescribeAccountSettingsInput$ = [3, n0, _DASI,
|
|
608
|
-
0,
|
|
609
|
-
[],
|
|
610
|
-
[]
|
|
611
|
-
];
|
|
612
|
-
var DescribeAccountSettingsOutput$ = [3, n0, _DASO,
|
|
613
|
-
0,
|
|
614
|
-
[_MTBC],
|
|
615
|
-
[() => MinimumThroughputBillingCommitmentOutput$]
|
|
616
|
-
];
|
|
617
|
-
var DescribeLimitsInput$ = [3, n0, _DLI,
|
|
618
|
-
0,
|
|
619
|
-
[],
|
|
620
|
-
[]
|
|
621
|
-
];
|
|
622
|
-
var DescribeLimitsOutput$ = [3, n0, _DLO,
|
|
623
|
-
0,
|
|
624
|
-
[_SL, _OSC, _ODSC, _ODSCL],
|
|
625
|
-
[1, 1, 1, 1], 4
|
|
626
|
-
];
|
|
627
|
-
var DescribeStreamConsumerInput$ = [3, n0, _DSCIe,
|
|
628
|
-
0,
|
|
629
|
-
[_SARN, _CN, _CARN, _SI],
|
|
630
|
-
[0, 0, 0, 0]
|
|
631
|
-
];
|
|
632
|
-
var DescribeStreamConsumerOutput$ = [3, n0, _DSCO,
|
|
633
|
-
0,
|
|
634
|
-
[_CD],
|
|
635
|
-
[() => ConsumerDescription$], 1
|
|
636
|
-
];
|
|
637
|
-
var DescribeStreamInput$ = [3, n0, _DSIe,
|
|
638
|
-
0,
|
|
639
|
-
[_SN, _L, _ESSI, _SARN, _SI],
|
|
640
|
-
[0, 1, 0, 0, 0]
|
|
641
|
-
];
|
|
642
|
-
var DescribeStreamOutput$ = [3, n0, _DSO,
|
|
643
|
-
0,
|
|
644
|
-
[_SD],
|
|
645
|
-
[() => StreamDescription$], 1
|
|
646
|
-
];
|
|
647
|
-
var DescribeStreamSummaryInput$ = [3, n0, _DSSI,
|
|
648
|
-
0,
|
|
649
|
-
[_SN, _SARN, _SI],
|
|
650
|
-
[0, 0, 0]
|
|
651
|
-
];
|
|
652
|
-
var DescribeStreamSummaryOutput$ = [3, n0, _DSSO,
|
|
653
|
-
0,
|
|
654
|
-
[_SDS],
|
|
655
|
-
[() => StreamDescriptionSummary$], 1
|
|
656
|
-
];
|
|
657
|
-
var DisableEnhancedMonitoringInput$ = [3, n0, _DEMI,
|
|
658
|
-
0,
|
|
659
|
-
[_SLM, _SN, _SARN, _SI],
|
|
660
|
-
[64 | 0, 0, 0, 0], 1
|
|
661
|
-
];
|
|
662
|
-
var EnableEnhancedMonitoringInput$ = [3, n0, _EEMI,
|
|
663
|
-
0,
|
|
664
|
-
[_SLM, _SN, _SARN, _SI],
|
|
665
|
-
[64 | 0, 0, 0, 0], 1
|
|
666
|
-
];
|
|
667
|
-
var EnhancedMetrics$ = [3, n0, _EM,
|
|
668
|
-
0,
|
|
669
|
-
[_SLM],
|
|
670
|
-
[64 | 0]
|
|
671
|
-
];
|
|
672
|
-
var EnhancedMonitoringOutput$ = [3, n0, _EMO,
|
|
673
|
-
0,
|
|
674
|
-
[_SN, _CSLM, _DSLM, _SARN],
|
|
675
|
-
[0, 64 | 0, 64 | 0, 0]
|
|
676
|
-
];
|
|
677
|
-
var ExpiredIteratorException$ = [-3, n0, _EIE,
|
|
678
|
-
{ [_e]: _c },
|
|
679
|
-
[_m],
|
|
680
|
-
[0]
|
|
681
|
-
];
|
|
682
|
-
schema.TypeRegistry.for(n0).registerError(ExpiredIteratorException$, ExpiredIteratorException);
|
|
683
|
-
var ExpiredNextTokenException$ = [-3, n0, _ENTE,
|
|
684
|
-
{ [_e]: _c },
|
|
685
|
-
[_m],
|
|
686
|
-
[0]
|
|
687
|
-
];
|
|
688
|
-
schema.TypeRegistry.for(n0).registerError(ExpiredNextTokenException$, ExpiredNextTokenException);
|
|
689
|
-
var GetRecordsInput$ = [3, n0, _GRI,
|
|
690
|
-
0,
|
|
691
|
-
[_SIha, _L, _SARN, _SI],
|
|
692
|
-
[0, 1, 0, 0], 1
|
|
693
|
-
];
|
|
694
|
-
var GetRecordsOutput$ = [3, n0, _GRO,
|
|
695
|
-
0,
|
|
696
|
-
[_R, _NSI, _MBL, _CSh],
|
|
697
|
-
[() => RecordList, 0, 1, () => ChildShardList], 1
|
|
698
|
-
];
|
|
699
|
-
var GetResourcePolicyInput$ = [3, n0, _GRPI,
|
|
700
|
-
0,
|
|
701
|
-
[_RARN, _SI],
|
|
702
|
-
[0, 0], 1
|
|
703
|
-
];
|
|
704
|
-
var GetResourcePolicyOutput$ = [3, n0, _GRPO,
|
|
705
|
-
0,
|
|
706
|
-
[_P],
|
|
707
|
-
[0], 1
|
|
708
|
-
];
|
|
709
|
-
var GetShardIteratorInput$ = [3, n0, _GSII,
|
|
710
|
-
0,
|
|
711
|
-
[_SIh, _SIT, _SN, _SSN, _Ti, _SARN, _SI],
|
|
712
|
-
[0, 0, 0, 0, 4, 0, 0], 2
|
|
713
|
-
];
|
|
714
|
-
var GetShardIteratorOutput$ = [3, n0, _GSIO,
|
|
715
|
-
0,
|
|
716
|
-
[_SIha],
|
|
717
|
-
[0]
|
|
718
|
-
];
|
|
719
|
-
var HashKeyRange$ = [3, n0, _HKR,
|
|
720
|
-
0,
|
|
721
|
-
[_SHK, _EHK],
|
|
722
|
-
[0, 0], 2
|
|
723
|
-
];
|
|
724
|
-
var IncreaseStreamRetentionPeriodInput$ = [3, n0, _ISRPI,
|
|
725
|
-
0,
|
|
726
|
-
[_RPH, _SN, _SARN, _SI],
|
|
727
|
-
[1, 0, 0, 0], 1
|
|
728
|
-
];
|
|
729
|
-
var InternalFailureException$ = [-3, n0, _IFE,
|
|
730
|
-
{ [_e]: _s },
|
|
731
|
-
[_m],
|
|
732
|
-
[0]
|
|
733
|
-
];
|
|
734
|
-
schema.TypeRegistry.for(n0).registerError(InternalFailureException$, InternalFailureException);
|
|
735
|
-
var InvalidArgumentException$ = [-3, n0, _IAE,
|
|
736
|
-
{ [_e]: _c },
|
|
737
|
-
[_m],
|
|
738
|
-
[0]
|
|
739
|
-
];
|
|
740
|
-
schema.TypeRegistry.for(n0).registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
741
|
-
var KMSAccessDeniedException$ = [-3, n0, _KMSADE,
|
|
742
|
-
{ [_e]: _c },
|
|
743
|
-
[_m],
|
|
744
|
-
[0]
|
|
745
|
-
];
|
|
746
|
-
schema.TypeRegistry.for(n0).registerError(KMSAccessDeniedException$, KMSAccessDeniedException);
|
|
747
|
-
var KMSDisabledException$ = [-3, n0, _KMSDE,
|
|
748
|
-
{ [_e]: _c },
|
|
749
|
-
[_m],
|
|
750
|
-
[0]
|
|
751
|
-
];
|
|
752
|
-
schema.TypeRegistry.for(n0).registerError(KMSDisabledException$, KMSDisabledException);
|
|
753
|
-
var KMSInvalidStateException$ = [-3, n0, _KMSISE,
|
|
754
|
-
{ [_e]: _c },
|
|
755
|
-
[_m],
|
|
756
|
-
[0]
|
|
757
|
-
];
|
|
758
|
-
schema.TypeRegistry.for(n0).registerError(KMSInvalidStateException$, KMSInvalidStateException);
|
|
759
|
-
var KMSNotFoundException$ = [-3, n0, _KMSNFE,
|
|
760
|
-
{ [_e]: _c },
|
|
761
|
-
[_m],
|
|
762
|
-
[0]
|
|
763
|
-
];
|
|
764
|
-
schema.TypeRegistry.for(n0).registerError(KMSNotFoundException$, KMSNotFoundException);
|
|
765
|
-
var KMSOptInRequired$ = [-3, n0, _KMSOIR,
|
|
766
|
-
{ [_e]: _c },
|
|
767
|
-
[_m],
|
|
768
|
-
[0]
|
|
769
|
-
];
|
|
770
|
-
schema.TypeRegistry.for(n0).registerError(KMSOptInRequired$, KMSOptInRequired);
|
|
771
|
-
var KMSThrottlingException$ = [-3, n0, _KMSTE,
|
|
772
|
-
{ [_e]: _c },
|
|
773
|
-
[_m],
|
|
774
|
-
[0]
|
|
775
|
-
];
|
|
776
|
-
schema.TypeRegistry.for(n0).registerError(KMSThrottlingException$, KMSThrottlingException);
|
|
777
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
778
|
-
{ [_e]: _c },
|
|
779
|
-
[_m],
|
|
780
|
-
[0]
|
|
781
|
-
];
|
|
782
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
783
|
-
var ListShardsInput$ = [3, n0, _LSI,
|
|
784
|
-
0,
|
|
785
|
-
[_SN, _NT, _ESSI, _MR, _SCT, _SF, _SARN, _SI],
|
|
786
|
-
[0, 0, 0, 1, 4, () => ShardFilter$, 0, 0]
|
|
787
|
-
];
|
|
788
|
-
var ListShardsOutput$ = [3, n0, _LSO,
|
|
789
|
-
0,
|
|
790
|
-
[_S, _NT],
|
|
791
|
-
[() => ShardList, 0]
|
|
792
|
-
];
|
|
793
|
-
var ListStreamConsumersInput$ = [3, n0, _LSCI,
|
|
794
|
-
0,
|
|
795
|
-
[_SARN, _NT, _MR, _SCT, _SI],
|
|
796
|
-
[0, 0, 1, 4, 0], 1
|
|
797
|
-
];
|
|
798
|
-
var ListStreamConsumersOutput$ = [3, n0, _LSCO,
|
|
799
|
-
0,
|
|
800
|
-
[_Co, _NT],
|
|
801
|
-
[() => ConsumerList, 0]
|
|
802
|
-
];
|
|
803
|
-
var ListStreamsInput$ = [3, n0, _LSIi,
|
|
804
|
-
0,
|
|
805
|
-
[_L, _ESSN, _NT],
|
|
806
|
-
[1, 0, 0]
|
|
807
|
-
];
|
|
808
|
-
var ListStreamsOutput$ = [3, n0, _LSOi,
|
|
809
|
-
0,
|
|
810
|
-
[_SNt, _HMS, _NT, _SS],
|
|
811
|
-
[64 | 0, 2, 0, () => StreamSummaryList], 2
|
|
812
|
-
];
|
|
813
|
-
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
814
|
-
0,
|
|
815
|
-
[_RARN, _SI],
|
|
816
|
-
[0, 0], 1
|
|
817
|
-
];
|
|
818
|
-
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
819
|
-
0,
|
|
820
|
-
[_T],
|
|
821
|
-
[() => TagList]
|
|
822
|
-
];
|
|
823
|
-
var ListTagsForStreamInput$ = [3, n0, _LTFSI,
|
|
824
|
-
0,
|
|
825
|
-
[_SN, _ESTK, _L, _SARN, _SI],
|
|
826
|
-
[0, 0, 1, 0, 0]
|
|
827
|
-
];
|
|
828
|
-
var ListTagsForStreamOutput$ = [3, n0, _LTFSO,
|
|
829
|
-
0,
|
|
830
|
-
[_T, _HMT],
|
|
831
|
-
[() => TagList, 2], 2
|
|
832
|
-
];
|
|
833
|
-
var MergeShardsInput$ = [3, n0, _MSI,
|
|
834
|
-
0,
|
|
835
|
-
[_STM, _ASTM, _SN, _SARN, _SI],
|
|
836
|
-
[0, 0, 0, 0, 0], 2
|
|
837
|
-
];
|
|
838
|
-
var MinimumThroughputBillingCommitmentInput$ = [3, n0, _MTBCI,
|
|
839
|
-
0,
|
|
840
|
-
[_St],
|
|
841
|
-
[0], 1
|
|
842
|
-
];
|
|
843
|
-
var MinimumThroughputBillingCommitmentOutput$ = [3, n0, _MTBCO,
|
|
844
|
-
0,
|
|
845
|
-
[_St, _SA, _EA, _EAEA],
|
|
846
|
-
[0, 4, 4, 4], 1
|
|
847
|
-
];
|
|
848
|
-
var ProvisionedThroughputExceededException$ = [-3, n0, _PTEE,
|
|
849
|
-
{ [_e]: _c },
|
|
850
|
-
[_m],
|
|
851
|
-
[0]
|
|
852
|
-
];
|
|
853
|
-
schema.TypeRegistry.for(n0).registerError(ProvisionedThroughputExceededException$, ProvisionedThroughputExceededException);
|
|
854
|
-
var PutRecordInput$ = [3, n0, _PRI,
|
|
855
|
-
0,
|
|
856
|
-
[_D, _PK, _SN, _EHKx, _SNFO, _SARN, _SI],
|
|
857
|
-
[21, 0, 0, 0, 0, 0, 0], 2
|
|
858
|
-
];
|
|
859
|
-
var PutRecordOutput$ = [3, n0, _PRO,
|
|
860
|
-
0,
|
|
861
|
-
[_SIh, _SNe, _ET],
|
|
862
|
-
[0, 0, 0], 2
|
|
863
|
-
];
|
|
864
|
-
var PutRecordsInput$ = [3, n0, _PRIu,
|
|
865
|
-
0,
|
|
866
|
-
[_R, _SN, _SARN, _SI],
|
|
867
|
-
[() => PutRecordsRequestEntryList, 0, 0, 0], 1
|
|
868
|
-
];
|
|
869
|
-
var PutRecordsOutput$ = [3, n0, _PROu,
|
|
870
|
-
0,
|
|
871
|
-
[_R, _FRC, _ET],
|
|
872
|
-
[() => PutRecordsResultEntryList, 1, 0], 1
|
|
873
|
-
];
|
|
874
|
-
var PutRecordsRequestEntry$ = [3, n0, _PRRE,
|
|
875
|
-
0,
|
|
876
|
-
[_D, _PK, _EHKx],
|
|
877
|
-
[21, 0, 0], 2
|
|
878
|
-
];
|
|
879
|
-
var PutRecordsResultEntry$ = [3, n0, _PRREu,
|
|
880
|
-
0,
|
|
881
|
-
[_SNe, _SIh, _EC, _EMr],
|
|
882
|
-
[0, 0, 0, 0]
|
|
883
|
-
];
|
|
884
|
-
var PutResourcePolicyInput$ = [3, n0, _PRPI,
|
|
885
|
-
0,
|
|
886
|
-
[_RARN, _P, _SI],
|
|
887
|
-
[0, 0, 0], 2
|
|
888
|
-
];
|
|
889
|
-
var _Record$ = [3, n0, _Re,
|
|
890
|
-
0,
|
|
891
|
-
[_SNe, _D, _PK, _AAT, _ET],
|
|
892
|
-
[0, 21, 0, 4, 0], 3
|
|
893
|
-
];
|
|
894
|
-
var RegisterStreamConsumerInput$ = [3, n0, _RSCI,
|
|
895
|
-
0,
|
|
896
|
-
[_SARN, _CN, _SI, _T],
|
|
897
|
-
[0, 0, 0, 128 | 0], 2
|
|
898
|
-
];
|
|
899
|
-
var RegisterStreamConsumerOutput$ = [3, n0, _RSCO,
|
|
900
|
-
0,
|
|
901
|
-
[_C],
|
|
902
|
-
[() => Consumer$], 1
|
|
903
|
-
];
|
|
904
|
-
var RemoveTagsFromStreamInput$ = [3, n0, _RTFSI,
|
|
905
|
-
0,
|
|
906
|
-
[_TK, _SN, _SARN, _SI],
|
|
907
|
-
[64 | 0, 0, 0, 0], 1
|
|
908
|
-
];
|
|
909
|
-
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
910
|
-
{ [_e]: _c },
|
|
911
|
-
[_m],
|
|
912
|
-
[0]
|
|
913
|
-
];
|
|
914
|
-
schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
915
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
916
|
-
{ [_e]: _c },
|
|
917
|
-
[_m],
|
|
918
|
-
[0]
|
|
919
|
-
];
|
|
920
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
921
|
-
var SequenceNumberRange$ = [3, n0, _SNR,
|
|
922
|
-
0,
|
|
923
|
-
[_SSN, _ESN],
|
|
924
|
-
[0, 0], 1
|
|
925
|
-
];
|
|
926
|
-
var Shard$ = [3, n0, _Sh,
|
|
927
|
-
0,
|
|
928
|
-
[_SIh, _HKR, _SNR, _PSI, _APSI],
|
|
929
|
-
[0, () => HashKeyRange$, () => SequenceNumberRange$, 0, 0], 3
|
|
930
|
-
];
|
|
931
|
-
var ShardFilter$ = [3, n0, _SF,
|
|
932
|
-
0,
|
|
933
|
-
[_Ty, _SIh, _Ti],
|
|
934
|
-
[0, 0, 4], 1
|
|
935
|
-
];
|
|
936
|
-
var SplitShardInput$ = [3, n0, _SSI,
|
|
937
|
-
0,
|
|
938
|
-
[_STS, _NSHK, _SN, _SARN, _SI],
|
|
939
|
-
[0, 0, 0, 0, 0], 2
|
|
940
|
-
];
|
|
941
|
-
var StartingPosition$ = [3, n0, _SP,
|
|
942
|
-
0,
|
|
943
|
-
[_Ty, _SNe, _Ti],
|
|
944
|
-
[0, 0, 4], 1
|
|
945
|
-
];
|
|
946
|
-
var StartStreamEncryptionInput$ = [3, n0, _SSEI,
|
|
947
|
-
0,
|
|
948
|
-
[_ET, _KI, _SN, _SARN, _SI],
|
|
949
|
-
[0, 0, 0, 0, 0], 2
|
|
950
|
-
];
|
|
951
|
-
var StopStreamEncryptionInput$ = [3, n0, _SSEIt,
|
|
952
|
-
0,
|
|
953
|
-
[_ET, _KI, _SN, _SARN, _SI],
|
|
954
|
-
[0, 0, 0, 0, 0], 2
|
|
955
|
-
];
|
|
956
|
-
var StreamDescription$ = [3, n0, _SD,
|
|
957
|
-
0,
|
|
958
|
-
[_SN, _SARN, _SSt, _S, _HMSa, _RPH, _SCT, _EMn, _SMD, _ET, _KI],
|
|
959
|
-
[0, 0, 0, () => ShardList, 2, 1, 4, () => EnhancedMonitoringList, () => StreamModeDetails$, 0, 0], 8
|
|
960
|
-
];
|
|
961
|
-
var StreamDescriptionSummary$ = [3, n0, _SDS,
|
|
962
|
-
0,
|
|
963
|
-
[_SN, _SARN, _SSt, _RPH, _SCT, _EMn, _OSC, _SI, _SMD, _ET, _KI, _CC, _WT, _MRSIKB],
|
|
964
|
-
[0, 0, 0, 1, 4, () => EnhancedMonitoringList, 1, 0, () => StreamModeDetails$, 0, 0, 1, () => WarmThroughputObject$, 1], 7
|
|
965
|
-
];
|
|
966
|
-
var StreamModeDetails$ = [3, n0, _SMD,
|
|
967
|
-
0,
|
|
968
|
-
[_SM],
|
|
969
|
-
[0], 1
|
|
970
|
-
];
|
|
971
|
-
var StreamSummary$ = [3, n0, _SStr,
|
|
972
|
-
0,
|
|
973
|
-
[_SN, _SARN, _SSt, _SMD, _SCT],
|
|
974
|
-
[0, 0, 0, () => StreamModeDetails$, 4], 3
|
|
975
|
-
];
|
|
976
|
-
var SubscribeToShardEvent$ = [3, n0, _STSE,
|
|
977
|
-
0,
|
|
978
|
-
[_R, _CSN, _MBL, _CSh],
|
|
979
|
-
[() => RecordList, 0, 1, () => ChildShardList], 3
|
|
980
|
-
];
|
|
981
|
-
var SubscribeToShardInput$ = [3, n0, _STSI,
|
|
982
|
-
0,
|
|
983
|
-
[_CARN, _SIh, _SP, _SI],
|
|
984
|
-
[0, 0, () => StartingPosition$, 0], 3
|
|
985
|
-
];
|
|
986
|
-
var SubscribeToShardOutput$ = [3, n0, _STSO,
|
|
987
|
-
0,
|
|
988
|
-
[_ES],
|
|
989
|
-
[[() => SubscribeToShardEventStream$, 0]], 1
|
|
990
|
-
];
|
|
991
|
-
var Tag$ = [3, n0, _Ta,
|
|
992
|
-
0,
|
|
993
|
-
[_K, _V],
|
|
994
|
-
[0, 0], 1
|
|
995
|
-
];
|
|
996
|
-
var TagResourceInput$ = [3, n0, _TRI,
|
|
997
|
-
0,
|
|
998
|
-
[_T, _RARN, _SI],
|
|
999
|
-
[128 | 0, 0, 0], 2
|
|
1000
|
-
];
|
|
1001
|
-
var UntagResourceInput$ = [3, n0, _URI,
|
|
1002
|
-
0,
|
|
1003
|
-
[_TK, _RARN, _SI],
|
|
1004
|
-
[64 | 0, 0, 0], 2
|
|
1005
|
-
];
|
|
1006
|
-
var UpdateAccountSettingsInput$ = [3, n0, _UASI,
|
|
1007
|
-
0,
|
|
1008
|
-
[_MTBC],
|
|
1009
|
-
[() => MinimumThroughputBillingCommitmentInput$], 1
|
|
1010
|
-
];
|
|
1011
|
-
var UpdateAccountSettingsOutput$ = [3, n0, _UASO,
|
|
1012
|
-
0,
|
|
1013
|
-
[_MTBC],
|
|
1014
|
-
[() => MinimumThroughputBillingCommitmentOutput$]
|
|
1015
|
-
];
|
|
1016
|
-
var UpdateMaxRecordSizeInput$ = [3, n0, _UMRSI,
|
|
1017
|
-
0,
|
|
1018
|
-
[_MRSIKB, _SARN, _SI],
|
|
1019
|
-
[1, 0, 0], 1
|
|
1020
|
-
];
|
|
1021
|
-
var UpdateShardCountInput$ = [3, n0, _USCI,
|
|
1022
|
-
0,
|
|
1023
|
-
[_TSC, _ST, _SN, _SARN, _SI],
|
|
1024
|
-
[1, 0, 0, 0, 0], 2
|
|
1025
|
-
];
|
|
1026
|
-
var UpdateShardCountOutput$ = [3, n0, _USCO,
|
|
1027
|
-
0,
|
|
1028
|
-
[_SN, _CSC, _TSC, _SARN],
|
|
1029
|
-
[0, 1, 1, 0]
|
|
1030
|
-
];
|
|
1031
|
-
var UpdateStreamModeInput$ = [3, n0, _USMI,
|
|
1032
|
-
0,
|
|
1033
|
-
[_SARN, _SMD, _SI, _WTMB],
|
|
1034
|
-
[0, () => StreamModeDetails$, 0, 1], 2
|
|
1035
|
-
];
|
|
1036
|
-
var UpdateStreamWarmThroughputInput$ = [3, n0, _USWTI,
|
|
1037
|
-
0,
|
|
1038
|
-
[_WTMB, _SARN, _SN, _SI],
|
|
1039
|
-
[1, 0, 0, 0], 1
|
|
1040
|
-
];
|
|
1041
|
-
var UpdateStreamWarmThroughputOutput$ = [3, n0, _USWTO,
|
|
1042
|
-
0,
|
|
1043
|
-
[_SARN, _SN, _WT],
|
|
1044
|
-
[0, 0, () => WarmThroughputObject$]
|
|
1045
|
-
];
|
|
1046
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1047
|
-
{ [_e]: _c },
|
|
1048
|
-
[_m],
|
|
1049
|
-
[0]
|
|
1050
|
-
];
|
|
1051
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1052
|
-
var WarmThroughputObject$ = [3, n0, _WTO,
|
|
1053
|
-
0,
|
|
1054
|
-
[_TMB, _CMB],
|
|
1055
|
-
[1, 1]
|
|
1056
|
-
];
|
|
1057
|
-
var __Unit = "unit";
|
|
1058
|
-
var KinesisServiceException$ = [-3, _sm, "KinesisServiceException", 0, [], []];
|
|
1059
|
-
schema.TypeRegistry.for(_sm).registerError(KinesisServiceException$, KinesisServiceException);
|
|
1060
|
-
var ChildShardList = [1, n0, _CSL,
|
|
1061
|
-
0, () => ChildShard$
|
|
1062
|
-
];
|
|
1063
|
-
var ConsumerList = [1, n0, _CL,
|
|
1064
|
-
0, () => Consumer$
|
|
1065
|
-
];
|
|
1066
|
-
var EnhancedMonitoringList = [1, n0, _EML,
|
|
1067
|
-
0, () => EnhancedMetrics$
|
|
1068
|
-
];
|
|
1069
|
-
var PutRecordsRequestEntryList = [1, n0, _PRREL,
|
|
1070
|
-
0, () => PutRecordsRequestEntry$
|
|
1071
|
-
];
|
|
1072
|
-
var PutRecordsResultEntryList = [1, n0, _PRRELu,
|
|
1073
|
-
0, () => PutRecordsResultEntry$
|
|
1074
|
-
];
|
|
1075
|
-
var RecordList = [1, n0, _RL,
|
|
1076
|
-
0, () => _Record$
|
|
1077
|
-
];
|
|
1078
|
-
var ShardList = [1, n0, _SLh,
|
|
1079
|
-
0, () => Shard$
|
|
1080
|
-
];
|
|
1081
|
-
var StreamSummaryList = [1, n0, _SSL,
|
|
1082
|
-
0, () => StreamSummary$
|
|
1083
|
-
];
|
|
1084
|
-
var TagList = [1, n0, _TL,
|
|
1085
|
-
0, () => Tag$
|
|
1086
|
-
];
|
|
1087
|
-
var SubscribeToShardEventStream$ = [4, n0, _STSES,
|
|
1088
|
-
{ [_st]: 1 },
|
|
1089
|
-
[_STSE, _RNFE, _RIUE, _KMSDE, _KMSISE, _KMSADE, _KMSNFE, _KMSOIR, _KMSTE, _IFE],
|
|
1090
|
-
[() => SubscribeToShardEvent$, [() => ResourceNotFoundException$, 0], [() => ResourceInUseException$, 0], [() => KMSDisabledException$, 0], [() => KMSInvalidStateException$, 0], [() => KMSAccessDeniedException$, 0], [() => KMSNotFoundException$, 0], [() => KMSOptInRequired$, 0], [() => KMSThrottlingException$, 0], [() => InternalFailureException$, 0]]
|
|
1091
|
-
];
|
|
1092
|
-
var AddTagsToStream$ = [9, n0, _ATTS,
|
|
1093
|
-
0, () => AddTagsToStreamInput$, () => __Unit
|
|
1094
|
-
];
|
|
1095
|
-
var CreateStream$ = [9, n0, _CSr,
|
|
1096
|
-
0, () => CreateStreamInput$, () => __Unit
|
|
1097
|
-
];
|
|
1098
|
-
var DecreaseStreamRetentionPeriod$ = [9, n0, _DSRP,
|
|
1099
|
-
0, () => DecreaseStreamRetentionPeriodInput$, () => __Unit
|
|
1100
|
-
];
|
|
1101
|
-
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
1102
|
-
0, () => DeleteResourcePolicyInput$, () => __Unit
|
|
1103
|
-
];
|
|
1104
|
-
var DeleteStream$ = [9, n0, _DS,
|
|
1105
|
-
0, () => DeleteStreamInput$, () => __Unit
|
|
1106
|
-
];
|
|
1107
|
-
var DeregisterStreamConsumer$ = [9, n0, _DSC,
|
|
1108
|
-
0, () => DeregisterStreamConsumerInput$, () => __Unit
|
|
1109
|
-
];
|
|
1110
|
-
var DescribeAccountSettings$ = [9, n0, _DAS,
|
|
1111
|
-
0, () => DescribeAccountSettingsInput$, () => DescribeAccountSettingsOutput$
|
|
1112
|
-
];
|
|
1113
|
-
var DescribeLimits$ = [9, n0, _DL,
|
|
1114
|
-
0, () => DescribeLimitsInput$, () => DescribeLimitsOutput$
|
|
1115
|
-
];
|
|
1116
|
-
var DescribeStream$ = [9, n0, _DSe,
|
|
1117
|
-
0, () => DescribeStreamInput$, () => DescribeStreamOutput$
|
|
1118
|
-
];
|
|
1119
|
-
var DescribeStreamConsumer$ = [9, n0, _DSCe,
|
|
1120
|
-
0, () => DescribeStreamConsumerInput$, () => DescribeStreamConsumerOutput$
|
|
1121
|
-
];
|
|
1122
|
-
var DescribeStreamSummary$ = [9, n0, _DSS,
|
|
1123
|
-
0, () => DescribeStreamSummaryInput$, () => DescribeStreamSummaryOutput$
|
|
1124
|
-
];
|
|
1125
|
-
var DisableEnhancedMonitoring$ = [9, n0, _DEM,
|
|
1126
|
-
0, () => DisableEnhancedMonitoringInput$, () => EnhancedMonitoringOutput$
|
|
1127
|
-
];
|
|
1128
|
-
var EnableEnhancedMonitoring$ = [9, n0, _EEM,
|
|
1129
|
-
0, () => EnableEnhancedMonitoringInput$, () => EnhancedMonitoringOutput$
|
|
1130
|
-
];
|
|
1131
|
-
var GetRecords$ = [9, n0, _GR,
|
|
1132
|
-
0, () => GetRecordsInput$, () => GetRecordsOutput$
|
|
1133
|
-
];
|
|
1134
|
-
var GetResourcePolicy$ = [9, n0, _GRP,
|
|
1135
|
-
0, () => GetResourcePolicyInput$, () => GetResourcePolicyOutput$
|
|
1136
|
-
];
|
|
1137
|
-
var GetShardIterator$ = [9, n0, _GSI,
|
|
1138
|
-
0, () => GetShardIteratorInput$, () => GetShardIteratorOutput$
|
|
1139
|
-
];
|
|
1140
|
-
var IncreaseStreamRetentionPeriod$ = [9, n0, _ISRP,
|
|
1141
|
-
0, () => IncreaseStreamRetentionPeriodInput$, () => __Unit
|
|
1142
|
-
];
|
|
1143
|
-
var ListShards$ = [9, n0, _LS,
|
|
1144
|
-
0, () => ListShardsInput$, () => ListShardsOutput$
|
|
1145
|
-
];
|
|
1146
|
-
var ListStreamConsumers$ = [9, n0, _LSC,
|
|
1147
|
-
0, () => ListStreamConsumersInput$, () => ListStreamConsumersOutput$
|
|
1148
|
-
];
|
|
1149
|
-
var ListStreams$ = [9, n0, _LSi,
|
|
1150
|
-
0, () => ListStreamsInput$, () => ListStreamsOutput$
|
|
1151
|
-
];
|
|
1152
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1153
|
-
0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
1154
|
-
];
|
|
1155
|
-
var ListTagsForStream$ = [9, n0, _LTFS,
|
|
1156
|
-
0, () => ListTagsForStreamInput$, () => ListTagsForStreamOutput$
|
|
1157
|
-
];
|
|
1158
|
-
var MergeShards$ = [9, n0, _MS,
|
|
1159
|
-
0, () => MergeShardsInput$, () => __Unit
|
|
1160
|
-
];
|
|
1161
|
-
var PutRecord$ = [9, n0, _PR,
|
|
1162
|
-
0, () => PutRecordInput$, () => PutRecordOutput$
|
|
1163
|
-
];
|
|
1164
|
-
var PutRecords$ = [9, n0, _PRu,
|
|
1165
|
-
0, () => PutRecordsInput$, () => PutRecordsOutput$
|
|
1166
|
-
];
|
|
1167
|
-
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
1168
|
-
0, () => PutResourcePolicyInput$, () => __Unit
|
|
1169
|
-
];
|
|
1170
|
-
var RegisterStreamConsumer$ = [9, n0, _RSC,
|
|
1171
|
-
0, () => RegisterStreamConsumerInput$, () => RegisterStreamConsumerOutput$
|
|
1172
|
-
];
|
|
1173
|
-
var RemoveTagsFromStream$ = [9, n0, _RTFS,
|
|
1174
|
-
0, () => RemoveTagsFromStreamInput$, () => __Unit
|
|
1175
|
-
];
|
|
1176
|
-
var SplitShard$ = [9, n0, _SSp,
|
|
1177
|
-
0, () => SplitShardInput$, () => __Unit
|
|
1178
|
-
];
|
|
1179
|
-
var StartStreamEncryption$ = [9, n0, _SSE,
|
|
1180
|
-
0, () => StartStreamEncryptionInput$, () => __Unit
|
|
1181
|
-
];
|
|
1182
|
-
var StopStreamEncryption$ = [9, n0, _SSEt,
|
|
1183
|
-
0, () => StopStreamEncryptionInput$, () => __Unit
|
|
1184
|
-
];
|
|
1185
|
-
var SubscribeToShard$ = [9, n0, _STSu,
|
|
1186
|
-
0, () => SubscribeToShardInput$, () => SubscribeToShardOutput$
|
|
1187
|
-
];
|
|
1188
|
-
var TagResource$ = [9, n0, _TR,
|
|
1189
|
-
0, () => TagResourceInput$, () => __Unit
|
|
1190
|
-
];
|
|
1191
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1192
|
-
0, () => UntagResourceInput$, () => __Unit
|
|
1193
|
-
];
|
|
1194
|
-
var UpdateAccountSettings$ = [9, n0, _UAS,
|
|
1195
|
-
0, () => UpdateAccountSettingsInput$, () => UpdateAccountSettingsOutput$
|
|
1196
|
-
];
|
|
1197
|
-
var UpdateMaxRecordSize$ = [9, n0, _UMRS,
|
|
1198
|
-
0, () => UpdateMaxRecordSizeInput$, () => __Unit
|
|
1199
|
-
];
|
|
1200
|
-
var UpdateShardCount$ = [9, n0, _USC,
|
|
1201
|
-
0, () => UpdateShardCountInput$, () => UpdateShardCountOutput$
|
|
1202
|
-
];
|
|
1203
|
-
var UpdateStreamMode$ = [9, n0, _USM,
|
|
1204
|
-
0, () => UpdateStreamModeInput$, () => __Unit
|
|
1205
|
-
];
|
|
1206
|
-
var UpdateStreamWarmThroughput$ = [9, n0, _USWT,
|
|
1207
|
-
0, () => UpdateStreamWarmThroughputInput$, () => UpdateStreamWarmThroughputOutput$
|
|
1208
|
-
];
|
|
1209
|
-
|
|
1210
119
|
class AddTagsToStreamCommand extends smithyClient.Command
|
|
1211
120
|
.classBuilder()
|
|
1212
121
|
.ep({
|
|
@@ -1220,7 +129,7 @@ class AddTagsToStreamCommand extends smithyClient.Command
|
|
|
1220
129
|
})
|
|
1221
130
|
.s("Kinesis_20131202", "AddTagsToStream", {})
|
|
1222
131
|
.n("KinesisClient", "AddTagsToStreamCommand")
|
|
1223
|
-
.sc(AddTagsToStream$)
|
|
132
|
+
.sc(schemas_0.AddTagsToStream$)
|
|
1224
133
|
.build() {
|
|
1225
134
|
}
|
|
1226
135
|
|
|
@@ -1232,7 +141,7 @@ class CreateStreamCommand extends smithyClient.Command
|
|
|
1232
141
|
})
|
|
1233
142
|
.s("Kinesis_20131202", "CreateStream", {})
|
|
1234
143
|
.n("KinesisClient", "CreateStreamCommand")
|
|
1235
|
-
.sc(CreateStream$)
|
|
144
|
+
.sc(schemas_0.CreateStream$)
|
|
1236
145
|
.build() {
|
|
1237
146
|
}
|
|
1238
147
|
|
|
@@ -1249,7 +158,7 @@ class DecreaseStreamRetentionPeriodCommand extends smithyClient.Command
|
|
|
1249
158
|
})
|
|
1250
159
|
.s("Kinesis_20131202", "DecreaseStreamRetentionPeriod", {})
|
|
1251
160
|
.n("KinesisClient", "DecreaseStreamRetentionPeriodCommand")
|
|
1252
|
-
.sc(DecreaseStreamRetentionPeriod$)
|
|
161
|
+
.sc(schemas_0.DecreaseStreamRetentionPeriod$)
|
|
1253
162
|
.build() {
|
|
1254
163
|
}
|
|
1255
164
|
|
|
@@ -1266,7 +175,7 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
|
1266
175
|
})
|
|
1267
176
|
.s("Kinesis_20131202", "DeleteResourcePolicy", {})
|
|
1268
177
|
.n("KinesisClient", "DeleteResourcePolicyCommand")
|
|
1269
|
-
.sc(DeleteResourcePolicy$)
|
|
178
|
+
.sc(schemas_0.DeleteResourcePolicy$)
|
|
1270
179
|
.build() {
|
|
1271
180
|
}
|
|
1272
181
|
|
|
@@ -1283,7 +192,7 @@ class DeleteStreamCommand extends smithyClient.Command
|
|
|
1283
192
|
})
|
|
1284
193
|
.s("Kinesis_20131202", "DeleteStream", {})
|
|
1285
194
|
.n("KinesisClient", "DeleteStreamCommand")
|
|
1286
|
-
.sc(DeleteStream$)
|
|
195
|
+
.sc(schemas_0.DeleteStream$)
|
|
1287
196
|
.build() {
|
|
1288
197
|
}
|
|
1289
198
|
|
|
@@ -1301,7 +210,7 @@ class DeregisterStreamConsumerCommand extends smithyClient.Command
|
|
|
1301
210
|
})
|
|
1302
211
|
.s("Kinesis_20131202", "DeregisterStreamConsumer", {})
|
|
1303
212
|
.n("KinesisClient", "DeregisterStreamConsumerCommand")
|
|
1304
|
-
.sc(DeregisterStreamConsumer$)
|
|
213
|
+
.sc(schemas_0.DeregisterStreamConsumer$)
|
|
1305
214
|
.build() {
|
|
1306
215
|
}
|
|
1307
216
|
|
|
@@ -1313,7 +222,7 @@ class DescribeAccountSettingsCommand extends smithyClient.Command
|
|
|
1313
222
|
})
|
|
1314
223
|
.s("Kinesis_20131202", "DescribeAccountSettings", {})
|
|
1315
224
|
.n("KinesisClient", "DescribeAccountSettingsCommand")
|
|
1316
|
-
.sc(DescribeAccountSettings$)
|
|
225
|
+
.sc(schemas_0.DescribeAccountSettings$)
|
|
1317
226
|
.build() {
|
|
1318
227
|
}
|
|
1319
228
|
|
|
@@ -1325,7 +234,7 @@ class DescribeLimitsCommand extends smithyClient.Command
|
|
|
1325
234
|
})
|
|
1326
235
|
.s("Kinesis_20131202", "DescribeLimits", {})
|
|
1327
236
|
.n("KinesisClient", "DescribeLimitsCommand")
|
|
1328
|
-
.sc(DescribeLimits$)
|
|
237
|
+
.sc(schemas_0.DescribeLimits$)
|
|
1329
238
|
.build() {
|
|
1330
239
|
}
|
|
1331
240
|
|
|
@@ -1342,7 +251,7 @@ class DescribeStreamCommand extends smithyClient.Command
|
|
|
1342
251
|
})
|
|
1343
252
|
.s("Kinesis_20131202", "DescribeStream", {})
|
|
1344
253
|
.n("KinesisClient", "DescribeStreamCommand")
|
|
1345
|
-
.sc(DescribeStream$)
|
|
254
|
+
.sc(schemas_0.DescribeStream$)
|
|
1346
255
|
.build() {
|
|
1347
256
|
}
|
|
1348
257
|
|
|
@@ -1360,7 +269,7 @@ class DescribeStreamConsumerCommand extends smithyClient.Command
|
|
|
1360
269
|
})
|
|
1361
270
|
.s("Kinesis_20131202", "DescribeStreamConsumer", {})
|
|
1362
271
|
.n("KinesisClient", "DescribeStreamConsumerCommand")
|
|
1363
|
-
.sc(DescribeStreamConsumer$)
|
|
272
|
+
.sc(schemas_0.DescribeStreamConsumer$)
|
|
1364
273
|
.build() {
|
|
1365
274
|
}
|
|
1366
275
|
|
|
@@ -1377,7 +286,7 @@ class DescribeStreamSummaryCommand extends smithyClient.Command
|
|
|
1377
286
|
})
|
|
1378
287
|
.s("Kinesis_20131202", "DescribeStreamSummary", {})
|
|
1379
288
|
.n("KinesisClient", "DescribeStreamSummaryCommand")
|
|
1380
|
-
.sc(DescribeStreamSummary$)
|
|
289
|
+
.sc(schemas_0.DescribeStreamSummary$)
|
|
1381
290
|
.build() {
|
|
1382
291
|
}
|
|
1383
292
|
|
|
@@ -1394,7 +303,7 @@ class DisableEnhancedMonitoringCommand extends smithyClient.Command
|
|
|
1394
303
|
})
|
|
1395
304
|
.s("Kinesis_20131202", "DisableEnhancedMonitoring", {})
|
|
1396
305
|
.n("KinesisClient", "DisableEnhancedMonitoringCommand")
|
|
1397
|
-
.sc(DisableEnhancedMonitoring$)
|
|
306
|
+
.sc(schemas_0.DisableEnhancedMonitoring$)
|
|
1398
307
|
.build() {
|
|
1399
308
|
}
|
|
1400
309
|
|
|
@@ -1411,7 +320,7 @@ class EnableEnhancedMonitoringCommand extends smithyClient.Command
|
|
|
1411
320
|
})
|
|
1412
321
|
.s("Kinesis_20131202", "EnableEnhancedMonitoring", {})
|
|
1413
322
|
.n("KinesisClient", "EnableEnhancedMonitoringCommand")
|
|
1414
|
-
.sc(EnableEnhancedMonitoring$)
|
|
323
|
+
.sc(schemas_0.EnableEnhancedMonitoring$)
|
|
1415
324
|
.build() {
|
|
1416
325
|
}
|
|
1417
326
|
|
|
@@ -1428,7 +337,7 @@ class GetRecordsCommand extends smithyClient.Command
|
|
|
1428
337
|
})
|
|
1429
338
|
.s("Kinesis_20131202", "GetRecords", {})
|
|
1430
339
|
.n("KinesisClient", "GetRecordsCommand")
|
|
1431
|
-
.sc(GetRecords$)
|
|
340
|
+
.sc(schemas_0.GetRecords$)
|
|
1432
341
|
.build() {
|
|
1433
342
|
}
|
|
1434
343
|
|
|
@@ -1445,7 +354,7 @@ class GetResourcePolicyCommand extends smithyClient.Command
|
|
|
1445
354
|
})
|
|
1446
355
|
.s("Kinesis_20131202", "GetResourcePolicy", {})
|
|
1447
356
|
.n("KinesisClient", "GetResourcePolicyCommand")
|
|
1448
|
-
.sc(GetResourcePolicy$)
|
|
357
|
+
.sc(schemas_0.GetResourcePolicy$)
|
|
1449
358
|
.build() {
|
|
1450
359
|
}
|
|
1451
360
|
|
|
@@ -1462,7 +371,7 @@ class GetShardIteratorCommand extends smithyClient.Command
|
|
|
1462
371
|
})
|
|
1463
372
|
.s("Kinesis_20131202", "GetShardIterator", {})
|
|
1464
373
|
.n("KinesisClient", "GetShardIteratorCommand")
|
|
1465
|
-
.sc(GetShardIterator$)
|
|
374
|
+
.sc(schemas_0.GetShardIterator$)
|
|
1466
375
|
.build() {
|
|
1467
376
|
}
|
|
1468
377
|
|
|
@@ -1479,7 +388,7 @@ class IncreaseStreamRetentionPeriodCommand extends smithyClient.Command
|
|
|
1479
388
|
})
|
|
1480
389
|
.s("Kinesis_20131202", "IncreaseStreamRetentionPeriod", {})
|
|
1481
390
|
.n("KinesisClient", "IncreaseStreamRetentionPeriodCommand")
|
|
1482
|
-
.sc(IncreaseStreamRetentionPeriod$)
|
|
391
|
+
.sc(schemas_0.IncreaseStreamRetentionPeriod$)
|
|
1483
392
|
.build() {
|
|
1484
393
|
}
|
|
1485
394
|
|
|
@@ -1496,7 +405,7 @@ class ListShardsCommand extends smithyClient.Command
|
|
|
1496
405
|
})
|
|
1497
406
|
.s("Kinesis_20131202", "ListShards", {})
|
|
1498
407
|
.n("KinesisClient", "ListShardsCommand")
|
|
1499
|
-
.sc(ListShards$)
|
|
408
|
+
.sc(schemas_0.ListShards$)
|
|
1500
409
|
.build() {
|
|
1501
410
|
}
|
|
1502
411
|
|
|
@@ -1513,7 +422,7 @@ class ListStreamConsumersCommand extends smithyClient.Command
|
|
|
1513
422
|
})
|
|
1514
423
|
.s("Kinesis_20131202", "ListStreamConsumers", {})
|
|
1515
424
|
.n("KinesisClient", "ListStreamConsumersCommand")
|
|
1516
|
-
.sc(ListStreamConsumers$)
|
|
425
|
+
.sc(schemas_0.ListStreamConsumers$)
|
|
1517
426
|
.build() {
|
|
1518
427
|
}
|
|
1519
428
|
|
|
@@ -1525,7 +434,7 @@ class ListStreamsCommand extends smithyClient.Command
|
|
|
1525
434
|
})
|
|
1526
435
|
.s("Kinesis_20131202", "ListStreams", {})
|
|
1527
436
|
.n("KinesisClient", "ListStreamsCommand")
|
|
1528
|
-
.sc(ListStreams$)
|
|
437
|
+
.sc(schemas_0.ListStreams$)
|
|
1529
438
|
.build() {
|
|
1530
439
|
}
|
|
1531
440
|
|
|
@@ -1542,7 +451,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1542
451
|
})
|
|
1543
452
|
.s("Kinesis_20131202", "ListTagsForResource", {})
|
|
1544
453
|
.n("KinesisClient", "ListTagsForResourceCommand")
|
|
1545
|
-
.sc(ListTagsForResource$)
|
|
454
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1546
455
|
.build() {
|
|
1547
456
|
}
|
|
1548
457
|
|
|
@@ -1559,7 +468,7 @@ class ListTagsForStreamCommand extends smithyClient.Command
|
|
|
1559
468
|
})
|
|
1560
469
|
.s("Kinesis_20131202", "ListTagsForStream", {})
|
|
1561
470
|
.n("KinesisClient", "ListTagsForStreamCommand")
|
|
1562
|
-
.sc(ListTagsForStream$)
|
|
471
|
+
.sc(schemas_0.ListTagsForStream$)
|
|
1563
472
|
.build() {
|
|
1564
473
|
}
|
|
1565
474
|
|
|
@@ -1576,7 +485,7 @@ class MergeShardsCommand extends smithyClient.Command
|
|
|
1576
485
|
})
|
|
1577
486
|
.s("Kinesis_20131202", "MergeShards", {})
|
|
1578
487
|
.n("KinesisClient", "MergeShardsCommand")
|
|
1579
|
-
.sc(MergeShards$)
|
|
488
|
+
.sc(schemas_0.MergeShards$)
|
|
1580
489
|
.build() {
|
|
1581
490
|
}
|
|
1582
491
|
|
|
@@ -1593,7 +502,7 @@ class PutRecordCommand extends smithyClient.Command
|
|
|
1593
502
|
})
|
|
1594
503
|
.s("Kinesis_20131202", "PutRecord", {})
|
|
1595
504
|
.n("KinesisClient", "PutRecordCommand")
|
|
1596
|
-
.sc(PutRecord$)
|
|
505
|
+
.sc(schemas_0.PutRecord$)
|
|
1597
506
|
.build() {
|
|
1598
507
|
}
|
|
1599
508
|
|
|
@@ -1610,7 +519,7 @@ class PutRecordsCommand extends smithyClient.Command
|
|
|
1610
519
|
})
|
|
1611
520
|
.s("Kinesis_20131202", "PutRecords", {})
|
|
1612
521
|
.n("KinesisClient", "PutRecordsCommand")
|
|
1613
|
-
.sc(PutRecords$)
|
|
522
|
+
.sc(schemas_0.PutRecords$)
|
|
1614
523
|
.build() {
|
|
1615
524
|
}
|
|
1616
525
|
|
|
@@ -1627,7 +536,7 @@ class PutResourcePolicyCommand extends smithyClient.Command
|
|
|
1627
536
|
})
|
|
1628
537
|
.s("Kinesis_20131202", "PutResourcePolicy", {})
|
|
1629
538
|
.n("KinesisClient", "PutResourcePolicyCommand")
|
|
1630
|
-
.sc(PutResourcePolicy$)
|
|
539
|
+
.sc(schemas_0.PutResourcePolicy$)
|
|
1631
540
|
.build() {
|
|
1632
541
|
}
|
|
1633
542
|
|
|
@@ -1644,7 +553,7 @@ class RegisterStreamConsumerCommand extends smithyClient.Command
|
|
|
1644
553
|
})
|
|
1645
554
|
.s("Kinesis_20131202", "RegisterStreamConsumer", {})
|
|
1646
555
|
.n("KinesisClient", "RegisterStreamConsumerCommand")
|
|
1647
|
-
.sc(RegisterStreamConsumer$)
|
|
556
|
+
.sc(schemas_0.RegisterStreamConsumer$)
|
|
1648
557
|
.build() {
|
|
1649
558
|
}
|
|
1650
559
|
|
|
@@ -1661,7 +570,7 @@ class RemoveTagsFromStreamCommand extends smithyClient.Command
|
|
|
1661
570
|
})
|
|
1662
571
|
.s("Kinesis_20131202", "RemoveTagsFromStream", {})
|
|
1663
572
|
.n("KinesisClient", "RemoveTagsFromStreamCommand")
|
|
1664
|
-
.sc(RemoveTagsFromStream$)
|
|
573
|
+
.sc(schemas_0.RemoveTagsFromStream$)
|
|
1665
574
|
.build() {
|
|
1666
575
|
}
|
|
1667
576
|
|
|
@@ -1678,7 +587,7 @@ class SplitShardCommand extends smithyClient.Command
|
|
|
1678
587
|
})
|
|
1679
588
|
.s("Kinesis_20131202", "SplitShard", {})
|
|
1680
589
|
.n("KinesisClient", "SplitShardCommand")
|
|
1681
|
-
.sc(SplitShard$)
|
|
590
|
+
.sc(schemas_0.SplitShard$)
|
|
1682
591
|
.build() {
|
|
1683
592
|
}
|
|
1684
593
|
|
|
@@ -1695,7 +604,7 @@ class StartStreamEncryptionCommand extends smithyClient.Command
|
|
|
1695
604
|
})
|
|
1696
605
|
.s("Kinesis_20131202", "StartStreamEncryption", {})
|
|
1697
606
|
.n("KinesisClient", "StartStreamEncryptionCommand")
|
|
1698
|
-
.sc(StartStreamEncryption$)
|
|
607
|
+
.sc(schemas_0.StartStreamEncryption$)
|
|
1699
608
|
.build() {
|
|
1700
609
|
}
|
|
1701
610
|
|
|
@@ -1712,7 +621,7 @@ class StopStreamEncryptionCommand extends smithyClient.Command
|
|
|
1712
621
|
})
|
|
1713
622
|
.s("Kinesis_20131202", "StopStreamEncryption", {})
|
|
1714
623
|
.n("KinesisClient", "StopStreamEncryptionCommand")
|
|
1715
|
-
.sc(StopStreamEncryption$)
|
|
624
|
+
.sc(schemas_0.StopStreamEncryption$)
|
|
1716
625
|
.build() {
|
|
1717
626
|
}
|
|
1718
627
|
|
|
@@ -1733,7 +642,7 @@ class SubscribeToShardCommand extends smithyClient.Command
|
|
|
1733
642
|
},
|
|
1734
643
|
})
|
|
1735
644
|
.n("KinesisClient", "SubscribeToShardCommand")
|
|
1736
|
-
.sc(SubscribeToShard$)
|
|
645
|
+
.sc(schemas_0.SubscribeToShard$)
|
|
1737
646
|
.build() {
|
|
1738
647
|
}
|
|
1739
648
|
|
|
@@ -1750,7 +659,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1750
659
|
})
|
|
1751
660
|
.s("Kinesis_20131202", "TagResource", {})
|
|
1752
661
|
.n("KinesisClient", "TagResourceCommand")
|
|
1753
|
-
.sc(TagResource$)
|
|
662
|
+
.sc(schemas_0.TagResource$)
|
|
1754
663
|
.build() {
|
|
1755
664
|
}
|
|
1756
665
|
|
|
@@ -1767,7 +676,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1767
676
|
})
|
|
1768
677
|
.s("Kinesis_20131202", "UntagResource", {})
|
|
1769
678
|
.n("KinesisClient", "UntagResourceCommand")
|
|
1770
|
-
.sc(UntagResource$)
|
|
679
|
+
.sc(schemas_0.UntagResource$)
|
|
1771
680
|
.build() {
|
|
1772
681
|
}
|
|
1773
682
|
|
|
@@ -1779,7 +688,7 @@ class UpdateAccountSettingsCommand extends smithyClient.Command
|
|
|
1779
688
|
})
|
|
1780
689
|
.s("Kinesis_20131202", "UpdateAccountSettings", {})
|
|
1781
690
|
.n("KinesisClient", "UpdateAccountSettingsCommand")
|
|
1782
|
-
.sc(UpdateAccountSettings$)
|
|
691
|
+
.sc(schemas_0.UpdateAccountSettings$)
|
|
1783
692
|
.build() {
|
|
1784
693
|
}
|
|
1785
694
|
|
|
@@ -1796,7 +705,7 @@ class UpdateMaxRecordSizeCommand extends smithyClient.Command
|
|
|
1796
705
|
})
|
|
1797
706
|
.s("Kinesis_20131202", "UpdateMaxRecordSize", {})
|
|
1798
707
|
.n("KinesisClient", "UpdateMaxRecordSizeCommand")
|
|
1799
|
-
.sc(UpdateMaxRecordSize$)
|
|
708
|
+
.sc(schemas_0.UpdateMaxRecordSize$)
|
|
1800
709
|
.build() {
|
|
1801
710
|
}
|
|
1802
711
|
|
|
@@ -1813,7 +722,7 @@ class UpdateShardCountCommand extends smithyClient.Command
|
|
|
1813
722
|
})
|
|
1814
723
|
.s("Kinesis_20131202", "UpdateShardCount", {})
|
|
1815
724
|
.n("KinesisClient", "UpdateShardCountCommand")
|
|
1816
|
-
.sc(UpdateShardCount$)
|
|
725
|
+
.sc(schemas_0.UpdateShardCount$)
|
|
1817
726
|
.build() {
|
|
1818
727
|
}
|
|
1819
728
|
|
|
@@ -1830,7 +739,7 @@ class UpdateStreamModeCommand extends smithyClient.Command
|
|
|
1830
739
|
})
|
|
1831
740
|
.s("Kinesis_20131202", "UpdateStreamMode", {})
|
|
1832
741
|
.n("KinesisClient", "UpdateStreamModeCommand")
|
|
1833
|
-
.sc(UpdateStreamMode$)
|
|
742
|
+
.sc(schemas_0.UpdateStreamMode$)
|
|
1834
743
|
.build() {
|
|
1835
744
|
}
|
|
1836
745
|
|
|
@@ -1847,7 +756,7 @@ class UpdateStreamWarmThroughputCommand extends smithyClient.Command
|
|
|
1847
756
|
})
|
|
1848
757
|
.s("Kinesis_20131202", "UpdateStreamWarmThroughput", {})
|
|
1849
758
|
.n("KinesisClient", "UpdateStreamWarmThroughputCommand")
|
|
1850
|
-
.sc(UpdateStreamWarmThroughput$)
|
|
759
|
+
.sc(schemas_0.UpdateStreamWarmThroughput$)
|
|
1851
760
|
.build() {
|
|
1852
761
|
}
|
|
1853
762
|
|
|
@@ -2027,215 +936,76 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2027
936
|
enumerable: true,
|
|
2028
937
|
get: function () { return smithyClient.Client; }
|
|
2029
938
|
});
|
|
2030
|
-
exports
|
|
2031
|
-
|
|
2032
|
-
|
|
939
|
+
Object.defineProperty(exports, "KinesisServiceException", {
|
|
940
|
+
enumerable: true,
|
|
941
|
+
get: function () { return KinesisServiceException.KinesisServiceException; }
|
|
942
|
+
});
|
|
2033
943
|
exports.AddTagsToStreamCommand = AddTagsToStreamCommand;
|
|
2034
|
-
exports.AddTagsToStreamInput$ = AddTagsToStreamInput$;
|
|
2035
|
-
exports.ChildShard$ = ChildShard$;
|
|
2036
|
-
exports.Consumer$ = Consumer$;
|
|
2037
|
-
exports.ConsumerDescription$ = ConsumerDescription$;
|
|
2038
944
|
exports.ConsumerStatus = ConsumerStatus;
|
|
2039
|
-
exports.CreateStream$ = CreateStream$;
|
|
2040
945
|
exports.CreateStreamCommand = CreateStreamCommand;
|
|
2041
|
-
exports.CreateStreamInput$ = CreateStreamInput$;
|
|
2042
|
-
exports.DecreaseStreamRetentionPeriod$ = DecreaseStreamRetentionPeriod$;
|
|
2043
946
|
exports.DecreaseStreamRetentionPeriodCommand = DecreaseStreamRetentionPeriodCommand;
|
|
2044
|
-
exports.DecreaseStreamRetentionPeriodInput$ = DecreaseStreamRetentionPeriodInput$;
|
|
2045
|
-
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
2046
947
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
2047
|
-
exports.DeleteResourcePolicyInput$ = DeleteResourcePolicyInput$;
|
|
2048
|
-
exports.DeleteStream$ = DeleteStream$;
|
|
2049
948
|
exports.DeleteStreamCommand = DeleteStreamCommand;
|
|
2050
|
-
exports.DeleteStreamInput$ = DeleteStreamInput$;
|
|
2051
|
-
exports.DeregisterStreamConsumer$ = DeregisterStreamConsumer$;
|
|
2052
949
|
exports.DeregisterStreamConsumerCommand = DeregisterStreamConsumerCommand;
|
|
2053
|
-
exports.DeregisterStreamConsumerInput$ = DeregisterStreamConsumerInput$;
|
|
2054
|
-
exports.DescribeAccountSettings$ = DescribeAccountSettings$;
|
|
2055
950
|
exports.DescribeAccountSettingsCommand = DescribeAccountSettingsCommand;
|
|
2056
|
-
exports.DescribeAccountSettingsInput$ = DescribeAccountSettingsInput$;
|
|
2057
|
-
exports.DescribeAccountSettingsOutput$ = DescribeAccountSettingsOutput$;
|
|
2058
|
-
exports.DescribeLimits$ = DescribeLimits$;
|
|
2059
951
|
exports.DescribeLimitsCommand = DescribeLimitsCommand;
|
|
2060
|
-
exports.DescribeLimitsInput$ = DescribeLimitsInput$;
|
|
2061
|
-
exports.DescribeLimitsOutput$ = DescribeLimitsOutput$;
|
|
2062
|
-
exports.DescribeStream$ = DescribeStream$;
|
|
2063
952
|
exports.DescribeStreamCommand = DescribeStreamCommand;
|
|
2064
|
-
exports.DescribeStreamConsumer$ = DescribeStreamConsumer$;
|
|
2065
953
|
exports.DescribeStreamConsumerCommand = DescribeStreamConsumerCommand;
|
|
2066
|
-
exports.DescribeStreamConsumerInput$ = DescribeStreamConsumerInput$;
|
|
2067
|
-
exports.DescribeStreamConsumerOutput$ = DescribeStreamConsumerOutput$;
|
|
2068
|
-
exports.DescribeStreamInput$ = DescribeStreamInput$;
|
|
2069
|
-
exports.DescribeStreamOutput$ = DescribeStreamOutput$;
|
|
2070
|
-
exports.DescribeStreamSummary$ = DescribeStreamSummary$;
|
|
2071
954
|
exports.DescribeStreamSummaryCommand = DescribeStreamSummaryCommand;
|
|
2072
|
-
exports.DescribeStreamSummaryInput$ = DescribeStreamSummaryInput$;
|
|
2073
|
-
exports.DescribeStreamSummaryOutput$ = DescribeStreamSummaryOutput$;
|
|
2074
|
-
exports.DisableEnhancedMonitoring$ = DisableEnhancedMonitoring$;
|
|
2075
955
|
exports.DisableEnhancedMonitoringCommand = DisableEnhancedMonitoringCommand;
|
|
2076
|
-
exports.DisableEnhancedMonitoringInput$ = DisableEnhancedMonitoringInput$;
|
|
2077
|
-
exports.EnableEnhancedMonitoring$ = EnableEnhancedMonitoring$;
|
|
2078
956
|
exports.EnableEnhancedMonitoringCommand = EnableEnhancedMonitoringCommand;
|
|
2079
|
-
exports.EnableEnhancedMonitoringInput$ = EnableEnhancedMonitoringInput$;
|
|
2080
957
|
exports.EncryptionType = EncryptionType;
|
|
2081
|
-
exports.EnhancedMetrics$ = EnhancedMetrics$;
|
|
2082
|
-
exports.EnhancedMonitoringOutput$ = EnhancedMonitoringOutput$;
|
|
2083
|
-
exports.ExpiredIteratorException = ExpiredIteratorException;
|
|
2084
|
-
exports.ExpiredIteratorException$ = ExpiredIteratorException$;
|
|
2085
|
-
exports.ExpiredNextTokenException = ExpiredNextTokenException;
|
|
2086
|
-
exports.ExpiredNextTokenException$ = ExpiredNextTokenException$;
|
|
2087
|
-
exports.GetRecords$ = GetRecords$;
|
|
2088
958
|
exports.GetRecordsCommand = GetRecordsCommand;
|
|
2089
|
-
exports.GetRecordsInput$ = GetRecordsInput$;
|
|
2090
|
-
exports.GetRecordsOutput$ = GetRecordsOutput$;
|
|
2091
|
-
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
2092
959
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
2093
|
-
exports.GetResourcePolicyInput$ = GetResourcePolicyInput$;
|
|
2094
|
-
exports.GetResourcePolicyOutput$ = GetResourcePolicyOutput$;
|
|
2095
|
-
exports.GetShardIterator$ = GetShardIterator$;
|
|
2096
960
|
exports.GetShardIteratorCommand = GetShardIteratorCommand;
|
|
2097
|
-
exports.GetShardIteratorInput$ = GetShardIteratorInput$;
|
|
2098
|
-
exports.GetShardIteratorOutput$ = GetShardIteratorOutput$;
|
|
2099
|
-
exports.HashKeyRange$ = HashKeyRange$;
|
|
2100
|
-
exports.IncreaseStreamRetentionPeriod$ = IncreaseStreamRetentionPeriod$;
|
|
2101
961
|
exports.IncreaseStreamRetentionPeriodCommand = IncreaseStreamRetentionPeriodCommand;
|
|
2102
|
-
exports.IncreaseStreamRetentionPeriodInput$ = IncreaseStreamRetentionPeriodInput$;
|
|
2103
|
-
exports.InternalFailureException = InternalFailureException;
|
|
2104
|
-
exports.InternalFailureException$ = InternalFailureException$;
|
|
2105
|
-
exports.InvalidArgumentException = InvalidArgumentException;
|
|
2106
|
-
exports.InvalidArgumentException$ = InvalidArgumentException$;
|
|
2107
|
-
exports.KMSAccessDeniedException = KMSAccessDeniedException;
|
|
2108
|
-
exports.KMSAccessDeniedException$ = KMSAccessDeniedException$;
|
|
2109
|
-
exports.KMSDisabledException = KMSDisabledException;
|
|
2110
|
-
exports.KMSDisabledException$ = KMSDisabledException$;
|
|
2111
|
-
exports.KMSInvalidStateException = KMSInvalidStateException;
|
|
2112
|
-
exports.KMSInvalidStateException$ = KMSInvalidStateException$;
|
|
2113
|
-
exports.KMSNotFoundException = KMSNotFoundException;
|
|
2114
|
-
exports.KMSNotFoundException$ = KMSNotFoundException$;
|
|
2115
|
-
exports.KMSOptInRequired = KMSOptInRequired;
|
|
2116
|
-
exports.KMSOptInRequired$ = KMSOptInRequired$;
|
|
2117
|
-
exports.KMSThrottlingException = KMSThrottlingException;
|
|
2118
|
-
exports.KMSThrottlingException$ = KMSThrottlingException$;
|
|
2119
962
|
exports.Kinesis = Kinesis;
|
|
2120
963
|
exports.KinesisClient = KinesisClient;
|
|
2121
|
-
exports.KinesisServiceException = KinesisServiceException;
|
|
2122
|
-
exports.KinesisServiceException$ = KinesisServiceException$;
|
|
2123
|
-
exports.LimitExceededException = LimitExceededException;
|
|
2124
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
2125
|
-
exports.ListShards$ = ListShards$;
|
|
2126
964
|
exports.ListShardsCommand = ListShardsCommand;
|
|
2127
|
-
exports.ListShardsInput$ = ListShardsInput$;
|
|
2128
|
-
exports.ListShardsOutput$ = ListShardsOutput$;
|
|
2129
|
-
exports.ListStreamConsumers$ = ListStreamConsumers$;
|
|
2130
965
|
exports.ListStreamConsumersCommand = ListStreamConsumersCommand;
|
|
2131
|
-
exports.ListStreamConsumersInput$ = ListStreamConsumersInput$;
|
|
2132
|
-
exports.ListStreamConsumersOutput$ = ListStreamConsumersOutput$;
|
|
2133
|
-
exports.ListStreams$ = ListStreams$;
|
|
2134
966
|
exports.ListStreamsCommand = ListStreamsCommand;
|
|
2135
|
-
exports.ListStreamsInput$ = ListStreamsInput$;
|
|
2136
|
-
exports.ListStreamsOutput$ = ListStreamsOutput$;
|
|
2137
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2138
967
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2139
|
-
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
2140
|
-
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
2141
|
-
exports.ListTagsForStream$ = ListTagsForStream$;
|
|
2142
968
|
exports.ListTagsForStreamCommand = ListTagsForStreamCommand;
|
|
2143
|
-
exports.ListTagsForStreamInput$ = ListTagsForStreamInput$;
|
|
2144
|
-
exports.ListTagsForStreamOutput$ = ListTagsForStreamOutput$;
|
|
2145
|
-
exports.MergeShards$ = MergeShards$;
|
|
2146
969
|
exports.MergeShardsCommand = MergeShardsCommand;
|
|
2147
|
-
exports.MergeShardsInput$ = MergeShardsInput$;
|
|
2148
970
|
exports.MetricsName = MetricsName;
|
|
2149
|
-
exports.MinimumThroughputBillingCommitmentInput$ = MinimumThroughputBillingCommitmentInput$;
|
|
2150
971
|
exports.MinimumThroughputBillingCommitmentInputStatus = MinimumThroughputBillingCommitmentInputStatus;
|
|
2151
|
-
exports.MinimumThroughputBillingCommitmentOutput$ = MinimumThroughputBillingCommitmentOutput$;
|
|
2152
972
|
exports.MinimumThroughputBillingCommitmentOutputStatus = MinimumThroughputBillingCommitmentOutputStatus;
|
|
2153
|
-
exports.ProvisionedThroughputExceededException = ProvisionedThroughputExceededException;
|
|
2154
|
-
exports.ProvisionedThroughputExceededException$ = ProvisionedThroughputExceededException$;
|
|
2155
|
-
exports.PutRecord$ = PutRecord$;
|
|
2156
973
|
exports.PutRecordCommand = PutRecordCommand;
|
|
2157
|
-
exports.PutRecordInput$ = PutRecordInput$;
|
|
2158
|
-
exports.PutRecordOutput$ = PutRecordOutput$;
|
|
2159
|
-
exports.PutRecords$ = PutRecords$;
|
|
2160
974
|
exports.PutRecordsCommand = PutRecordsCommand;
|
|
2161
|
-
exports.PutRecordsInput$ = PutRecordsInput$;
|
|
2162
|
-
exports.PutRecordsOutput$ = PutRecordsOutput$;
|
|
2163
|
-
exports.PutRecordsRequestEntry$ = PutRecordsRequestEntry$;
|
|
2164
|
-
exports.PutRecordsResultEntry$ = PutRecordsResultEntry$;
|
|
2165
|
-
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
2166
975
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
2167
|
-
exports.PutResourcePolicyInput$ = PutResourcePolicyInput$;
|
|
2168
|
-
exports.RegisterStreamConsumer$ = RegisterStreamConsumer$;
|
|
2169
976
|
exports.RegisterStreamConsumerCommand = RegisterStreamConsumerCommand;
|
|
2170
|
-
exports.RegisterStreamConsumerInput$ = RegisterStreamConsumerInput$;
|
|
2171
|
-
exports.RegisterStreamConsumerOutput$ = RegisterStreamConsumerOutput$;
|
|
2172
|
-
exports.RemoveTagsFromStream$ = RemoveTagsFromStream$;
|
|
2173
977
|
exports.RemoveTagsFromStreamCommand = RemoveTagsFromStreamCommand;
|
|
2174
|
-
exports.RemoveTagsFromStreamInput$ = RemoveTagsFromStreamInput$;
|
|
2175
|
-
exports.ResourceInUseException = ResourceInUseException;
|
|
2176
|
-
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
2177
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2178
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2179
978
|
exports.ScalingType = ScalingType;
|
|
2180
|
-
exports.SequenceNumberRange$ = SequenceNumberRange$;
|
|
2181
|
-
exports.Shard$ = Shard$;
|
|
2182
|
-
exports.ShardFilter$ = ShardFilter$;
|
|
2183
979
|
exports.ShardFilterType = ShardFilterType;
|
|
2184
980
|
exports.ShardIteratorType = ShardIteratorType;
|
|
2185
|
-
exports.SplitShard$ = SplitShard$;
|
|
2186
981
|
exports.SplitShardCommand = SplitShardCommand;
|
|
2187
|
-
exports.SplitShardInput$ = SplitShardInput$;
|
|
2188
|
-
exports.StartStreamEncryption$ = StartStreamEncryption$;
|
|
2189
982
|
exports.StartStreamEncryptionCommand = StartStreamEncryptionCommand;
|
|
2190
|
-
exports.StartStreamEncryptionInput$ = StartStreamEncryptionInput$;
|
|
2191
|
-
exports.StartingPosition$ = StartingPosition$;
|
|
2192
|
-
exports.StopStreamEncryption$ = StopStreamEncryption$;
|
|
2193
983
|
exports.StopStreamEncryptionCommand = StopStreamEncryptionCommand;
|
|
2194
|
-
exports.StopStreamEncryptionInput$ = StopStreamEncryptionInput$;
|
|
2195
|
-
exports.StreamDescription$ = StreamDescription$;
|
|
2196
|
-
exports.StreamDescriptionSummary$ = StreamDescriptionSummary$;
|
|
2197
984
|
exports.StreamMode = StreamMode;
|
|
2198
|
-
exports.StreamModeDetails$ = StreamModeDetails$;
|
|
2199
985
|
exports.StreamStatus = StreamStatus;
|
|
2200
|
-
exports.StreamSummary$ = StreamSummary$;
|
|
2201
|
-
exports.SubscribeToShard$ = SubscribeToShard$;
|
|
2202
986
|
exports.SubscribeToShardCommand = SubscribeToShardCommand;
|
|
2203
|
-
exports.SubscribeToShardEvent$ = SubscribeToShardEvent$;
|
|
2204
|
-
exports.SubscribeToShardEventStream$ = SubscribeToShardEventStream$;
|
|
2205
|
-
exports.SubscribeToShardInput$ = SubscribeToShardInput$;
|
|
2206
|
-
exports.SubscribeToShardOutput$ = SubscribeToShardOutput$;
|
|
2207
|
-
exports.Tag$ = Tag$;
|
|
2208
|
-
exports.TagResource$ = TagResource$;
|
|
2209
987
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2210
|
-
exports.TagResourceInput$ = TagResourceInput$;
|
|
2211
|
-
exports.UntagResource$ = UntagResource$;
|
|
2212
988
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2213
|
-
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
2214
|
-
exports.UpdateAccountSettings$ = UpdateAccountSettings$;
|
|
2215
989
|
exports.UpdateAccountSettingsCommand = UpdateAccountSettingsCommand;
|
|
2216
|
-
exports.UpdateAccountSettingsInput$ = UpdateAccountSettingsInput$;
|
|
2217
|
-
exports.UpdateAccountSettingsOutput$ = UpdateAccountSettingsOutput$;
|
|
2218
|
-
exports.UpdateMaxRecordSize$ = UpdateMaxRecordSize$;
|
|
2219
990
|
exports.UpdateMaxRecordSizeCommand = UpdateMaxRecordSizeCommand;
|
|
2220
|
-
exports.UpdateMaxRecordSizeInput$ = UpdateMaxRecordSizeInput$;
|
|
2221
|
-
exports.UpdateShardCount$ = UpdateShardCount$;
|
|
2222
991
|
exports.UpdateShardCountCommand = UpdateShardCountCommand;
|
|
2223
|
-
exports.UpdateShardCountInput$ = UpdateShardCountInput$;
|
|
2224
|
-
exports.UpdateShardCountOutput$ = UpdateShardCountOutput$;
|
|
2225
|
-
exports.UpdateStreamMode$ = UpdateStreamMode$;
|
|
2226
992
|
exports.UpdateStreamModeCommand = UpdateStreamModeCommand;
|
|
2227
|
-
exports.UpdateStreamModeInput$ = UpdateStreamModeInput$;
|
|
2228
|
-
exports.UpdateStreamWarmThroughput$ = UpdateStreamWarmThroughput$;
|
|
2229
993
|
exports.UpdateStreamWarmThroughputCommand = UpdateStreamWarmThroughputCommand;
|
|
2230
|
-
exports.UpdateStreamWarmThroughputInput$ = UpdateStreamWarmThroughputInput$;
|
|
2231
|
-
exports.UpdateStreamWarmThroughputOutput$ = UpdateStreamWarmThroughputOutput$;
|
|
2232
|
-
exports.ValidationException = ValidationException;
|
|
2233
|
-
exports.ValidationException$ = ValidationException$;
|
|
2234
|
-
exports.WarmThroughputObject$ = WarmThroughputObject$;
|
|
2235
|
-
exports._Record$ = _Record$;
|
|
2236
994
|
exports.paginateListStreamConsumers = paginateListStreamConsumers;
|
|
2237
995
|
exports.paginateListStreams = paginateListStreams;
|
|
2238
996
|
exports.waitForStreamExists = waitForStreamExists;
|
|
2239
997
|
exports.waitForStreamNotExists = waitForStreamNotExists;
|
|
2240
998
|
exports.waitUntilStreamExists = waitUntilStreamExists;
|
|
2241
999
|
exports.waitUntilStreamNotExists = waitUntilStreamNotExists;
|
|
1000
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1001
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1002
|
+
enumerable: true,
|
|
1003
|
+
get: function () { return schemas_0[k]; }
|
|
1004
|
+
});
|
|
1005
|
+
});
|
|
1006
|
+
Object.keys(errors).forEach(function (k) {
|
|
1007
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1008
|
+
enumerable: true,
|
|
1009
|
+
get: function () { return errors[k]; }
|
|
1010
|
+
});
|
|
1011
|
+
});
|