@aws-sdk/client-kinesis-analytics 3.721.0 → 3.726.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 +171 -130
- package/dist-es/KinesisAnalyticsClient.js +1 -0
- package/dist-es/models/models_0.js +26 -24
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -159,7 +159,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
159
159
|
}, "resolveRuntimeExtensions");
|
|
160
160
|
|
|
161
161
|
// src/KinesisAnalyticsClient.ts
|
|
162
|
-
var
|
|
162
|
+
var KinesisAnalyticsClient = class extends import_smithy_client.Client {
|
|
163
|
+
static {
|
|
164
|
+
__name(this, "KinesisAnalyticsClient");
|
|
165
|
+
}
|
|
166
|
+
/**
|
|
167
|
+
* The resolved configuration of KinesisAnalyticsClient class. This is resolved and normalized from the {@link KinesisAnalyticsClientConfig | constructor configuration interface}.
|
|
168
|
+
*/
|
|
169
|
+
config;
|
|
163
170
|
constructor(...[configuration]) {
|
|
164
171
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
165
172
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -169,7 +176,7 @@ var _KinesisAnalyticsClient = class _KinesisAnalyticsClient extends import_smith
|
|
|
169
176
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
170
177
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
171
178
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
172
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
179
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
173
180
|
super(_config_8);
|
|
174
181
|
this.config = _config_8;
|
|
175
182
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -197,8 +204,6 @@ var _KinesisAnalyticsClient = class _KinesisAnalyticsClient extends import_smith
|
|
|
197
204
|
super.destroy();
|
|
198
205
|
}
|
|
199
206
|
};
|
|
200
|
-
__name(_KinesisAnalyticsClient, "KinesisAnalyticsClient");
|
|
201
|
-
var KinesisAnalyticsClient = _KinesisAnalyticsClient;
|
|
202
207
|
|
|
203
208
|
// src/KinesisAnalytics.ts
|
|
204
209
|
|
|
@@ -215,7 +220,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
215
220
|
|
|
216
221
|
// src/models/KinesisAnalyticsServiceException.ts
|
|
217
222
|
|
|
218
|
-
var
|
|
223
|
+
var KinesisAnalyticsServiceException = class _KinesisAnalyticsServiceException extends import_smithy_client.ServiceException {
|
|
224
|
+
static {
|
|
225
|
+
__name(this, "KinesisAnalyticsServiceException");
|
|
226
|
+
}
|
|
219
227
|
/**
|
|
220
228
|
* @internal
|
|
221
229
|
*/
|
|
@@ -224,11 +232,14 @@ var _KinesisAnalyticsServiceException = class _KinesisAnalyticsServiceException
|
|
|
224
232
|
Object.setPrototypeOf(this, _KinesisAnalyticsServiceException.prototype);
|
|
225
233
|
}
|
|
226
234
|
};
|
|
227
|
-
__name(_KinesisAnalyticsServiceException, "KinesisAnalyticsServiceException");
|
|
228
|
-
var KinesisAnalyticsServiceException = _KinesisAnalyticsServiceException;
|
|
229
235
|
|
|
230
236
|
// src/models/models_0.ts
|
|
231
|
-
var
|
|
237
|
+
var ConcurrentModificationException = class _ConcurrentModificationException extends KinesisAnalyticsServiceException {
|
|
238
|
+
static {
|
|
239
|
+
__name(this, "ConcurrentModificationException");
|
|
240
|
+
}
|
|
241
|
+
name = "ConcurrentModificationException";
|
|
242
|
+
$fault = "client";
|
|
232
243
|
/**
|
|
233
244
|
* @internal
|
|
234
245
|
*/
|
|
@@ -238,14 +249,15 @@ var _ConcurrentModificationException = class _ConcurrentModificationException ex
|
|
|
238
249
|
$fault: "client",
|
|
239
250
|
...opts
|
|
240
251
|
});
|
|
241
|
-
this.name = "ConcurrentModificationException";
|
|
242
|
-
this.$fault = "client";
|
|
243
252
|
Object.setPrototypeOf(this, _ConcurrentModificationException.prototype);
|
|
244
253
|
}
|
|
245
254
|
};
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
255
|
+
var InvalidArgumentException = class _InvalidArgumentException extends KinesisAnalyticsServiceException {
|
|
256
|
+
static {
|
|
257
|
+
__name(this, "InvalidArgumentException");
|
|
258
|
+
}
|
|
259
|
+
name = "InvalidArgumentException";
|
|
260
|
+
$fault = "client";
|
|
249
261
|
/**
|
|
250
262
|
* @internal
|
|
251
263
|
*/
|
|
@@ -255,14 +267,15 @@ var _InvalidArgumentException = class _InvalidArgumentException extends KinesisA
|
|
|
255
267
|
$fault: "client",
|
|
256
268
|
...opts
|
|
257
269
|
});
|
|
258
|
-
this.name = "InvalidArgumentException";
|
|
259
|
-
this.$fault = "client";
|
|
260
270
|
Object.setPrototypeOf(this, _InvalidArgumentException.prototype);
|
|
261
271
|
}
|
|
262
272
|
};
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
273
|
+
var ResourceInUseException = class _ResourceInUseException extends KinesisAnalyticsServiceException {
|
|
274
|
+
static {
|
|
275
|
+
__name(this, "ResourceInUseException");
|
|
276
|
+
}
|
|
277
|
+
name = "ResourceInUseException";
|
|
278
|
+
$fault = "client";
|
|
266
279
|
/**
|
|
267
280
|
* @internal
|
|
268
281
|
*/
|
|
@@ -272,14 +285,15 @@ var _ResourceInUseException = class _ResourceInUseException extends KinesisAnaly
|
|
|
272
285
|
$fault: "client",
|
|
273
286
|
...opts
|
|
274
287
|
});
|
|
275
|
-
this.name = "ResourceInUseException";
|
|
276
|
-
this.$fault = "client";
|
|
277
288
|
Object.setPrototypeOf(this, _ResourceInUseException.prototype);
|
|
278
289
|
}
|
|
279
290
|
};
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
291
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends KinesisAnalyticsServiceException {
|
|
292
|
+
static {
|
|
293
|
+
__name(this, "ResourceNotFoundException");
|
|
294
|
+
}
|
|
295
|
+
name = "ResourceNotFoundException";
|
|
296
|
+
$fault = "client";
|
|
283
297
|
/**
|
|
284
298
|
* @internal
|
|
285
299
|
*/
|
|
@@ -289,14 +303,15 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Kinesi
|
|
|
289
303
|
$fault: "client",
|
|
290
304
|
...opts
|
|
291
305
|
});
|
|
292
|
-
this.name = "ResourceNotFoundException";
|
|
293
|
-
this.$fault = "client";
|
|
294
306
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
295
307
|
}
|
|
296
308
|
};
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
309
|
+
var UnsupportedOperationException = class _UnsupportedOperationException extends KinesisAnalyticsServiceException {
|
|
310
|
+
static {
|
|
311
|
+
__name(this, "UnsupportedOperationException");
|
|
312
|
+
}
|
|
313
|
+
name = "UnsupportedOperationException";
|
|
314
|
+
$fault = "client";
|
|
300
315
|
/**
|
|
301
316
|
* @internal
|
|
302
317
|
*/
|
|
@@ -306,18 +321,19 @@ var _UnsupportedOperationException = class _UnsupportedOperationException extend
|
|
|
306
321
|
$fault: "client",
|
|
307
322
|
...opts
|
|
308
323
|
});
|
|
309
|
-
this.name = "UnsupportedOperationException";
|
|
310
|
-
this.$fault = "client";
|
|
311
324
|
Object.setPrototypeOf(this, _UnsupportedOperationException.prototype);
|
|
312
325
|
}
|
|
313
326
|
};
|
|
314
|
-
__name(_UnsupportedOperationException, "UnsupportedOperationException");
|
|
315
|
-
var UnsupportedOperationException = _UnsupportedOperationException;
|
|
316
327
|
var RecordFormatType = {
|
|
317
328
|
CSV: "CSV",
|
|
318
329
|
JSON: "JSON"
|
|
319
330
|
};
|
|
320
|
-
var
|
|
331
|
+
var CodeValidationException = class _CodeValidationException extends KinesisAnalyticsServiceException {
|
|
332
|
+
static {
|
|
333
|
+
__name(this, "CodeValidationException");
|
|
334
|
+
}
|
|
335
|
+
name = "CodeValidationException";
|
|
336
|
+
$fault = "client";
|
|
321
337
|
/**
|
|
322
338
|
* @internal
|
|
323
339
|
*/
|
|
@@ -327,13 +343,9 @@ var _CodeValidationException = class _CodeValidationException extends KinesisAna
|
|
|
327
343
|
$fault: "client",
|
|
328
344
|
...opts
|
|
329
345
|
});
|
|
330
|
-
this.name = "CodeValidationException";
|
|
331
|
-
this.$fault = "client";
|
|
332
346
|
Object.setPrototypeOf(this, _CodeValidationException.prototype);
|
|
333
347
|
}
|
|
334
348
|
};
|
|
335
|
-
__name(_CodeValidationException, "CodeValidationException");
|
|
336
|
-
var CodeValidationException = _CodeValidationException;
|
|
337
349
|
var ApplicationStatus = {
|
|
338
350
|
DELETING: "DELETING",
|
|
339
351
|
READY: "READY",
|
|
@@ -347,7 +359,12 @@ var InputStartingPosition = {
|
|
|
347
359
|
NOW: "NOW",
|
|
348
360
|
TRIM_HORIZON: "TRIM_HORIZON"
|
|
349
361
|
};
|
|
350
|
-
var
|
|
362
|
+
var LimitExceededException = class _LimitExceededException extends KinesisAnalyticsServiceException {
|
|
363
|
+
static {
|
|
364
|
+
__name(this, "LimitExceededException");
|
|
365
|
+
}
|
|
366
|
+
name = "LimitExceededException";
|
|
367
|
+
$fault = "client";
|
|
351
368
|
/**
|
|
352
369
|
* @internal
|
|
353
370
|
*/
|
|
@@ -357,14 +374,15 @@ var _LimitExceededException = class _LimitExceededException extends KinesisAnaly
|
|
|
357
374
|
$fault: "client",
|
|
358
375
|
...opts
|
|
359
376
|
});
|
|
360
|
-
this.name = "LimitExceededException";
|
|
361
|
-
this.$fault = "client";
|
|
362
377
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
363
378
|
}
|
|
364
379
|
};
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
380
|
+
var TooManyTagsException = class _TooManyTagsException extends KinesisAnalyticsServiceException {
|
|
381
|
+
static {
|
|
382
|
+
__name(this, "TooManyTagsException");
|
|
383
|
+
}
|
|
384
|
+
name = "TooManyTagsException";
|
|
385
|
+
$fault = "client";
|
|
368
386
|
/**
|
|
369
387
|
* @internal
|
|
370
388
|
*/
|
|
@@ -374,14 +392,15 @@ var _TooManyTagsException = class _TooManyTagsException extends KinesisAnalytics
|
|
|
374
392
|
$fault: "client",
|
|
375
393
|
...opts
|
|
376
394
|
});
|
|
377
|
-
this.name = "TooManyTagsException";
|
|
378
|
-
this.$fault = "client";
|
|
379
395
|
Object.setPrototypeOf(this, _TooManyTagsException.prototype);
|
|
380
396
|
}
|
|
381
397
|
};
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
398
|
+
var ResourceProvisionedThroughputExceededException = class _ResourceProvisionedThroughputExceededException extends KinesisAnalyticsServiceException {
|
|
399
|
+
static {
|
|
400
|
+
__name(this, "ResourceProvisionedThroughputExceededException");
|
|
401
|
+
}
|
|
402
|
+
name = "ResourceProvisionedThroughputExceededException";
|
|
403
|
+
$fault = "client";
|
|
385
404
|
/**
|
|
386
405
|
* @internal
|
|
387
406
|
*/
|
|
@@ -391,14 +410,15 @@ var _ResourceProvisionedThroughputExceededException = class _ResourceProvisioned
|
|
|
391
410
|
$fault: "client",
|
|
392
411
|
...opts
|
|
393
412
|
});
|
|
394
|
-
this.name = "ResourceProvisionedThroughputExceededException";
|
|
395
|
-
this.$fault = "client";
|
|
396
413
|
Object.setPrototypeOf(this, _ResourceProvisionedThroughputExceededException.prototype);
|
|
397
414
|
}
|
|
398
415
|
};
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
416
|
+
var ServiceUnavailableException = class _ServiceUnavailableException extends KinesisAnalyticsServiceException {
|
|
417
|
+
static {
|
|
418
|
+
__name(this, "ServiceUnavailableException");
|
|
419
|
+
}
|
|
420
|
+
name = "ServiceUnavailableException";
|
|
421
|
+
$fault = "server";
|
|
402
422
|
/**
|
|
403
423
|
* @internal
|
|
404
424
|
*/
|
|
@@ -408,14 +428,17 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends Ki
|
|
|
408
428
|
$fault: "server",
|
|
409
429
|
...opts
|
|
410
430
|
});
|
|
411
|
-
this.name = "ServiceUnavailableException";
|
|
412
|
-
this.$fault = "server";
|
|
413
431
|
Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
|
|
414
432
|
}
|
|
415
433
|
};
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
434
|
+
var UnableToDetectSchemaException = class _UnableToDetectSchemaException extends KinesisAnalyticsServiceException {
|
|
435
|
+
static {
|
|
436
|
+
__name(this, "UnableToDetectSchemaException");
|
|
437
|
+
}
|
|
438
|
+
name = "UnableToDetectSchemaException";
|
|
439
|
+
$fault = "client";
|
|
440
|
+
RawInputRecords;
|
|
441
|
+
ProcessedInputRecords;
|
|
419
442
|
/**
|
|
420
443
|
* @internal
|
|
421
444
|
*/
|
|
@@ -425,16 +448,17 @@ var _UnableToDetectSchemaException = class _UnableToDetectSchemaException extend
|
|
|
425
448
|
$fault: "client",
|
|
426
449
|
...opts
|
|
427
450
|
});
|
|
428
|
-
this.name = "UnableToDetectSchemaException";
|
|
429
|
-
this.$fault = "client";
|
|
430
451
|
Object.setPrototypeOf(this, _UnableToDetectSchemaException.prototype);
|
|
431
452
|
this.RawInputRecords = opts.RawInputRecords;
|
|
432
453
|
this.ProcessedInputRecords = opts.ProcessedInputRecords;
|
|
433
454
|
}
|
|
434
455
|
};
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
456
|
+
var InvalidApplicationConfigurationException = class _InvalidApplicationConfigurationException extends KinesisAnalyticsServiceException {
|
|
457
|
+
static {
|
|
458
|
+
__name(this, "InvalidApplicationConfigurationException");
|
|
459
|
+
}
|
|
460
|
+
name = "InvalidApplicationConfigurationException";
|
|
461
|
+
$fault = "client";
|
|
438
462
|
/**
|
|
439
463
|
* @internal
|
|
440
464
|
*/
|
|
@@ -444,13 +468,9 @@ var _InvalidApplicationConfigurationException = class _InvalidApplicationConfigu
|
|
|
444
468
|
$fault: "client",
|
|
445
469
|
...opts
|
|
446
470
|
});
|
|
447
|
-
this.name = "InvalidApplicationConfigurationException";
|
|
448
|
-
this.$fault = "client";
|
|
449
471
|
Object.setPrototypeOf(this, _InvalidApplicationConfigurationException.prototype);
|
|
450
472
|
}
|
|
451
473
|
};
|
|
452
|
-
__name(_InvalidApplicationConfigurationException, "InvalidApplicationConfigurationException");
|
|
453
|
-
var InvalidApplicationConfigurationException = _InvalidApplicationConfigurationException;
|
|
454
474
|
|
|
455
475
|
// src/protocols/Aws_json1_1.ts
|
|
456
476
|
var se_AddApplicationCloudWatchLoggingOptionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1054,281 +1074,301 @@ function sharedHeaders(operation) {
|
|
|
1054
1074
|
__name(sharedHeaders, "sharedHeaders");
|
|
1055
1075
|
|
|
1056
1076
|
// src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts
|
|
1057
|
-
var
|
|
1077
|
+
var AddApplicationCloudWatchLoggingOptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1058
1078
|
return [
|
|
1059
1079
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1060
1080
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1061
1081
|
];
|
|
1062
1082
|
}).s("KinesisAnalytics_20150814", "AddApplicationCloudWatchLoggingOption", {}).n("KinesisAnalyticsClient", "AddApplicationCloudWatchLoggingOptionCommand").f(void 0, void 0).ser(se_AddApplicationCloudWatchLoggingOptionCommand).de(de_AddApplicationCloudWatchLoggingOptionCommand).build() {
|
|
1083
|
+
static {
|
|
1084
|
+
__name(this, "AddApplicationCloudWatchLoggingOptionCommand");
|
|
1085
|
+
}
|
|
1063
1086
|
};
|
|
1064
|
-
__name(_AddApplicationCloudWatchLoggingOptionCommand, "AddApplicationCloudWatchLoggingOptionCommand");
|
|
1065
|
-
var AddApplicationCloudWatchLoggingOptionCommand = _AddApplicationCloudWatchLoggingOptionCommand;
|
|
1066
1087
|
|
|
1067
1088
|
// src/commands/AddApplicationInputCommand.ts
|
|
1068
1089
|
|
|
1069
1090
|
|
|
1070
1091
|
|
|
1071
|
-
var
|
|
1092
|
+
var AddApplicationInputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1072
1093
|
return [
|
|
1073
1094
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1074
1095
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1075
1096
|
];
|
|
1076
1097
|
}).s("KinesisAnalytics_20150814", "AddApplicationInput", {}).n("KinesisAnalyticsClient", "AddApplicationInputCommand").f(void 0, void 0).ser(se_AddApplicationInputCommand).de(de_AddApplicationInputCommand).build() {
|
|
1098
|
+
static {
|
|
1099
|
+
__name(this, "AddApplicationInputCommand");
|
|
1100
|
+
}
|
|
1077
1101
|
};
|
|
1078
|
-
__name(_AddApplicationInputCommand, "AddApplicationInputCommand");
|
|
1079
|
-
var AddApplicationInputCommand = _AddApplicationInputCommand;
|
|
1080
1102
|
|
|
1081
1103
|
// src/commands/AddApplicationInputProcessingConfigurationCommand.ts
|
|
1082
1104
|
|
|
1083
1105
|
|
|
1084
1106
|
|
|
1085
|
-
var
|
|
1107
|
+
var AddApplicationInputProcessingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1086
1108
|
return [
|
|
1087
1109
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1088
1110
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1089
1111
|
];
|
|
1090
1112
|
}).s("KinesisAnalytics_20150814", "AddApplicationInputProcessingConfiguration", {}).n("KinesisAnalyticsClient", "AddApplicationInputProcessingConfigurationCommand").f(void 0, void 0).ser(se_AddApplicationInputProcessingConfigurationCommand).de(de_AddApplicationInputProcessingConfigurationCommand).build() {
|
|
1113
|
+
static {
|
|
1114
|
+
__name(this, "AddApplicationInputProcessingConfigurationCommand");
|
|
1115
|
+
}
|
|
1091
1116
|
};
|
|
1092
|
-
__name(_AddApplicationInputProcessingConfigurationCommand, "AddApplicationInputProcessingConfigurationCommand");
|
|
1093
|
-
var AddApplicationInputProcessingConfigurationCommand = _AddApplicationInputProcessingConfigurationCommand;
|
|
1094
1117
|
|
|
1095
1118
|
// src/commands/AddApplicationOutputCommand.ts
|
|
1096
1119
|
|
|
1097
1120
|
|
|
1098
1121
|
|
|
1099
|
-
var
|
|
1122
|
+
var AddApplicationOutputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1100
1123
|
return [
|
|
1101
1124
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1102
1125
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1103
1126
|
];
|
|
1104
1127
|
}).s("KinesisAnalytics_20150814", "AddApplicationOutput", {}).n("KinesisAnalyticsClient", "AddApplicationOutputCommand").f(void 0, void 0).ser(se_AddApplicationOutputCommand).de(de_AddApplicationOutputCommand).build() {
|
|
1128
|
+
static {
|
|
1129
|
+
__name(this, "AddApplicationOutputCommand");
|
|
1130
|
+
}
|
|
1105
1131
|
};
|
|
1106
|
-
__name(_AddApplicationOutputCommand, "AddApplicationOutputCommand");
|
|
1107
|
-
var AddApplicationOutputCommand = _AddApplicationOutputCommand;
|
|
1108
1132
|
|
|
1109
1133
|
// src/commands/AddApplicationReferenceDataSourceCommand.ts
|
|
1110
1134
|
|
|
1111
1135
|
|
|
1112
1136
|
|
|
1113
|
-
var
|
|
1137
|
+
var AddApplicationReferenceDataSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1114
1138
|
return [
|
|
1115
1139
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1116
1140
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1117
1141
|
];
|
|
1118
1142
|
}).s("KinesisAnalytics_20150814", "AddApplicationReferenceDataSource", {}).n("KinesisAnalyticsClient", "AddApplicationReferenceDataSourceCommand").f(void 0, void 0).ser(se_AddApplicationReferenceDataSourceCommand).de(de_AddApplicationReferenceDataSourceCommand).build() {
|
|
1143
|
+
static {
|
|
1144
|
+
__name(this, "AddApplicationReferenceDataSourceCommand");
|
|
1145
|
+
}
|
|
1119
1146
|
};
|
|
1120
|
-
__name(_AddApplicationReferenceDataSourceCommand, "AddApplicationReferenceDataSourceCommand");
|
|
1121
|
-
var AddApplicationReferenceDataSourceCommand = _AddApplicationReferenceDataSourceCommand;
|
|
1122
1147
|
|
|
1123
1148
|
// src/commands/CreateApplicationCommand.ts
|
|
1124
1149
|
|
|
1125
1150
|
|
|
1126
1151
|
|
|
1127
|
-
var
|
|
1152
|
+
var CreateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1128
1153
|
return [
|
|
1129
1154
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1130
1155
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1131
1156
|
];
|
|
1132
1157
|
}).s("KinesisAnalytics_20150814", "CreateApplication", {}).n("KinesisAnalyticsClient", "CreateApplicationCommand").f(void 0, void 0).ser(se_CreateApplicationCommand).de(de_CreateApplicationCommand).build() {
|
|
1158
|
+
static {
|
|
1159
|
+
__name(this, "CreateApplicationCommand");
|
|
1160
|
+
}
|
|
1133
1161
|
};
|
|
1134
|
-
__name(_CreateApplicationCommand, "CreateApplicationCommand");
|
|
1135
|
-
var CreateApplicationCommand = _CreateApplicationCommand;
|
|
1136
1162
|
|
|
1137
1163
|
// src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts
|
|
1138
1164
|
|
|
1139
1165
|
|
|
1140
1166
|
|
|
1141
|
-
var
|
|
1167
|
+
var DeleteApplicationCloudWatchLoggingOptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1142
1168
|
return [
|
|
1143
1169
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1144
1170
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1145
1171
|
];
|
|
1146
1172
|
}).s("KinesisAnalytics_20150814", "DeleteApplicationCloudWatchLoggingOption", {}).n("KinesisAnalyticsClient", "DeleteApplicationCloudWatchLoggingOptionCommand").f(void 0, void 0).ser(se_DeleteApplicationCloudWatchLoggingOptionCommand).de(de_DeleteApplicationCloudWatchLoggingOptionCommand).build() {
|
|
1173
|
+
static {
|
|
1174
|
+
__name(this, "DeleteApplicationCloudWatchLoggingOptionCommand");
|
|
1175
|
+
}
|
|
1147
1176
|
};
|
|
1148
|
-
__name(_DeleteApplicationCloudWatchLoggingOptionCommand, "DeleteApplicationCloudWatchLoggingOptionCommand");
|
|
1149
|
-
var DeleteApplicationCloudWatchLoggingOptionCommand = _DeleteApplicationCloudWatchLoggingOptionCommand;
|
|
1150
1177
|
|
|
1151
1178
|
// src/commands/DeleteApplicationCommand.ts
|
|
1152
1179
|
|
|
1153
1180
|
|
|
1154
1181
|
|
|
1155
|
-
var
|
|
1182
|
+
var DeleteApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1156
1183
|
return [
|
|
1157
1184
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1158
1185
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1159
1186
|
];
|
|
1160
1187
|
}).s("KinesisAnalytics_20150814", "DeleteApplication", {}).n("KinesisAnalyticsClient", "DeleteApplicationCommand").f(void 0, void 0).ser(se_DeleteApplicationCommand).de(de_DeleteApplicationCommand).build() {
|
|
1188
|
+
static {
|
|
1189
|
+
__name(this, "DeleteApplicationCommand");
|
|
1190
|
+
}
|
|
1161
1191
|
};
|
|
1162
|
-
__name(_DeleteApplicationCommand, "DeleteApplicationCommand");
|
|
1163
|
-
var DeleteApplicationCommand = _DeleteApplicationCommand;
|
|
1164
1192
|
|
|
1165
1193
|
// src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts
|
|
1166
1194
|
|
|
1167
1195
|
|
|
1168
1196
|
|
|
1169
|
-
var
|
|
1197
|
+
var DeleteApplicationInputProcessingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1170
1198
|
return [
|
|
1171
1199
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1172
1200
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1173
1201
|
];
|
|
1174
1202
|
}).s("KinesisAnalytics_20150814", "DeleteApplicationInputProcessingConfiguration", {}).n("KinesisAnalyticsClient", "DeleteApplicationInputProcessingConfigurationCommand").f(void 0, void 0).ser(se_DeleteApplicationInputProcessingConfigurationCommand).de(de_DeleteApplicationInputProcessingConfigurationCommand).build() {
|
|
1203
|
+
static {
|
|
1204
|
+
__name(this, "DeleteApplicationInputProcessingConfigurationCommand");
|
|
1205
|
+
}
|
|
1175
1206
|
};
|
|
1176
|
-
__name(_DeleteApplicationInputProcessingConfigurationCommand, "DeleteApplicationInputProcessingConfigurationCommand");
|
|
1177
|
-
var DeleteApplicationInputProcessingConfigurationCommand = _DeleteApplicationInputProcessingConfigurationCommand;
|
|
1178
1207
|
|
|
1179
1208
|
// src/commands/DeleteApplicationOutputCommand.ts
|
|
1180
1209
|
|
|
1181
1210
|
|
|
1182
1211
|
|
|
1183
|
-
var
|
|
1212
|
+
var DeleteApplicationOutputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1184
1213
|
return [
|
|
1185
1214
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1186
1215
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1187
1216
|
];
|
|
1188
1217
|
}).s("KinesisAnalytics_20150814", "DeleteApplicationOutput", {}).n("KinesisAnalyticsClient", "DeleteApplicationOutputCommand").f(void 0, void 0).ser(se_DeleteApplicationOutputCommand).de(de_DeleteApplicationOutputCommand).build() {
|
|
1218
|
+
static {
|
|
1219
|
+
__name(this, "DeleteApplicationOutputCommand");
|
|
1220
|
+
}
|
|
1189
1221
|
};
|
|
1190
|
-
__name(_DeleteApplicationOutputCommand, "DeleteApplicationOutputCommand");
|
|
1191
|
-
var DeleteApplicationOutputCommand = _DeleteApplicationOutputCommand;
|
|
1192
1222
|
|
|
1193
1223
|
// src/commands/DeleteApplicationReferenceDataSourceCommand.ts
|
|
1194
1224
|
|
|
1195
1225
|
|
|
1196
1226
|
|
|
1197
|
-
var
|
|
1227
|
+
var DeleteApplicationReferenceDataSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1198
1228
|
return [
|
|
1199
1229
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1200
1230
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1201
1231
|
];
|
|
1202
1232
|
}).s("KinesisAnalytics_20150814", "DeleteApplicationReferenceDataSource", {}).n("KinesisAnalyticsClient", "DeleteApplicationReferenceDataSourceCommand").f(void 0, void 0).ser(se_DeleteApplicationReferenceDataSourceCommand).de(de_DeleteApplicationReferenceDataSourceCommand).build() {
|
|
1233
|
+
static {
|
|
1234
|
+
__name(this, "DeleteApplicationReferenceDataSourceCommand");
|
|
1235
|
+
}
|
|
1203
1236
|
};
|
|
1204
|
-
__name(_DeleteApplicationReferenceDataSourceCommand, "DeleteApplicationReferenceDataSourceCommand");
|
|
1205
|
-
var DeleteApplicationReferenceDataSourceCommand = _DeleteApplicationReferenceDataSourceCommand;
|
|
1206
1237
|
|
|
1207
1238
|
// src/commands/DescribeApplicationCommand.ts
|
|
1208
1239
|
|
|
1209
1240
|
|
|
1210
1241
|
|
|
1211
|
-
var
|
|
1242
|
+
var DescribeApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1212
1243
|
return [
|
|
1213
1244
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1214
1245
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1215
1246
|
];
|
|
1216
1247
|
}).s("KinesisAnalytics_20150814", "DescribeApplication", {}).n("KinesisAnalyticsClient", "DescribeApplicationCommand").f(void 0, void 0).ser(se_DescribeApplicationCommand).de(de_DescribeApplicationCommand).build() {
|
|
1248
|
+
static {
|
|
1249
|
+
__name(this, "DescribeApplicationCommand");
|
|
1250
|
+
}
|
|
1217
1251
|
};
|
|
1218
|
-
__name(_DescribeApplicationCommand, "DescribeApplicationCommand");
|
|
1219
|
-
var DescribeApplicationCommand = _DescribeApplicationCommand;
|
|
1220
1252
|
|
|
1221
1253
|
// src/commands/DiscoverInputSchemaCommand.ts
|
|
1222
1254
|
|
|
1223
1255
|
|
|
1224
1256
|
|
|
1225
|
-
var
|
|
1257
|
+
var DiscoverInputSchemaCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1226
1258
|
return [
|
|
1227
1259
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1228
1260
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1229
1261
|
];
|
|
1230
1262
|
}).s("KinesisAnalytics_20150814", "DiscoverInputSchema", {}).n("KinesisAnalyticsClient", "DiscoverInputSchemaCommand").f(void 0, void 0).ser(se_DiscoverInputSchemaCommand).de(de_DiscoverInputSchemaCommand).build() {
|
|
1263
|
+
static {
|
|
1264
|
+
__name(this, "DiscoverInputSchemaCommand");
|
|
1265
|
+
}
|
|
1231
1266
|
};
|
|
1232
|
-
__name(_DiscoverInputSchemaCommand, "DiscoverInputSchemaCommand");
|
|
1233
|
-
var DiscoverInputSchemaCommand = _DiscoverInputSchemaCommand;
|
|
1234
1267
|
|
|
1235
1268
|
// src/commands/ListApplicationsCommand.ts
|
|
1236
1269
|
|
|
1237
1270
|
|
|
1238
1271
|
|
|
1239
|
-
var
|
|
1272
|
+
var ListApplicationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1240
1273
|
return [
|
|
1241
1274
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1242
1275
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1243
1276
|
];
|
|
1244
1277
|
}).s("KinesisAnalytics_20150814", "ListApplications", {}).n("KinesisAnalyticsClient", "ListApplicationsCommand").f(void 0, void 0).ser(se_ListApplicationsCommand).de(de_ListApplicationsCommand).build() {
|
|
1278
|
+
static {
|
|
1279
|
+
__name(this, "ListApplicationsCommand");
|
|
1280
|
+
}
|
|
1245
1281
|
};
|
|
1246
|
-
__name(_ListApplicationsCommand, "ListApplicationsCommand");
|
|
1247
|
-
var ListApplicationsCommand = _ListApplicationsCommand;
|
|
1248
1282
|
|
|
1249
1283
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1250
1284
|
|
|
1251
1285
|
|
|
1252
1286
|
|
|
1253
|
-
var
|
|
1287
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1254
1288
|
return [
|
|
1255
1289
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1256
1290
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1257
1291
|
];
|
|
1258
1292
|
}).s("KinesisAnalytics_20150814", "ListTagsForResource", {}).n("KinesisAnalyticsClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1293
|
+
static {
|
|
1294
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1295
|
+
}
|
|
1259
1296
|
};
|
|
1260
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1261
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1262
1297
|
|
|
1263
1298
|
// src/commands/StartApplicationCommand.ts
|
|
1264
1299
|
|
|
1265
1300
|
|
|
1266
1301
|
|
|
1267
|
-
var
|
|
1302
|
+
var StartApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1268
1303
|
return [
|
|
1269
1304
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1270
1305
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1271
1306
|
];
|
|
1272
1307
|
}).s("KinesisAnalytics_20150814", "StartApplication", {}).n("KinesisAnalyticsClient", "StartApplicationCommand").f(void 0, void 0).ser(se_StartApplicationCommand).de(de_StartApplicationCommand).build() {
|
|
1308
|
+
static {
|
|
1309
|
+
__name(this, "StartApplicationCommand");
|
|
1310
|
+
}
|
|
1273
1311
|
};
|
|
1274
|
-
__name(_StartApplicationCommand, "StartApplicationCommand");
|
|
1275
|
-
var StartApplicationCommand = _StartApplicationCommand;
|
|
1276
1312
|
|
|
1277
1313
|
// src/commands/StopApplicationCommand.ts
|
|
1278
1314
|
|
|
1279
1315
|
|
|
1280
1316
|
|
|
1281
|
-
var
|
|
1317
|
+
var StopApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1282
1318
|
return [
|
|
1283
1319
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1284
1320
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1285
1321
|
];
|
|
1286
1322
|
}).s("KinesisAnalytics_20150814", "StopApplication", {}).n("KinesisAnalyticsClient", "StopApplicationCommand").f(void 0, void 0).ser(se_StopApplicationCommand).de(de_StopApplicationCommand).build() {
|
|
1323
|
+
static {
|
|
1324
|
+
__name(this, "StopApplicationCommand");
|
|
1325
|
+
}
|
|
1287
1326
|
};
|
|
1288
|
-
__name(_StopApplicationCommand, "StopApplicationCommand");
|
|
1289
|
-
var StopApplicationCommand = _StopApplicationCommand;
|
|
1290
1327
|
|
|
1291
1328
|
// src/commands/TagResourceCommand.ts
|
|
1292
1329
|
|
|
1293
1330
|
|
|
1294
1331
|
|
|
1295
|
-
var
|
|
1332
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1296
1333
|
return [
|
|
1297
1334
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1298
1335
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1299
1336
|
];
|
|
1300
1337
|
}).s("KinesisAnalytics_20150814", "TagResource", {}).n("KinesisAnalyticsClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1338
|
+
static {
|
|
1339
|
+
__name(this, "TagResourceCommand");
|
|
1340
|
+
}
|
|
1301
1341
|
};
|
|
1302
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1303
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1304
1342
|
|
|
1305
1343
|
// src/commands/UntagResourceCommand.ts
|
|
1306
1344
|
|
|
1307
1345
|
|
|
1308
1346
|
|
|
1309
|
-
var
|
|
1347
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1310
1348
|
return [
|
|
1311
1349
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1312
1350
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1313
1351
|
];
|
|
1314
1352
|
}).s("KinesisAnalytics_20150814", "UntagResource", {}).n("KinesisAnalyticsClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1353
|
+
static {
|
|
1354
|
+
__name(this, "UntagResourceCommand");
|
|
1355
|
+
}
|
|
1315
1356
|
};
|
|
1316
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1317
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1318
1357
|
|
|
1319
1358
|
// src/commands/UpdateApplicationCommand.ts
|
|
1320
1359
|
|
|
1321
1360
|
|
|
1322
1361
|
|
|
1323
|
-
var
|
|
1362
|
+
var UpdateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1324
1363
|
return [
|
|
1325
1364
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1326
1365
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1327
1366
|
];
|
|
1328
1367
|
}).s("KinesisAnalytics_20150814", "UpdateApplication", {}).n("KinesisAnalyticsClient", "UpdateApplicationCommand").f(void 0, void 0).ser(se_UpdateApplicationCommand).de(de_UpdateApplicationCommand).build() {
|
|
1368
|
+
static {
|
|
1369
|
+
__name(this, "UpdateApplicationCommand");
|
|
1370
|
+
}
|
|
1329
1371
|
};
|
|
1330
|
-
__name(_UpdateApplicationCommand, "UpdateApplicationCommand");
|
|
1331
|
-
var UpdateApplicationCommand = _UpdateApplicationCommand;
|
|
1332
1372
|
|
|
1333
1373
|
// src/KinesisAnalytics.ts
|
|
1334
1374
|
var commands = {
|
|
@@ -1353,10 +1393,11 @@ var commands = {
|
|
|
1353
1393
|
UntagResourceCommand,
|
|
1354
1394
|
UpdateApplicationCommand
|
|
1355
1395
|
};
|
|
1356
|
-
var
|
|
1396
|
+
var KinesisAnalytics = class extends KinesisAnalyticsClient {
|
|
1397
|
+
static {
|
|
1398
|
+
__name(this, "KinesisAnalytics");
|
|
1399
|
+
}
|
|
1357
1400
|
};
|
|
1358
|
-
__name(_KinesisAnalytics, "KinesisAnalytics");
|
|
1359
|
-
var KinesisAnalytics = _KinesisAnalytics;
|
|
1360
1401
|
(0, import_smithy_client.createAggregatedClient)(commands, KinesisAnalytics);
|
|
1361
1402
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1362
1403
|
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class KinesisAnalyticsClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,61 +1,61 @@
|
|
|
1
1
|
import { KinesisAnalyticsServiceException as __BaseException } from "./KinesisAnalyticsServiceException";
|
|
2
2
|
export class ConcurrentModificationException extends __BaseException {
|
|
3
|
+
name = "ConcurrentModificationException";
|
|
4
|
+
$fault = "client";
|
|
3
5
|
constructor(opts) {
|
|
4
6
|
super({
|
|
5
7
|
name: "ConcurrentModificationException",
|
|
6
8
|
$fault: "client",
|
|
7
9
|
...opts,
|
|
8
10
|
});
|
|
9
|
-
this.name = "ConcurrentModificationException";
|
|
10
|
-
this.$fault = "client";
|
|
11
11
|
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
export class InvalidArgumentException extends __BaseException {
|
|
15
|
+
name = "InvalidArgumentException";
|
|
16
|
+
$fault = "client";
|
|
15
17
|
constructor(opts) {
|
|
16
18
|
super({
|
|
17
19
|
name: "InvalidArgumentException",
|
|
18
20
|
$fault: "client",
|
|
19
21
|
...opts,
|
|
20
22
|
});
|
|
21
|
-
this.name = "InvalidArgumentException";
|
|
22
|
-
this.$fault = "client";
|
|
23
23
|
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
export class ResourceInUseException extends __BaseException {
|
|
27
|
+
name = "ResourceInUseException";
|
|
28
|
+
$fault = "client";
|
|
27
29
|
constructor(opts) {
|
|
28
30
|
super({
|
|
29
31
|
name: "ResourceInUseException",
|
|
30
32
|
$fault: "client",
|
|
31
33
|
...opts,
|
|
32
34
|
});
|
|
33
|
-
this.name = "ResourceInUseException";
|
|
34
|
-
this.$fault = "client";
|
|
35
35
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
export class ResourceNotFoundException extends __BaseException {
|
|
39
|
+
name = "ResourceNotFoundException";
|
|
40
|
+
$fault = "client";
|
|
39
41
|
constructor(opts) {
|
|
40
42
|
super({
|
|
41
43
|
name: "ResourceNotFoundException",
|
|
42
44
|
$fault: "client",
|
|
43
45
|
...opts,
|
|
44
46
|
});
|
|
45
|
-
this.name = "ResourceNotFoundException";
|
|
46
|
-
this.$fault = "client";
|
|
47
47
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
export class UnsupportedOperationException extends __BaseException {
|
|
51
|
+
name = "UnsupportedOperationException";
|
|
52
|
+
$fault = "client";
|
|
51
53
|
constructor(opts) {
|
|
52
54
|
super({
|
|
53
55
|
name: "UnsupportedOperationException",
|
|
54
56
|
$fault: "client",
|
|
55
57
|
...opts,
|
|
56
58
|
});
|
|
57
|
-
this.name = "UnsupportedOperationException";
|
|
58
|
-
this.$fault = "client";
|
|
59
59
|
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
60
60
|
}
|
|
61
61
|
}
|
|
@@ -64,14 +64,14 @@ export const RecordFormatType = {
|
|
|
64
64
|
JSON: "JSON",
|
|
65
65
|
};
|
|
66
66
|
export class CodeValidationException extends __BaseException {
|
|
67
|
+
name = "CodeValidationException";
|
|
68
|
+
$fault = "client";
|
|
67
69
|
constructor(opts) {
|
|
68
70
|
super({
|
|
69
71
|
name: "CodeValidationException",
|
|
70
72
|
$fault: "client",
|
|
71
73
|
...opts,
|
|
72
74
|
});
|
|
73
|
-
this.name = "CodeValidationException";
|
|
74
|
-
this.$fault = "client";
|
|
75
75
|
Object.setPrototypeOf(this, CodeValidationException.prototype);
|
|
76
76
|
}
|
|
77
77
|
}
|
|
@@ -89,76 +89,78 @@ export const InputStartingPosition = {
|
|
|
89
89
|
TRIM_HORIZON: "TRIM_HORIZON",
|
|
90
90
|
};
|
|
91
91
|
export class LimitExceededException extends __BaseException {
|
|
92
|
+
name = "LimitExceededException";
|
|
93
|
+
$fault = "client";
|
|
92
94
|
constructor(opts) {
|
|
93
95
|
super({
|
|
94
96
|
name: "LimitExceededException",
|
|
95
97
|
$fault: "client",
|
|
96
98
|
...opts,
|
|
97
99
|
});
|
|
98
|
-
this.name = "LimitExceededException";
|
|
99
|
-
this.$fault = "client";
|
|
100
100
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
103
|
export class TooManyTagsException extends __BaseException {
|
|
104
|
+
name = "TooManyTagsException";
|
|
105
|
+
$fault = "client";
|
|
104
106
|
constructor(opts) {
|
|
105
107
|
super({
|
|
106
108
|
name: "TooManyTagsException",
|
|
107
109
|
$fault: "client",
|
|
108
110
|
...opts,
|
|
109
111
|
});
|
|
110
|
-
this.name = "TooManyTagsException";
|
|
111
|
-
this.$fault = "client";
|
|
112
112
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
113
113
|
}
|
|
114
114
|
}
|
|
115
115
|
export class ResourceProvisionedThroughputExceededException extends __BaseException {
|
|
116
|
+
name = "ResourceProvisionedThroughputExceededException";
|
|
117
|
+
$fault = "client";
|
|
116
118
|
constructor(opts) {
|
|
117
119
|
super({
|
|
118
120
|
name: "ResourceProvisionedThroughputExceededException",
|
|
119
121
|
$fault: "client",
|
|
120
122
|
...opts,
|
|
121
123
|
});
|
|
122
|
-
this.name = "ResourceProvisionedThroughputExceededException";
|
|
123
|
-
this.$fault = "client";
|
|
124
124
|
Object.setPrototypeOf(this, ResourceProvisionedThroughputExceededException.prototype);
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
127
|
export class ServiceUnavailableException extends __BaseException {
|
|
128
|
+
name = "ServiceUnavailableException";
|
|
129
|
+
$fault = "server";
|
|
128
130
|
constructor(opts) {
|
|
129
131
|
super({
|
|
130
132
|
name: "ServiceUnavailableException",
|
|
131
133
|
$fault: "server",
|
|
132
134
|
...opts,
|
|
133
135
|
});
|
|
134
|
-
this.name = "ServiceUnavailableException";
|
|
135
|
-
this.$fault = "server";
|
|
136
136
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
139
|
export class UnableToDetectSchemaException extends __BaseException {
|
|
140
|
+
name = "UnableToDetectSchemaException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
RawInputRecords;
|
|
143
|
+
ProcessedInputRecords;
|
|
140
144
|
constructor(opts) {
|
|
141
145
|
super({
|
|
142
146
|
name: "UnableToDetectSchemaException",
|
|
143
147
|
$fault: "client",
|
|
144
148
|
...opts,
|
|
145
149
|
});
|
|
146
|
-
this.name = "UnableToDetectSchemaException";
|
|
147
|
-
this.$fault = "client";
|
|
148
150
|
Object.setPrototypeOf(this, UnableToDetectSchemaException.prototype);
|
|
149
151
|
this.RawInputRecords = opts.RawInputRecords;
|
|
150
152
|
this.ProcessedInputRecords = opts.ProcessedInputRecords;
|
|
151
153
|
}
|
|
152
154
|
}
|
|
153
155
|
export class InvalidApplicationConfigurationException extends __BaseException {
|
|
156
|
+
name = "InvalidApplicationConfigurationException";
|
|
157
|
+
$fault = "client";
|
|
154
158
|
constructor(opts) {
|
|
155
159
|
super({
|
|
156
160
|
name: "InvalidApplicationConfigurationException",
|
|
157
161
|
$fault: "client",
|
|
158
162
|
...opts,
|
|
159
163
|
});
|
|
160
|
-
this.name = "InvalidApplicationConfigurationException";
|
|
161
|
-
this.$fault = "client";
|
|
162
164
|
Object.setPrototypeOf(this, InvalidApplicationConfigurationException.prototype);
|
|
163
165
|
}
|
|
164
166
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: KinesisAnalyticsClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: KinesisAnalyticsClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: KinesisAnalyticsClientConfig) =>
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: KinesisAnalyticsClientConfig) =>
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
|
|
|
52
54
|
| import("@smithy/types").RetryStrategyV2
|
|
53
55
|
| undefined;
|
|
54
56
|
endpoint?:
|
|
55
|
-
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
60
72
|
| undefined;
|
|
61
73
|
endpointProvider: (
|
|
62
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kinesis-analytics",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kinesis Analytics Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.726.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-kinesis-analytics",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.726.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.726.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.726.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.726.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.726.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.726.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|