@aws-sdk/client-kinesis 3.52.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/KinesisServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +198 -2
- package/dist-cjs/protocols/Aws_json1_1.js +307 -1132
- package/dist-es/index.js +1 -0
- package/dist-es/models/KinesisServiceException.js +12 -0
- package/dist-es/models/models_0.js +182 -1
- package/dist-es/protocols/Aws_json1_1.js +667 -1221
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/KinesisServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +83 -73
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/KinesisServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +65 -61
- package/package.json +29 -29
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var KinesisServiceException = (function (_super) {
|
|
4
|
+
__extends(KinesisServiceException, _super);
|
|
5
|
+
function KinesisServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, KinesisServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return KinesisServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { KinesisServiceException };
|
|
@@ -1,8 +1,57 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { KinesisServiceException as __BaseException } from "./KinesisServiceException";
|
|
2
3
|
export var AddTagsToStreamInput;
|
|
3
4
|
(function (AddTagsToStreamInput) {
|
|
4
5
|
AddTagsToStreamInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
5
6
|
})(AddTagsToStreamInput || (AddTagsToStreamInput = {}));
|
|
7
|
+
var InvalidArgumentException = (function (_super) {
|
|
8
|
+
__extends(InvalidArgumentException, _super);
|
|
9
|
+
function InvalidArgumentException(opts) {
|
|
10
|
+
var _this = _super.call(this, __assign({ name: "InvalidArgumentException", $fault: "client" }, opts)) || this;
|
|
11
|
+
_this.name = "InvalidArgumentException";
|
|
12
|
+
_this.$fault = "client";
|
|
13
|
+
Object.setPrototypeOf(_this, InvalidArgumentException.prototype);
|
|
14
|
+
return _this;
|
|
15
|
+
}
|
|
16
|
+
return InvalidArgumentException;
|
|
17
|
+
}(__BaseException));
|
|
18
|
+
export { InvalidArgumentException };
|
|
19
|
+
var LimitExceededException = (function (_super) {
|
|
20
|
+
__extends(LimitExceededException, _super);
|
|
21
|
+
function LimitExceededException(opts) {
|
|
22
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
23
|
+
_this.name = "LimitExceededException";
|
|
24
|
+
_this.$fault = "client";
|
|
25
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
26
|
+
return _this;
|
|
27
|
+
}
|
|
28
|
+
return LimitExceededException;
|
|
29
|
+
}(__BaseException));
|
|
30
|
+
export { LimitExceededException };
|
|
31
|
+
var ResourceInUseException = (function (_super) {
|
|
32
|
+
__extends(ResourceInUseException, _super);
|
|
33
|
+
function ResourceInUseException(opts) {
|
|
34
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
|
|
35
|
+
_this.name = "ResourceInUseException";
|
|
36
|
+
_this.$fault = "client";
|
|
37
|
+
Object.setPrototypeOf(_this, ResourceInUseException.prototype);
|
|
38
|
+
return _this;
|
|
39
|
+
}
|
|
40
|
+
return ResourceInUseException;
|
|
41
|
+
}(__BaseException));
|
|
42
|
+
export { ResourceInUseException };
|
|
43
|
+
var ResourceNotFoundException = (function (_super) {
|
|
44
|
+
__extends(ResourceNotFoundException, _super);
|
|
45
|
+
function ResourceNotFoundException(opts) {
|
|
46
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
47
|
+
_this.name = "ResourceNotFoundException";
|
|
48
|
+
_this.$fault = "client";
|
|
49
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
50
|
+
return _this;
|
|
51
|
+
}
|
|
52
|
+
return ResourceNotFoundException;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { ResourceNotFoundException };
|
|
6
55
|
export var HashKeyRange;
|
|
7
56
|
(function (HashKeyRange) {
|
|
8
57
|
HashKeyRange.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -137,6 +186,30 @@ export var EnableEnhancedMonitoringInput;
|
|
|
137
186
|
(function (EnableEnhancedMonitoringInput) {
|
|
138
187
|
EnableEnhancedMonitoringInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
139
188
|
})(EnableEnhancedMonitoringInput || (EnableEnhancedMonitoringInput = {}));
|
|
189
|
+
var ExpiredIteratorException = (function (_super) {
|
|
190
|
+
__extends(ExpiredIteratorException, _super);
|
|
191
|
+
function ExpiredIteratorException(opts) {
|
|
192
|
+
var _this = _super.call(this, __assign({ name: "ExpiredIteratorException", $fault: "client" }, opts)) || this;
|
|
193
|
+
_this.name = "ExpiredIteratorException";
|
|
194
|
+
_this.$fault = "client";
|
|
195
|
+
Object.setPrototypeOf(_this, ExpiredIteratorException.prototype);
|
|
196
|
+
return _this;
|
|
197
|
+
}
|
|
198
|
+
return ExpiredIteratorException;
|
|
199
|
+
}(__BaseException));
|
|
200
|
+
export { ExpiredIteratorException };
|
|
201
|
+
var ExpiredNextTokenException = (function (_super) {
|
|
202
|
+
__extends(ExpiredNextTokenException, _super);
|
|
203
|
+
function ExpiredNextTokenException(opts) {
|
|
204
|
+
var _this = _super.call(this, __assign({ name: "ExpiredNextTokenException", $fault: "client" }, opts)) || this;
|
|
205
|
+
_this.name = "ExpiredNextTokenException";
|
|
206
|
+
_this.$fault = "client";
|
|
207
|
+
Object.setPrototypeOf(_this, ExpiredNextTokenException.prototype);
|
|
208
|
+
return _this;
|
|
209
|
+
}
|
|
210
|
+
return ExpiredNextTokenException;
|
|
211
|
+
}(__BaseException));
|
|
212
|
+
export { ExpiredNextTokenException };
|
|
140
213
|
export var GetRecordsInput;
|
|
141
214
|
(function (GetRecordsInput) {
|
|
142
215
|
GetRecordsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -149,6 +222,90 @@ export var GetRecordsOutput;
|
|
|
149
222
|
(function (GetRecordsOutput) {
|
|
150
223
|
GetRecordsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
151
224
|
})(GetRecordsOutput || (GetRecordsOutput = {}));
|
|
225
|
+
var KMSAccessDeniedException = (function (_super) {
|
|
226
|
+
__extends(KMSAccessDeniedException, _super);
|
|
227
|
+
function KMSAccessDeniedException(opts) {
|
|
228
|
+
var _this = _super.call(this, __assign({ name: "KMSAccessDeniedException", $fault: "client" }, opts)) || this;
|
|
229
|
+
_this.name = "KMSAccessDeniedException";
|
|
230
|
+
_this.$fault = "client";
|
|
231
|
+
Object.setPrototypeOf(_this, KMSAccessDeniedException.prototype);
|
|
232
|
+
return _this;
|
|
233
|
+
}
|
|
234
|
+
return KMSAccessDeniedException;
|
|
235
|
+
}(__BaseException));
|
|
236
|
+
export { KMSAccessDeniedException };
|
|
237
|
+
var KMSDisabledException = (function (_super) {
|
|
238
|
+
__extends(KMSDisabledException, _super);
|
|
239
|
+
function KMSDisabledException(opts) {
|
|
240
|
+
var _this = _super.call(this, __assign({ name: "KMSDisabledException", $fault: "client" }, opts)) || this;
|
|
241
|
+
_this.name = "KMSDisabledException";
|
|
242
|
+
_this.$fault = "client";
|
|
243
|
+
Object.setPrototypeOf(_this, KMSDisabledException.prototype);
|
|
244
|
+
return _this;
|
|
245
|
+
}
|
|
246
|
+
return KMSDisabledException;
|
|
247
|
+
}(__BaseException));
|
|
248
|
+
export { KMSDisabledException };
|
|
249
|
+
var KMSInvalidStateException = (function (_super) {
|
|
250
|
+
__extends(KMSInvalidStateException, _super);
|
|
251
|
+
function KMSInvalidStateException(opts) {
|
|
252
|
+
var _this = _super.call(this, __assign({ name: "KMSInvalidStateException", $fault: "client" }, opts)) || this;
|
|
253
|
+
_this.name = "KMSInvalidStateException";
|
|
254
|
+
_this.$fault = "client";
|
|
255
|
+
Object.setPrototypeOf(_this, KMSInvalidStateException.prototype);
|
|
256
|
+
return _this;
|
|
257
|
+
}
|
|
258
|
+
return KMSInvalidStateException;
|
|
259
|
+
}(__BaseException));
|
|
260
|
+
export { KMSInvalidStateException };
|
|
261
|
+
var KMSNotFoundException = (function (_super) {
|
|
262
|
+
__extends(KMSNotFoundException, _super);
|
|
263
|
+
function KMSNotFoundException(opts) {
|
|
264
|
+
var _this = _super.call(this, __assign({ name: "KMSNotFoundException", $fault: "client" }, opts)) || this;
|
|
265
|
+
_this.name = "KMSNotFoundException";
|
|
266
|
+
_this.$fault = "client";
|
|
267
|
+
Object.setPrototypeOf(_this, KMSNotFoundException.prototype);
|
|
268
|
+
return _this;
|
|
269
|
+
}
|
|
270
|
+
return KMSNotFoundException;
|
|
271
|
+
}(__BaseException));
|
|
272
|
+
export { KMSNotFoundException };
|
|
273
|
+
var KMSOptInRequired = (function (_super) {
|
|
274
|
+
__extends(KMSOptInRequired, _super);
|
|
275
|
+
function KMSOptInRequired(opts) {
|
|
276
|
+
var _this = _super.call(this, __assign({ name: "KMSOptInRequired", $fault: "client" }, opts)) || this;
|
|
277
|
+
_this.name = "KMSOptInRequired";
|
|
278
|
+
_this.$fault = "client";
|
|
279
|
+
Object.setPrototypeOf(_this, KMSOptInRequired.prototype);
|
|
280
|
+
return _this;
|
|
281
|
+
}
|
|
282
|
+
return KMSOptInRequired;
|
|
283
|
+
}(__BaseException));
|
|
284
|
+
export { KMSOptInRequired };
|
|
285
|
+
var KMSThrottlingException = (function (_super) {
|
|
286
|
+
__extends(KMSThrottlingException, _super);
|
|
287
|
+
function KMSThrottlingException(opts) {
|
|
288
|
+
var _this = _super.call(this, __assign({ name: "KMSThrottlingException", $fault: "client" }, opts)) || this;
|
|
289
|
+
_this.name = "KMSThrottlingException";
|
|
290
|
+
_this.$fault = "client";
|
|
291
|
+
Object.setPrototypeOf(_this, KMSThrottlingException.prototype);
|
|
292
|
+
return _this;
|
|
293
|
+
}
|
|
294
|
+
return KMSThrottlingException;
|
|
295
|
+
}(__BaseException));
|
|
296
|
+
export { KMSThrottlingException };
|
|
297
|
+
var ProvisionedThroughputExceededException = (function (_super) {
|
|
298
|
+
__extends(ProvisionedThroughputExceededException, _super);
|
|
299
|
+
function ProvisionedThroughputExceededException(opts) {
|
|
300
|
+
var _this = _super.call(this, __assign({ name: "ProvisionedThroughputExceededException", $fault: "client" }, opts)) || this;
|
|
301
|
+
_this.name = "ProvisionedThroughputExceededException";
|
|
302
|
+
_this.$fault = "client";
|
|
303
|
+
Object.setPrototypeOf(_this, ProvisionedThroughputExceededException.prototype);
|
|
304
|
+
return _this;
|
|
305
|
+
}
|
|
306
|
+
return ProvisionedThroughputExceededException;
|
|
307
|
+
}(__BaseException));
|
|
308
|
+
export { ProvisionedThroughputExceededException };
|
|
152
309
|
export var ShardIteratorType;
|
|
153
310
|
(function (ShardIteratorType) {
|
|
154
311
|
ShardIteratorType["AFTER_SEQUENCE_NUMBER"] = "AFTER_SEQUENCE_NUMBER";
|
|
@@ -169,6 +326,18 @@ export var IncreaseStreamRetentionPeriodInput;
|
|
|
169
326
|
(function (IncreaseStreamRetentionPeriodInput) {
|
|
170
327
|
IncreaseStreamRetentionPeriodInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
171
328
|
})(IncreaseStreamRetentionPeriodInput || (IncreaseStreamRetentionPeriodInput = {}));
|
|
329
|
+
var InternalFailureException = (function (_super) {
|
|
330
|
+
__extends(InternalFailureException, _super);
|
|
331
|
+
function InternalFailureException(opts) {
|
|
332
|
+
var _this = _super.call(this, __assign({ name: "InternalFailureException", $fault: "server" }, opts)) || this;
|
|
333
|
+
_this.name = "InternalFailureException";
|
|
334
|
+
_this.$fault = "server";
|
|
335
|
+
Object.setPrototypeOf(_this, InternalFailureException.prototype);
|
|
336
|
+
return _this;
|
|
337
|
+
}
|
|
338
|
+
return InternalFailureException;
|
|
339
|
+
}(__BaseException));
|
|
340
|
+
export { InternalFailureException };
|
|
172
341
|
export var ShardFilterType;
|
|
173
342
|
(function (ShardFilterType) {
|
|
174
343
|
ShardFilterType["AFTER_SHARD_ID"] = "AFTER_SHARD_ID";
|
|
@@ -222,6 +391,18 @@ export var MergeShardsInput;
|
|
|
222
391
|
(function (MergeShardsInput) {
|
|
223
392
|
MergeShardsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
224
393
|
})(MergeShardsInput || (MergeShardsInput = {}));
|
|
394
|
+
var ValidationException = (function (_super) {
|
|
395
|
+
__extends(ValidationException, _super);
|
|
396
|
+
function ValidationException(opts) {
|
|
397
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
398
|
+
_this.name = "ValidationException";
|
|
399
|
+
_this.$fault = "client";
|
|
400
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
401
|
+
return _this;
|
|
402
|
+
}
|
|
403
|
+
return ValidationException;
|
|
404
|
+
}(__BaseException));
|
|
405
|
+
export { ValidationException };
|
|
225
406
|
export var PutRecordInput;
|
|
226
407
|
(function (PutRecordInput) {
|
|
227
408
|
PutRecordInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|