@aws-sdk/client-lex-models-v2 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/LexModelsV2ServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +98 -5
- package/dist-cjs/protocols/Aws_restJson1.js +708 -2758
- package/dist-es/index.js +1 -0
- package/dist-es/models/LexModelsV2ServiceException.js +12 -0
- package/dist-es/models/models_0.js +87 -1
- package/dist-es/protocols/Aws_restJson1.js +1559 -3030
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/LexModelsV2ServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -29
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/LexModelsV2ServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -29
- package/package.json +26 -26
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 LexModelsV2ServiceException = (function (_super) {
|
|
4
|
+
__extends(LexModelsV2ServiceException, _super);
|
|
5
|
+
function LexModelsV2ServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, LexModelsV2ServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return LexModelsV2ServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { LexModelsV2ServiceException };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { LexModelsV2ServiceException as __BaseException } from "./LexModelsV2ServiceException";
|
|
3
4
|
export var AudioRecognitionStrategy;
|
|
4
5
|
(function (AudioRecognitionStrategy) {
|
|
5
6
|
AudioRecognitionStrategy["UseSlotValuesAsCustomVocabulary"] = "UseSlotValuesAsCustomVocabulary";
|
|
@@ -250,6 +251,79 @@ export var BuildBotLocaleResponse;
|
|
|
250
251
|
(function (BuildBotLocaleResponse) {
|
|
251
252
|
BuildBotLocaleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
252
253
|
})(BuildBotLocaleResponse || (BuildBotLocaleResponse = {}));
|
|
254
|
+
var ConflictException = (function (_super) {
|
|
255
|
+
__extends(ConflictException, _super);
|
|
256
|
+
function ConflictException(opts) {
|
|
257
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
258
|
+
_this.name = "ConflictException";
|
|
259
|
+
_this.$fault = "client";
|
|
260
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
261
|
+
return _this;
|
|
262
|
+
}
|
|
263
|
+
return ConflictException;
|
|
264
|
+
}(__BaseException));
|
|
265
|
+
export { ConflictException };
|
|
266
|
+
var InternalServerException = (function (_super) {
|
|
267
|
+
__extends(InternalServerException, _super);
|
|
268
|
+
function InternalServerException(opts) {
|
|
269
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
270
|
+
_this.name = "InternalServerException";
|
|
271
|
+
_this.$fault = "server";
|
|
272
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
273
|
+
return _this;
|
|
274
|
+
}
|
|
275
|
+
return InternalServerException;
|
|
276
|
+
}(__BaseException));
|
|
277
|
+
export { InternalServerException };
|
|
278
|
+
var PreconditionFailedException = (function (_super) {
|
|
279
|
+
__extends(PreconditionFailedException, _super);
|
|
280
|
+
function PreconditionFailedException(opts) {
|
|
281
|
+
var _this = _super.call(this, __assign({ name: "PreconditionFailedException", $fault: "client" }, opts)) || this;
|
|
282
|
+
_this.name = "PreconditionFailedException";
|
|
283
|
+
_this.$fault = "client";
|
|
284
|
+
Object.setPrototypeOf(_this, PreconditionFailedException.prototype);
|
|
285
|
+
return _this;
|
|
286
|
+
}
|
|
287
|
+
return PreconditionFailedException;
|
|
288
|
+
}(__BaseException));
|
|
289
|
+
export { PreconditionFailedException };
|
|
290
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
291
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
292
|
+
function ServiceQuotaExceededException(opts) {
|
|
293
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
294
|
+
_this.name = "ServiceQuotaExceededException";
|
|
295
|
+
_this.$fault = "client";
|
|
296
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
297
|
+
return _this;
|
|
298
|
+
}
|
|
299
|
+
return ServiceQuotaExceededException;
|
|
300
|
+
}(__BaseException));
|
|
301
|
+
export { ServiceQuotaExceededException };
|
|
302
|
+
var ThrottlingException = (function (_super) {
|
|
303
|
+
__extends(ThrottlingException, _super);
|
|
304
|
+
function ThrottlingException(opts) {
|
|
305
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
306
|
+
_this.name = "ThrottlingException";
|
|
307
|
+
_this.$fault = "client";
|
|
308
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
309
|
+
_this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
310
|
+
return _this;
|
|
311
|
+
}
|
|
312
|
+
return ThrottlingException;
|
|
313
|
+
}(__BaseException));
|
|
314
|
+
export { ThrottlingException };
|
|
315
|
+
var ValidationException = (function (_super) {
|
|
316
|
+
__extends(ValidationException, _super);
|
|
317
|
+
function ValidationException(opts) {
|
|
318
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
319
|
+
_this.name = "ValidationException";
|
|
320
|
+
_this.$fault = "client";
|
|
321
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
322
|
+
return _this;
|
|
323
|
+
}
|
|
324
|
+
return ValidationException;
|
|
325
|
+
}(__BaseException));
|
|
326
|
+
export { ValidationException };
|
|
253
327
|
export var BuiltInIntentSortAttribute;
|
|
254
328
|
(function (BuiltInIntentSortAttribute) {
|
|
255
329
|
BuiltInIntentSortAttribute["IntentSignature"] = "IntentSignature";
|
|
@@ -358,6 +432,18 @@ export var CreateExportResponse;
|
|
|
358
432
|
(function (CreateExportResponse) {
|
|
359
433
|
CreateExportResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
360
434
|
})(CreateExportResponse || (CreateExportResponse = {}));
|
|
435
|
+
var ResourceNotFoundException = (function (_super) {
|
|
436
|
+
__extends(ResourceNotFoundException, _super);
|
|
437
|
+
function ResourceNotFoundException(opts) {
|
|
438
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
439
|
+
_this.name = "ResourceNotFoundException";
|
|
440
|
+
_this.$fault = "client";
|
|
441
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
442
|
+
return _this;
|
|
443
|
+
}
|
|
444
|
+
return ResourceNotFoundException;
|
|
445
|
+
}(__BaseException));
|
|
446
|
+
export { ResourceNotFoundException };
|
|
361
447
|
export var DialogCodeHookSettings;
|
|
362
448
|
(function (DialogCodeHookSettings) {
|
|
363
449
|
DialogCodeHookSettings.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|