@aws-sdk/client-lex-model-building-service 3.986.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 +61 -1444
- package/dist-cjs/models/LexModelBuildingServiceServiceException.js +12 -0
- package/dist-cjs/models/errors.js +114 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1146 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +64 -58
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var LexModelBuildingServiceServiceException = require('./models/LexModelBuildingServiceServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1239 +113,6 @@ class LexModelBuildingServiceClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class LexModelBuildingServiceServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, LexModelBuildingServiceServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends LexModelBuildingServiceServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class BadRequestException extends LexModelBuildingServiceServiceException {
|
|
133
|
-
name = "BadRequestException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "BadRequestException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ConflictException extends LexModelBuildingServiceServiceException {
|
|
145
|
-
name = "ConflictException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ConflictException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class InternalFailureException extends LexModelBuildingServiceServiceException {
|
|
157
|
-
name = "InternalFailureException";
|
|
158
|
-
$fault = "server";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "InternalFailureException",
|
|
162
|
-
$fault: "server",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class LimitExceededException extends LexModelBuildingServiceServiceException {
|
|
169
|
-
name = "LimitExceededException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
retryAfterSeconds;
|
|
172
|
-
constructor(opts) {
|
|
173
|
-
super({
|
|
174
|
-
name: "LimitExceededException",
|
|
175
|
-
$fault: "client",
|
|
176
|
-
...opts,
|
|
177
|
-
});
|
|
178
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
179
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
class NotFoundException extends LexModelBuildingServiceServiceException {
|
|
183
|
-
name = "NotFoundException";
|
|
184
|
-
$fault = "client";
|
|
185
|
-
constructor(opts) {
|
|
186
|
-
super({
|
|
187
|
-
name: "NotFoundException",
|
|
188
|
-
$fault: "client",
|
|
189
|
-
...opts,
|
|
190
|
-
});
|
|
191
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
class PreconditionFailedException extends LexModelBuildingServiceServiceException {
|
|
195
|
-
name = "PreconditionFailedException";
|
|
196
|
-
$fault = "client";
|
|
197
|
-
constructor(opts) {
|
|
198
|
-
super({
|
|
199
|
-
name: "PreconditionFailedException",
|
|
200
|
-
$fault: "client",
|
|
201
|
-
...opts,
|
|
202
|
-
});
|
|
203
|
-
Object.setPrototypeOf(this, PreconditionFailedException.prototype);
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
class ResourceInUseException extends LexModelBuildingServiceServiceException {
|
|
207
|
-
name = "ResourceInUseException";
|
|
208
|
-
$fault = "client";
|
|
209
|
-
referenceType;
|
|
210
|
-
exampleReference;
|
|
211
|
-
constructor(opts) {
|
|
212
|
-
super({
|
|
213
|
-
name: "ResourceInUseException",
|
|
214
|
-
$fault: "client",
|
|
215
|
-
...opts,
|
|
216
|
-
});
|
|
217
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
218
|
-
this.referenceType = opts.referenceType;
|
|
219
|
-
this.exampleReference = opts.exampleReference;
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
const _ADE = "AccessDeniedException";
|
|
224
|
-
const _BA = "BotAliases";
|
|
225
|
-
const _BAM = "BotAliasMetadata";
|
|
226
|
-
const _BAML = "BotAliasMetadataList";
|
|
227
|
-
const _BCA = "BotChannelAssociation";
|
|
228
|
-
const _BCAL = "BotChannelAssociationList";
|
|
229
|
-
const _BIM = "BuiltinIntentMetadata";
|
|
230
|
-
const _BIML = "BuiltinIntentMetadataList";
|
|
231
|
-
const _BIS = "BuiltinIntentSlot";
|
|
232
|
-
const _BISL = "BuiltinIntentSlotList";
|
|
233
|
-
const _BM = "BotMetadata";
|
|
234
|
-
const _BML = "BotMetadataList";
|
|
235
|
-
const _BRE = "BadRequestException";
|
|
236
|
-
const _BSTM = "BuiltinSlotTypeMetadata";
|
|
237
|
-
const _BSTML = "BuiltinSlotTypeMetadataList";
|
|
238
|
-
const _CBV = "CreateBotVersion";
|
|
239
|
-
const _CBVR = "CreateBotVersionRequest";
|
|
240
|
-
const _CBVRr = "CreateBotVersionResponse";
|
|
241
|
-
const _CCM = "ChannelConfigurationMap";
|
|
242
|
-
const _CE = "ConflictException";
|
|
243
|
-
const _CH = "CodeHook";
|
|
244
|
-
const _CIV = "CreateIntentVersion";
|
|
245
|
-
const _CIVR = "CreateIntentVersionRequest";
|
|
246
|
-
const _CIVRr = "CreateIntentVersionResponse";
|
|
247
|
-
const _CLR = "ConversationLogsRequest";
|
|
248
|
-
const _CLRo = "ConversationLogsResponse";
|
|
249
|
-
const _CSTV = "CreateSlotTypeVersion";
|
|
250
|
-
const _CSTVR = "CreateSlotTypeVersionRequest";
|
|
251
|
-
const _CSTVRr = "CreateSlotTypeVersionResponse";
|
|
252
|
-
const _DB = "DeleteBot";
|
|
253
|
-
const _DBA = "DeleteBotAlias";
|
|
254
|
-
const _DBAR = "DeleteBotAliasRequest";
|
|
255
|
-
const _DBCA = "DeleteBotChannelAssociation";
|
|
256
|
-
const _DBCAR = "DeleteBotChannelAssociationRequest";
|
|
257
|
-
const _DBR = "DeleteBotRequest";
|
|
258
|
-
const _DBV = "DeleteBotVersion";
|
|
259
|
-
const _DBVR = "DeleteBotVersionRequest";
|
|
260
|
-
const _DI = "DeleteIntent";
|
|
261
|
-
const _DIR = "DeleteIntentRequest";
|
|
262
|
-
const _DIV = "DeleteIntentVersion";
|
|
263
|
-
const _DIVR = "DeleteIntentVersionRequest";
|
|
264
|
-
const _DST = "DeleteSlotType";
|
|
265
|
-
const _DSTR = "DeleteSlotTypeRequest";
|
|
266
|
-
const _DSTV = "DeleteSlotTypeVersion";
|
|
267
|
-
const _DSTVR = "DeleteSlotTypeVersionRequest";
|
|
268
|
-
const _DU = "DeleteUtterances";
|
|
269
|
-
const _DUR = "DeleteUtterancesRequest";
|
|
270
|
-
const _EV = "EnumerationValue";
|
|
271
|
-
const _EVn = "EnumerationValues";
|
|
272
|
-
const _FA = "FulfillmentActivity";
|
|
273
|
-
const _FUP = "FollowUpPrompt";
|
|
274
|
-
const _GB = "GetBot";
|
|
275
|
-
const _GBA = "GetBotAlias";
|
|
276
|
-
const _GBAR = "GetBotAliasesRequest";
|
|
277
|
-
const _GBARe = "GetBotAliasesResponse";
|
|
278
|
-
const _GBARet = "GetBotAliasRequest";
|
|
279
|
-
const _GBAReto = "GetBotAliasResponse";
|
|
280
|
-
const _GBAe = "GetBotAliases";
|
|
281
|
-
const _GBCA = "GetBotChannelAssociation";
|
|
282
|
-
const _GBCAR = "GetBotChannelAssociationRequest";
|
|
283
|
-
const _GBCARe = "GetBotChannelAssociationResponse";
|
|
284
|
-
const _GBCARet = "GetBotChannelAssociationsRequest";
|
|
285
|
-
const _GBCAReto = "GetBotChannelAssociationsResponse";
|
|
286
|
-
const _GBCAe = "GetBotChannelAssociations";
|
|
287
|
-
const _GBI = "GetBuiltinIntent";
|
|
288
|
-
const _GBIR = "GetBuiltinIntentRequest";
|
|
289
|
-
const _GBIRe = "GetBuiltinIntentResponse";
|
|
290
|
-
const _GBIRet = "GetBuiltinIntentsRequest";
|
|
291
|
-
const _GBIRetu = "GetBuiltinIntentsResponse";
|
|
292
|
-
const _GBIe = "GetBuiltinIntents";
|
|
293
|
-
const _GBR = "GetBotRequest";
|
|
294
|
-
const _GBRe = "GetBotResponse";
|
|
295
|
-
const _GBRet = "GetBotsRequest";
|
|
296
|
-
const _GBReto = "GetBotsResponse";
|
|
297
|
-
const _GBST = "GetBuiltinSlotTypes";
|
|
298
|
-
const _GBSTR = "GetBuiltinSlotTypesRequest";
|
|
299
|
-
const _GBSTRe = "GetBuiltinSlotTypesResponse";
|
|
300
|
-
const _GBV = "GetBotVersions";
|
|
301
|
-
const _GBVR = "GetBotVersionsRequest";
|
|
302
|
-
const _GBVRe = "GetBotVersionsResponse";
|
|
303
|
-
const _GBe = "GetBots";
|
|
304
|
-
const _GE = "GetExport";
|
|
305
|
-
const _GER = "GetExportRequest";
|
|
306
|
-
const _GERe = "GetExportResponse";
|
|
307
|
-
const _GI = "GetImport";
|
|
308
|
-
const _GIR = "GetImportRequest";
|
|
309
|
-
const _GIRe = "GetImportResponse";
|
|
310
|
-
const _GIRet = "GetIntentRequest";
|
|
311
|
-
const _GIRetn = "GetIntentResponse";
|
|
312
|
-
const _GIRetnt = "GetIntentsRequest";
|
|
313
|
-
const _GIRetnte = "GetIntentsResponse";
|
|
314
|
-
const _GIV = "GetIntentVersions";
|
|
315
|
-
const _GIVR = "GetIntentVersionsRequest";
|
|
316
|
-
const _GIVRe = "GetIntentVersionsResponse";
|
|
317
|
-
const _GIe = "GetIntent";
|
|
318
|
-
const _GIet = "GetIntents";
|
|
319
|
-
const _GM = "GetMigration";
|
|
320
|
-
const _GMR = "GetMigrationRequest";
|
|
321
|
-
const _GMRe = "GetMigrationResponse";
|
|
322
|
-
const _GMRet = "GetMigrationsRequest";
|
|
323
|
-
const _GMReti = "GetMigrationsResponse";
|
|
324
|
-
const _GMe = "GetMigrations";
|
|
325
|
-
const _GST = "GetSlotType";
|
|
326
|
-
const _GSTR = "GetSlotTypeRequest";
|
|
327
|
-
const _GSTRe = "GetSlotTypeResponse";
|
|
328
|
-
const _GSTRet = "GetSlotTypesRequest";
|
|
329
|
-
const _GSTRetl = "GetSlotTypesResponse";
|
|
330
|
-
const _GSTV = "GetSlotTypeVersions";
|
|
331
|
-
const _GSTVR = "GetSlotTypeVersionsRequest";
|
|
332
|
-
const _GSTVRe = "GetSlotTypeVersionsResponse";
|
|
333
|
-
const _GSTe = "GetSlotTypes";
|
|
334
|
-
const _GUV = "GetUtterancesView";
|
|
335
|
-
const _GUVR = "GetUtterancesViewRequest";
|
|
336
|
-
const _GUVRe = "GetUtterancesViewResponse";
|
|
337
|
-
const _I = "Intent";
|
|
338
|
-
const _IC = "InputContext";
|
|
339
|
-
const _ICL = "InputContextList";
|
|
340
|
-
const _IFE = "InternalFailureException";
|
|
341
|
-
const _IL = "IntentList";
|
|
342
|
-
const _IM = "IntentMetadata";
|
|
343
|
-
const _IML = "IntentMetadataList";
|
|
344
|
-
const _KC = "KendraConfiguration";
|
|
345
|
-
const _LEE = "LimitExceededException";
|
|
346
|
-
const _LOU = "ListOfUtterance";
|
|
347
|
-
const _LOUi = "ListsOfUtterances";
|
|
348
|
-
const _LSR = "LogSettingsRequest";
|
|
349
|
-
const _LSRL = "LogSettingsRequestList";
|
|
350
|
-
const _LSRLo = "LogSettingsResponseList";
|
|
351
|
-
const _LSRo = "LogSettingsResponse";
|
|
352
|
-
const _LTFR = "ListTagsForResource";
|
|
353
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
354
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
355
|
-
const _M = "Message";
|
|
356
|
-
const _MA = "MigrationAlert";
|
|
357
|
-
const _MAi = "MigrationAlerts";
|
|
358
|
-
const _ML = "MessageList";
|
|
359
|
-
const _MS = "MigrationSummary";
|
|
360
|
-
const _MSL = "MigrationSummaryList";
|
|
361
|
-
const _NFE = "NotFoundException";
|
|
362
|
-
const _OC = "OutputContext";
|
|
363
|
-
const _OCL = "OutputContextList";
|
|
364
|
-
const _P = "Prompt";
|
|
365
|
-
const _PB = "PutBot";
|
|
366
|
-
const _PBA = "PutBotAlias";
|
|
367
|
-
const _PBAR = "PutBotAliasRequest";
|
|
368
|
-
const _PBARu = "PutBotAliasResponse";
|
|
369
|
-
const _PBR = "PutBotRequest";
|
|
370
|
-
const _PBRu = "PutBotResponse";
|
|
371
|
-
const _PFE = "PreconditionFailedException";
|
|
372
|
-
const _PI = "PutIntent";
|
|
373
|
-
const _PIR = "PutIntentRequest";
|
|
374
|
-
const _PIRu = "PutIntentResponse";
|
|
375
|
-
const _PST = "PutSlotType";
|
|
376
|
-
const _PSTR = "PutSlotTypeRequest";
|
|
377
|
-
const _PSTRu = "PutSlotTypeResponse";
|
|
378
|
-
const _RA = "Retry-After";
|
|
379
|
-
const _RIUE = "ResourceInUseException";
|
|
380
|
-
const _RR = "ResourceReference";
|
|
381
|
-
const _S = "Slot";
|
|
382
|
-
const _SDV = "SlotDefaultValue";
|
|
383
|
-
const _SDVL = "SlotDefaultValueList";
|
|
384
|
-
const _SDVS = "SlotDefaultValueSpec";
|
|
385
|
-
const _SI = "StartImport";
|
|
386
|
-
const _SIR = "StartImportRequest";
|
|
387
|
-
const _SIRt = "StartImportResponse";
|
|
388
|
-
const _SL = "SlotList";
|
|
389
|
-
const _SM = "StartMigration";
|
|
390
|
-
const _SMR = "StartMigrationRequest";
|
|
391
|
-
const _SMRt = "StartMigrationResponse";
|
|
392
|
-
const _STC = "SlotTypeConfiguration";
|
|
393
|
-
const _STCl = "SlotTypeConfigurations";
|
|
394
|
-
const _STM = "SlotTypeMetadata";
|
|
395
|
-
const _STML = "SlotTypeMetadataList";
|
|
396
|
-
const _STRC = "SlotTypeRegexConfiguration";
|
|
397
|
-
const _St = "Statement";
|
|
398
|
-
const _T = "Tag";
|
|
399
|
-
const _TL = "TagList";
|
|
400
|
-
const _TR = "TagResource";
|
|
401
|
-
const _TRR = "TagResourceRequest";
|
|
402
|
-
const _TRRa = "TagResourceResponse";
|
|
403
|
-
const _UD = "UtteranceData";
|
|
404
|
-
const _UL = "UtteranceList";
|
|
405
|
-
const _UR = "UntagResource";
|
|
406
|
-
const _URR = "UntagResourceRequest";
|
|
407
|
-
const _URRn = "UntagResourceResponse";
|
|
408
|
-
const _a = "alerts";
|
|
409
|
-
const _aS = "abortStatement";
|
|
410
|
-
const _b = "bots";
|
|
411
|
-
const _bA = "botAlias";
|
|
412
|
-
const _bC = "botConfiguration";
|
|
413
|
-
const _bCA = "botChannelAssociations";
|
|
414
|
-
const _bN = "botName";
|
|
415
|
-
const _bV = "botVersion";
|
|
416
|
-
const _bVo = "botVersions";
|
|
417
|
-
const _bv = "bot_versions";
|
|
418
|
-
const _c = "client";
|
|
419
|
-
const _cD = "createdDate";
|
|
420
|
-
const _cDh = "childDirected";
|
|
421
|
-
const _cH = "codeHook";
|
|
422
|
-
const _cL = "conversationLogs";
|
|
423
|
-
const _cP = "clarificationPrompt";
|
|
424
|
-
const _cPo = "confirmationPrompt";
|
|
425
|
-
const _cS = "conclusionStatement";
|
|
426
|
-
const _cT = "contentType";
|
|
427
|
-
const _cV = "createVersion";
|
|
428
|
-
const _ch = "checksum";
|
|
429
|
-
const _co = "content";
|
|
430
|
-
const _cou = "count";
|
|
431
|
-
const _d = "description";
|
|
432
|
-
const _dCH = "dialogCodeHook";
|
|
433
|
-
const _dS = "detectSentiment";
|
|
434
|
-
const _dU = "distinctUsers";
|
|
435
|
-
const _dV = "defaultValue";
|
|
436
|
-
const _dVL = "defaultValueList";
|
|
437
|
-
const _dVS = "defaultValueSpec";
|
|
438
|
-
const _de = "destination";
|
|
439
|
-
const _det = "details";
|
|
440
|
-
const _e = "error";
|
|
441
|
-
const _eMI = "enableModelImprovements";
|
|
442
|
-
const _eR = "exampleReference";
|
|
443
|
-
const _eS = "exportStatus";
|
|
444
|
-
const _eT = "exportType";
|
|
445
|
-
const _eV = "enumerationValues";
|
|
446
|
-
const _fA = "fulfillmentActivity";
|
|
447
|
-
const _fR = "failureReason";
|
|
448
|
-
const _fUD = "firstUtteredDate";
|
|
449
|
-
const _fUP = "followUpPrompt";
|
|
450
|
-
const _gN = "groupNumber";
|
|
451
|
-
const _h = "http";
|
|
452
|
-
const _hE = "httpError";
|
|
453
|
-
const _hH = "httpHeader";
|
|
454
|
-
const _hQ = "httpQuery";
|
|
455
|
-
const _i = "intents";
|
|
456
|
-
const _iC = "inputContexts";
|
|
457
|
-
const _iI = "importId";
|
|
458
|
-
const _iN = "intentName";
|
|
459
|
-
const _iRA = "iamRoleArn";
|
|
460
|
-
const _iS = "importStatus";
|
|
461
|
-
const _iSTTLIS = "idleSessionTTLInSeconds";
|
|
462
|
-
const _iV = "intentVersion";
|
|
463
|
-
const _k = "key";
|
|
464
|
-
const _kC = "kendraConfiguration";
|
|
465
|
-
const _kI = "kendraIndex";
|
|
466
|
-
const _kKA = "kmsKeyArn";
|
|
467
|
-
const _l = "locale";
|
|
468
|
-
const _lS = "logSettings";
|
|
469
|
-
const _lT = "logType";
|
|
470
|
-
const _lUD = "lastUpdatedDate";
|
|
471
|
-
const _lUDa = "lastUtteredDate";
|
|
472
|
-
const _m = "message";
|
|
473
|
-
const _mA = "maxAttempts";
|
|
474
|
-
const _mI = "migrationId";
|
|
475
|
-
const _mR = "maxResults";
|
|
476
|
-
const _mS = "mergeStrategy";
|
|
477
|
-
const _mSE = "migrationStatusEquals";
|
|
478
|
-
const _mSi = "migrationStatus";
|
|
479
|
-
const _mSig = "migrationStrategy";
|
|
480
|
-
const _mSigr = "migrationSummaries";
|
|
481
|
-
const _mT = "migrationTimestamp";
|
|
482
|
-
const _mV = "messageVersion";
|
|
483
|
-
const _me = "messages";
|
|
484
|
-
const _n = "name";
|
|
485
|
-
const _nC = "nameContains";
|
|
486
|
-
const _nICT = "nluIntentConfidenceThreshold";
|
|
487
|
-
const _nT = "nextToken";
|
|
488
|
-
const _oC = "outputContexts";
|
|
489
|
-
const _oS = "obfuscationSetting";
|
|
490
|
-
const _p = "prompt";
|
|
491
|
-
const _pB = "processBehavior";
|
|
492
|
-
const _pIS = "parentIntentSignature";
|
|
493
|
-
const _pSTS = "parentSlotTypeSignature";
|
|
494
|
-
const _pa = "pattern";
|
|
495
|
-
const _pay = "payload";
|
|
496
|
-
const _pr = "priority";
|
|
497
|
-
const _qFS = "queryFilterString";
|
|
498
|
-
const _r = "role";
|
|
499
|
-
const _rA = "resourceArn";
|
|
500
|
-
const _rAS = "retryAfterSeconds";
|
|
501
|
-
const _rC = "responseCard";
|
|
502
|
-
const _rCe = "regexConfiguration";
|
|
503
|
-
const _rP = "resourcePrefix";
|
|
504
|
-
const _rS = "rejectionStatement";
|
|
505
|
-
const _rT = "resourceType";
|
|
506
|
-
const _rTe = "referenceType";
|
|
507
|
-
const _rURL = "referenceURLs";
|
|
508
|
-
const _s = "status";
|
|
509
|
-
const _sBA = "sortByAttribute";
|
|
510
|
-
const _sBO = "sortByOrder";
|
|
511
|
-
const _sC = "signatureContains";
|
|
512
|
-
const _sCl = "slotConstraint";
|
|
513
|
-
const _sL = "supportedLocales";
|
|
514
|
-
const _sT = "slotTypes";
|
|
515
|
-
const _sTC = "slotTypeConfigurations";
|
|
516
|
-
const _sTV = "slotTypeVersion";
|
|
517
|
-
const _sTl = "slotType";
|
|
518
|
-
const _sTt = "statusType";
|
|
519
|
-
const _sU = "sampleUtterances";
|
|
520
|
-
const _se = "server";
|
|
521
|
-
const _si = "signature";
|
|
522
|
-
const _sl = "slots";
|
|
523
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.lexmodelbuildingservice";
|
|
524
|
-
const _st = "status_type";
|
|
525
|
-
const _sy = "synonyms";
|
|
526
|
-
const _t = "type";
|
|
527
|
-
const _tK = "tagKeys";
|
|
528
|
-
const _tTL = "turnsToLive";
|
|
529
|
-
const _tTLIS = "timeToLiveInSeconds";
|
|
530
|
-
const _ta = "tags";
|
|
531
|
-
const _u = "uri";
|
|
532
|
-
const _uI = "userId";
|
|
533
|
-
const _uS = "utteranceString";
|
|
534
|
-
const _ur = "url";
|
|
535
|
-
const _ut = "utterances";
|
|
536
|
-
const _v = "version";
|
|
537
|
-
const _vBI = "v2BotId";
|
|
538
|
-
const _vBL = "v1BotLocale";
|
|
539
|
-
const _vBN = "v1BotName";
|
|
540
|
-
const _vBNC = "v1BotNameContains";
|
|
541
|
-
const _vBNo = "v2BotName";
|
|
542
|
-
const _vBR = "v2BotRole";
|
|
543
|
-
const _vBV = "v1BotVersion";
|
|
544
|
-
const _vEP = "valueElicitationPrompt";
|
|
545
|
-
const _vI = "voiceId";
|
|
546
|
-
const _vOA = "versionOrAlias";
|
|
547
|
-
const _vSS = "valueSelectionStrategy";
|
|
548
|
-
const _va = "value";
|
|
549
|
-
const n0 = "com.amazonaws.lexmodelbuildingservice";
|
|
550
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
551
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
552
|
-
[_m],
|
|
553
|
-
[0]
|
|
554
|
-
];
|
|
555
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
556
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
557
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
558
|
-
[_m],
|
|
559
|
-
[0]
|
|
560
|
-
];
|
|
561
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
562
|
-
var BotAliasMetadata$ = [3, n0, _BAM,
|
|
563
|
-
0,
|
|
564
|
-
[_n, _d, _bV, _bN, _lUD, _cD, _ch, _cL],
|
|
565
|
-
[0, 0, 0, 0, 4, 4, 0, () => ConversationLogsResponse$]
|
|
566
|
-
];
|
|
567
|
-
var BotChannelAssociation$ = [3, n0, _BCA,
|
|
568
|
-
0,
|
|
569
|
-
[_n, _d, _bA, _bN, _cD, _t, _bC, _s, _fR],
|
|
570
|
-
[0, 0, 0, 0, 4, 0, [() => ChannelConfigurationMap, 0], 0, 0]
|
|
571
|
-
];
|
|
572
|
-
var BotMetadata$ = [3, n0, _BM,
|
|
573
|
-
0,
|
|
574
|
-
[_n, _d, _s, _lUD, _cD, _v],
|
|
575
|
-
[0, 0, 0, 4, 4, 0]
|
|
576
|
-
];
|
|
577
|
-
var BuiltinIntentMetadata$ = [3, n0, _BIM,
|
|
578
|
-
0,
|
|
579
|
-
[_si, _sL],
|
|
580
|
-
[0, 64 | 0]
|
|
581
|
-
];
|
|
582
|
-
var BuiltinIntentSlot$ = [3, n0, _BIS,
|
|
583
|
-
0,
|
|
584
|
-
[_n],
|
|
585
|
-
[0]
|
|
586
|
-
];
|
|
587
|
-
var BuiltinSlotTypeMetadata$ = [3, n0, _BSTM,
|
|
588
|
-
0,
|
|
589
|
-
[_si, _sL],
|
|
590
|
-
[0, 64 | 0]
|
|
591
|
-
];
|
|
592
|
-
var CodeHook$ = [3, n0, _CH,
|
|
593
|
-
0,
|
|
594
|
-
[_u, _mV],
|
|
595
|
-
[0, 0], 2
|
|
596
|
-
];
|
|
597
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
598
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
599
|
-
[_m],
|
|
600
|
-
[0]
|
|
601
|
-
];
|
|
602
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
603
|
-
var ConversationLogsRequest$ = [3, n0, _CLR,
|
|
604
|
-
0,
|
|
605
|
-
[_lS, _iRA],
|
|
606
|
-
[() => LogSettingsRequestList, 0], 2
|
|
607
|
-
];
|
|
608
|
-
var ConversationLogsResponse$ = [3, n0, _CLRo,
|
|
609
|
-
0,
|
|
610
|
-
[_lS, _iRA],
|
|
611
|
-
[() => LogSettingsResponseList, 0]
|
|
612
|
-
];
|
|
613
|
-
var CreateBotVersionRequest$ = [3, n0, _CBVR,
|
|
614
|
-
0,
|
|
615
|
-
[_n, _ch],
|
|
616
|
-
[[0, 1], 0], 1
|
|
617
|
-
];
|
|
618
|
-
var CreateBotVersionResponse$ = [3, n0, _CBVRr,
|
|
619
|
-
0,
|
|
620
|
-
[_n, _d, _i, _cP, _aS, _s, _fR, _lUD, _cD, _iSTTLIS, _vI, _ch, _v, _l, _cDh, _eMI, _dS],
|
|
621
|
-
[0, 0, () => IntentList, () => Prompt$, () => Statement$, 0, 0, 4, 4, 1, 0, 0, 0, 0, 2, 2, 2]
|
|
622
|
-
];
|
|
623
|
-
var CreateIntentVersionRequest$ = [3, n0, _CIVR,
|
|
624
|
-
0,
|
|
625
|
-
[_n, _ch],
|
|
626
|
-
[[0, 1], 0], 1
|
|
627
|
-
];
|
|
628
|
-
var CreateIntentVersionResponse$ = [3, n0, _CIVRr,
|
|
629
|
-
0,
|
|
630
|
-
[_n, _d, _sl, _sU, _cPo, _rS, _fUP, _cS, _dCH, _fA, _pIS, _lUD, _cD, _v, _ch, _kC, _iC, _oC],
|
|
631
|
-
[0, 0, () => SlotList, 64 | 0, () => Prompt$, () => Statement$, () => FollowUpPrompt$, () => Statement$, () => CodeHook$, () => FulfillmentActivity$, 0, 4, 4, 0, 0, () => KendraConfiguration$, () => InputContextList, () => OutputContextList]
|
|
632
|
-
];
|
|
633
|
-
var CreateSlotTypeVersionRequest$ = [3, n0, _CSTVR,
|
|
634
|
-
0,
|
|
635
|
-
[_n, _ch],
|
|
636
|
-
[[0, 1], 0], 1
|
|
637
|
-
];
|
|
638
|
-
var CreateSlotTypeVersionResponse$ = [3, n0, _CSTVRr,
|
|
639
|
-
0,
|
|
640
|
-
[_n, _d, _eV, _lUD, _cD, _v, _ch, _vSS, _pSTS, _sTC],
|
|
641
|
-
[0, 0, () => EnumerationValues, 4, 4, 0, 0, 0, 0, () => SlotTypeConfigurations]
|
|
642
|
-
];
|
|
643
|
-
var DeleteBotAliasRequest$ = [3, n0, _DBAR,
|
|
644
|
-
0,
|
|
645
|
-
[_n, _bN],
|
|
646
|
-
[[0, 1], [0, 1]], 2
|
|
647
|
-
];
|
|
648
|
-
var DeleteBotChannelAssociationRequest$ = [3, n0, _DBCAR,
|
|
649
|
-
0,
|
|
650
|
-
[_n, _bN, _bA],
|
|
651
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
652
|
-
];
|
|
653
|
-
var DeleteBotRequest$ = [3, n0, _DBR,
|
|
654
|
-
0,
|
|
655
|
-
[_n],
|
|
656
|
-
[[0, 1]], 1
|
|
657
|
-
];
|
|
658
|
-
var DeleteBotVersionRequest$ = [3, n0, _DBVR,
|
|
659
|
-
0,
|
|
660
|
-
[_n, _v],
|
|
661
|
-
[[0, 1], [0, 1]], 2
|
|
662
|
-
];
|
|
663
|
-
var DeleteIntentRequest$ = [3, n0, _DIR,
|
|
664
|
-
0,
|
|
665
|
-
[_n],
|
|
666
|
-
[[0, 1]], 1
|
|
667
|
-
];
|
|
668
|
-
var DeleteIntentVersionRequest$ = [3, n0, _DIVR,
|
|
669
|
-
0,
|
|
670
|
-
[_n, _v],
|
|
671
|
-
[[0, 1], [0, 1]], 2
|
|
672
|
-
];
|
|
673
|
-
var DeleteSlotTypeRequest$ = [3, n0, _DSTR,
|
|
674
|
-
0,
|
|
675
|
-
[_n],
|
|
676
|
-
[[0, 1]], 1
|
|
677
|
-
];
|
|
678
|
-
var DeleteSlotTypeVersionRequest$ = [3, n0, _DSTVR,
|
|
679
|
-
0,
|
|
680
|
-
[_n, _v],
|
|
681
|
-
[[0, 1], [0, 1]], 2
|
|
682
|
-
];
|
|
683
|
-
var DeleteUtterancesRequest$ = [3, n0, _DUR,
|
|
684
|
-
0,
|
|
685
|
-
[_bN, _uI],
|
|
686
|
-
[[0, 1], [0, 1]], 2
|
|
687
|
-
];
|
|
688
|
-
var EnumerationValue$ = [3, n0, _EV,
|
|
689
|
-
0,
|
|
690
|
-
[_va, _sy],
|
|
691
|
-
[0, 64 | 0], 1
|
|
692
|
-
];
|
|
693
|
-
var FollowUpPrompt$ = [3, n0, _FUP,
|
|
694
|
-
0,
|
|
695
|
-
[_p, _rS],
|
|
696
|
-
[() => Prompt$, () => Statement$], 2
|
|
697
|
-
];
|
|
698
|
-
var FulfillmentActivity$ = [3, n0, _FA,
|
|
699
|
-
0,
|
|
700
|
-
[_t, _cH],
|
|
701
|
-
[0, () => CodeHook$], 1
|
|
702
|
-
];
|
|
703
|
-
var GetBotAliasesRequest$ = [3, n0, _GBAR,
|
|
704
|
-
0,
|
|
705
|
-
[_bN, _nT, _mR, _nC],
|
|
706
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nC }]], 1
|
|
707
|
-
];
|
|
708
|
-
var GetBotAliasesResponse$ = [3, n0, _GBARe,
|
|
709
|
-
0,
|
|
710
|
-
[_BA, _nT],
|
|
711
|
-
[() => BotAliasMetadataList, 0]
|
|
712
|
-
];
|
|
713
|
-
var GetBotAliasRequest$ = [3, n0, _GBARet,
|
|
714
|
-
0,
|
|
715
|
-
[_n, _bN],
|
|
716
|
-
[[0, 1], [0, 1]], 2
|
|
717
|
-
];
|
|
718
|
-
var GetBotAliasResponse$ = [3, n0, _GBAReto,
|
|
719
|
-
0,
|
|
720
|
-
[_n, _d, _bV, _bN, _lUD, _cD, _ch, _cL],
|
|
721
|
-
[0, 0, 0, 0, 4, 4, 0, () => ConversationLogsResponse$]
|
|
722
|
-
];
|
|
723
|
-
var GetBotChannelAssociationRequest$ = [3, n0, _GBCAR,
|
|
724
|
-
0,
|
|
725
|
-
[_n, _bN, _bA],
|
|
726
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
727
|
-
];
|
|
728
|
-
var GetBotChannelAssociationResponse$ = [3, n0, _GBCARe,
|
|
729
|
-
0,
|
|
730
|
-
[_n, _d, _bA, _bN, _cD, _t, _bC, _s, _fR],
|
|
731
|
-
[0, 0, 0, 0, 4, 0, [() => ChannelConfigurationMap, 0], 0, 0]
|
|
732
|
-
];
|
|
733
|
-
var GetBotChannelAssociationsRequest$ = [3, n0, _GBCARet,
|
|
734
|
-
0,
|
|
735
|
-
[_bN, _bA, _nT, _mR, _nC],
|
|
736
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nC }]], 2
|
|
737
|
-
];
|
|
738
|
-
var GetBotChannelAssociationsResponse$ = [3, n0, _GBCAReto,
|
|
739
|
-
0,
|
|
740
|
-
[_bCA, _nT],
|
|
741
|
-
[[() => BotChannelAssociationList, 0], 0]
|
|
742
|
-
];
|
|
743
|
-
var GetBotRequest$ = [3, n0, _GBR,
|
|
744
|
-
0,
|
|
745
|
-
[_n, _vOA],
|
|
746
|
-
[[0, 1], [0, 1]], 2
|
|
747
|
-
];
|
|
748
|
-
var GetBotResponse$ = [3, n0, _GBRe,
|
|
749
|
-
0,
|
|
750
|
-
[_n, _d, _i, _eMI, _nICT, _cP, _aS, _s, _fR, _lUD, _cD, _iSTTLIS, _vI, _ch, _v, _l, _cDh, _dS],
|
|
751
|
-
[0, 0, () => IntentList, 2, 1, () => Prompt$, () => Statement$, 0, 0, 4, 4, 1, 0, 0, 0, 0, 2, 2]
|
|
752
|
-
];
|
|
753
|
-
var GetBotsRequest$ = [3, n0, _GBRet,
|
|
754
|
-
0,
|
|
755
|
-
[_nT, _mR, _nC],
|
|
756
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nC }]]
|
|
757
|
-
];
|
|
758
|
-
var GetBotsResponse$ = [3, n0, _GBReto,
|
|
759
|
-
0,
|
|
760
|
-
[_b, _nT],
|
|
761
|
-
[() => BotMetadataList, 0]
|
|
762
|
-
];
|
|
763
|
-
var GetBotVersionsRequest$ = [3, n0, _GBVR,
|
|
764
|
-
0,
|
|
765
|
-
[_n, _nT, _mR],
|
|
766
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
767
|
-
];
|
|
768
|
-
var GetBotVersionsResponse$ = [3, n0, _GBVRe,
|
|
769
|
-
0,
|
|
770
|
-
[_b, _nT],
|
|
771
|
-
[() => BotMetadataList, 0]
|
|
772
|
-
];
|
|
773
|
-
var GetBuiltinIntentRequest$ = [3, n0, _GBIR,
|
|
774
|
-
0,
|
|
775
|
-
[_si],
|
|
776
|
-
[[0, 1]], 1
|
|
777
|
-
];
|
|
778
|
-
var GetBuiltinIntentResponse$ = [3, n0, _GBIRe,
|
|
779
|
-
0,
|
|
780
|
-
[_si, _sL, _sl],
|
|
781
|
-
[0, 64 | 0, () => BuiltinIntentSlotList]
|
|
782
|
-
];
|
|
783
|
-
var GetBuiltinIntentsRequest$ = [3, n0, _GBIRet,
|
|
784
|
-
0,
|
|
785
|
-
[_l, _sC, _nT, _mR],
|
|
786
|
-
[[0, { [_hQ]: _l }], [0, { [_hQ]: _sC }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
787
|
-
];
|
|
788
|
-
var GetBuiltinIntentsResponse$ = [3, n0, _GBIRetu,
|
|
789
|
-
0,
|
|
790
|
-
[_i, _nT],
|
|
791
|
-
[() => BuiltinIntentMetadataList, 0]
|
|
792
|
-
];
|
|
793
|
-
var GetBuiltinSlotTypesRequest$ = [3, n0, _GBSTR,
|
|
794
|
-
0,
|
|
795
|
-
[_l, _sC, _nT, _mR],
|
|
796
|
-
[[0, { [_hQ]: _l }], [0, { [_hQ]: _sC }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
797
|
-
];
|
|
798
|
-
var GetBuiltinSlotTypesResponse$ = [3, n0, _GBSTRe,
|
|
799
|
-
0,
|
|
800
|
-
[_sT, _nT],
|
|
801
|
-
[() => BuiltinSlotTypeMetadataList, 0]
|
|
802
|
-
];
|
|
803
|
-
var GetExportRequest$ = [3, n0, _GER,
|
|
804
|
-
0,
|
|
805
|
-
[_n, _v, _rT, _eT],
|
|
806
|
-
[[0, { [_hQ]: _n }], [0, { [_hQ]: _v }], [0, { [_hQ]: _rT }], [0, { [_hQ]: _eT }]], 4
|
|
807
|
-
];
|
|
808
|
-
var GetExportResponse$ = [3, n0, _GERe,
|
|
809
|
-
0,
|
|
810
|
-
[_n, _v, _rT, _eT, _eS, _fR, _ur],
|
|
811
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
812
|
-
];
|
|
813
|
-
var GetImportRequest$ = [3, n0, _GIR,
|
|
814
|
-
0,
|
|
815
|
-
[_iI],
|
|
816
|
-
[[0, 1]], 1
|
|
817
|
-
];
|
|
818
|
-
var GetImportResponse$ = [3, n0, _GIRe,
|
|
819
|
-
0,
|
|
820
|
-
[_n, _rT, _mS, _iI, _iS, _fR, _cD],
|
|
821
|
-
[0, 0, 0, 0, 0, 64 | 0, 4]
|
|
822
|
-
];
|
|
823
|
-
var GetIntentRequest$ = [3, n0, _GIRet,
|
|
824
|
-
0,
|
|
825
|
-
[_n, _v],
|
|
826
|
-
[[0, 1], [0, 1]], 2
|
|
827
|
-
];
|
|
828
|
-
var GetIntentResponse$ = [3, n0, _GIRetn,
|
|
829
|
-
0,
|
|
830
|
-
[_n, _d, _sl, _sU, _cPo, _rS, _fUP, _cS, _dCH, _fA, _pIS, _lUD, _cD, _v, _ch, _kC, _iC, _oC],
|
|
831
|
-
[0, 0, () => SlotList, 64 | 0, () => Prompt$, () => Statement$, () => FollowUpPrompt$, () => Statement$, () => CodeHook$, () => FulfillmentActivity$, 0, 4, 4, 0, 0, () => KendraConfiguration$, () => InputContextList, () => OutputContextList]
|
|
832
|
-
];
|
|
833
|
-
var GetIntentsRequest$ = [3, n0, _GIRetnt,
|
|
834
|
-
0,
|
|
835
|
-
[_nT, _mR, _nC],
|
|
836
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nC }]]
|
|
837
|
-
];
|
|
838
|
-
var GetIntentsResponse$ = [3, n0, _GIRetnte,
|
|
839
|
-
0,
|
|
840
|
-
[_i, _nT],
|
|
841
|
-
[() => IntentMetadataList, 0]
|
|
842
|
-
];
|
|
843
|
-
var GetIntentVersionsRequest$ = [3, n0, _GIVR,
|
|
844
|
-
0,
|
|
845
|
-
[_n, _nT, _mR],
|
|
846
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
847
|
-
];
|
|
848
|
-
var GetIntentVersionsResponse$ = [3, n0, _GIVRe,
|
|
849
|
-
0,
|
|
850
|
-
[_i, _nT],
|
|
851
|
-
[() => IntentMetadataList, 0]
|
|
852
|
-
];
|
|
853
|
-
var GetMigrationRequest$ = [3, n0, _GMR,
|
|
854
|
-
0,
|
|
855
|
-
[_mI],
|
|
856
|
-
[[0, 1]], 1
|
|
857
|
-
];
|
|
858
|
-
var GetMigrationResponse$ = [3, n0, _GMRe,
|
|
859
|
-
0,
|
|
860
|
-
[_mI, _vBN, _vBV, _vBL, _vBI, _vBR, _mSi, _mSig, _mT, _a],
|
|
861
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 4, () => MigrationAlerts]
|
|
862
|
-
];
|
|
863
|
-
var GetMigrationsRequest$ = [3, n0, _GMRet,
|
|
864
|
-
0,
|
|
865
|
-
[_sBA, _sBO, _vBNC, _mSE, _mR, _nT],
|
|
866
|
-
[[0, { [_hQ]: _sBA }], [0, { [_hQ]: _sBO }], [0, { [_hQ]: _vBNC }], [0, { [_hQ]: _mSE }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
867
|
-
];
|
|
868
|
-
var GetMigrationsResponse$ = [3, n0, _GMReti,
|
|
869
|
-
0,
|
|
870
|
-
[_mSigr, _nT],
|
|
871
|
-
[() => MigrationSummaryList, 0]
|
|
872
|
-
];
|
|
873
|
-
var GetSlotTypeRequest$ = [3, n0, _GSTR,
|
|
874
|
-
0,
|
|
875
|
-
[_n, _v],
|
|
876
|
-
[[0, 1], [0, 1]], 2
|
|
877
|
-
];
|
|
878
|
-
var GetSlotTypeResponse$ = [3, n0, _GSTRe,
|
|
879
|
-
0,
|
|
880
|
-
[_n, _d, _eV, _lUD, _cD, _v, _ch, _vSS, _pSTS, _sTC],
|
|
881
|
-
[0, 0, () => EnumerationValues, 4, 4, 0, 0, 0, 0, () => SlotTypeConfigurations]
|
|
882
|
-
];
|
|
883
|
-
var GetSlotTypesRequest$ = [3, n0, _GSTRet,
|
|
884
|
-
0,
|
|
885
|
-
[_nT, _mR, _nC],
|
|
886
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nC }]]
|
|
887
|
-
];
|
|
888
|
-
var GetSlotTypesResponse$ = [3, n0, _GSTRetl,
|
|
889
|
-
0,
|
|
890
|
-
[_sT, _nT],
|
|
891
|
-
[() => SlotTypeMetadataList, 0]
|
|
892
|
-
];
|
|
893
|
-
var GetSlotTypeVersionsRequest$ = [3, n0, _GSTVR,
|
|
894
|
-
0,
|
|
895
|
-
[_n, _nT, _mR],
|
|
896
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
897
|
-
];
|
|
898
|
-
var GetSlotTypeVersionsResponse$ = [3, n0, _GSTVRe,
|
|
899
|
-
0,
|
|
900
|
-
[_sT, _nT],
|
|
901
|
-
[() => SlotTypeMetadataList, 0]
|
|
902
|
-
];
|
|
903
|
-
var GetUtterancesViewRequest$ = [3, n0, _GUVR,
|
|
904
|
-
0,
|
|
905
|
-
[_bN, _bVo, _sTt],
|
|
906
|
-
[[0, 1], [64 | 0, { [_hQ]: _bv }], [0, { [_hQ]: _st }]], 3
|
|
907
|
-
];
|
|
908
|
-
var GetUtterancesViewResponse$ = [3, n0, _GUVRe,
|
|
909
|
-
0,
|
|
910
|
-
[_bN, _ut],
|
|
911
|
-
[0, () => ListsOfUtterances]
|
|
912
|
-
];
|
|
913
|
-
var InputContext$ = [3, n0, _IC,
|
|
914
|
-
0,
|
|
915
|
-
[_n],
|
|
916
|
-
[0], 1
|
|
917
|
-
];
|
|
918
|
-
var Intent$ = [3, n0, _I,
|
|
919
|
-
0,
|
|
920
|
-
[_iN, _iV],
|
|
921
|
-
[0, 0], 2
|
|
922
|
-
];
|
|
923
|
-
var IntentMetadata$ = [3, n0, _IM,
|
|
924
|
-
0,
|
|
925
|
-
[_n, _d, _lUD, _cD, _v],
|
|
926
|
-
[0, 0, 4, 4, 0]
|
|
927
|
-
];
|
|
928
|
-
var InternalFailureException$ = [-3, n0, _IFE,
|
|
929
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
930
|
-
[_m],
|
|
931
|
-
[0]
|
|
932
|
-
];
|
|
933
|
-
schema.TypeRegistry.for(n0).registerError(InternalFailureException$, InternalFailureException);
|
|
934
|
-
var KendraConfiguration$ = [3, n0, _KC,
|
|
935
|
-
0,
|
|
936
|
-
[_kI, _r, _qFS],
|
|
937
|
-
[0, 0, 0], 2
|
|
938
|
-
];
|
|
939
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
940
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
941
|
-
[_rAS, _m],
|
|
942
|
-
[[0, { [_hH]: _RA }], 0]
|
|
943
|
-
];
|
|
944
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
945
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
946
|
-
0,
|
|
947
|
-
[_rA],
|
|
948
|
-
[[0, 1]], 1
|
|
949
|
-
];
|
|
950
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
951
|
-
0,
|
|
952
|
-
[_ta],
|
|
953
|
-
[() => TagList]
|
|
954
|
-
];
|
|
955
|
-
var LogSettingsRequest$ = [3, n0, _LSR,
|
|
956
|
-
0,
|
|
957
|
-
[_lT, _de, _rA, _kKA],
|
|
958
|
-
[0, 0, 0, 0], 3
|
|
959
|
-
];
|
|
960
|
-
var LogSettingsResponse$ = [3, n0, _LSRo,
|
|
961
|
-
0,
|
|
962
|
-
[_lT, _de, _kKA, _rA, _rP],
|
|
963
|
-
[0, 0, 0, 0, 0]
|
|
964
|
-
];
|
|
965
|
-
var Message$ = [3, n0, _M,
|
|
966
|
-
0,
|
|
967
|
-
[_cT, _co, _gN],
|
|
968
|
-
[0, 0, 1], 2
|
|
969
|
-
];
|
|
970
|
-
var MigrationAlert$ = [3, n0, _MA,
|
|
971
|
-
0,
|
|
972
|
-
[_t, _m, _det, _rURL],
|
|
973
|
-
[0, 0, 64 | 0, 64 | 0]
|
|
974
|
-
];
|
|
975
|
-
var MigrationSummary$ = [3, n0, _MS,
|
|
976
|
-
0,
|
|
977
|
-
[_mI, _vBN, _vBV, _vBL, _vBI, _vBR, _mSi, _mSig, _mT],
|
|
978
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 4]
|
|
979
|
-
];
|
|
980
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
981
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
982
|
-
[_m],
|
|
983
|
-
[0]
|
|
984
|
-
];
|
|
985
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
986
|
-
var OutputContext$ = [3, n0, _OC,
|
|
987
|
-
0,
|
|
988
|
-
[_n, _tTLIS, _tTL],
|
|
989
|
-
[0, 1, 1], 3
|
|
990
|
-
];
|
|
991
|
-
var PreconditionFailedException$ = [-3, n0, _PFE,
|
|
992
|
-
{ [_e]: _c, [_hE]: 412 },
|
|
993
|
-
[_m],
|
|
994
|
-
[0]
|
|
995
|
-
];
|
|
996
|
-
schema.TypeRegistry.for(n0).registerError(PreconditionFailedException$, PreconditionFailedException);
|
|
997
|
-
var Prompt$ = [3, n0, _P,
|
|
998
|
-
0,
|
|
999
|
-
[_me, _mA, _rC],
|
|
1000
|
-
[() => MessageList, 1, 0], 2
|
|
1001
|
-
];
|
|
1002
|
-
var PutBotAliasRequest$ = [3, n0, _PBAR,
|
|
1003
|
-
0,
|
|
1004
|
-
[_n, _bV, _bN, _d, _ch, _cL, _ta],
|
|
1005
|
-
[[0, 1], 0, [0, 1], 0, 0, () => ConversationLogsRequest$, () => TagList], 3
|
|
1006
|
-
];
|
|
1007
|
-
var PutBotAliasResponse$ = [3, n0, _PBARu,
|
|
1008
|
-
0,
|
|
1009
|
-
[_n, _d, _bV, _bN, _lUD, _cD, _ch, _cL, _ta],
|
|
1010
|
-
[0, 0, 0, 0, 4, 4, 0, () => ConversationLogsResponse$, () => TagList]
|
|
1011
|
-
];
|
|
1012
|
-
var PutBotRequest$ = [3, n0, _PBR,
|
|
1013
|
-
0,
|
|
1014
|
-
[_n, _l, _cDh, _d, _i, _eMI, _nICT, _cP, _aS, _iSTTLIS, _vI, _ch, _pB, _dS, _cV, _ta],
|
|
1015
|
-
[[0, 1], 0, 2, 0, () => IntentList, 2, 1, () => Prompt$, () => Statement$, 1, 0, 0, 0, 2, 2, () => TagList], 3
|
|
1016
|
-
];
|
|
1017
|
-
var PutBotResponse$ = [3, n0, _PBRu,
|
|
1018
|
-
0,
|
|
1019
|
-
[_n, _d, _i, _eMI, _nICT, _cP, _aS, _s, _fR, _lUD, _cD, _iSTTLIS, _vI, _ch, _v, _l, _cDh, _cV, _dS, _ta],
|
|
1020
|
-
[0, 0, () => IntentList, 2, 1, () => Prompt$, () => Statement$, 0, 0, 4, 4, 1, 0, 0, 0, 0, 2, 2, 2, () => TagList]
|
|
1021
|
-
];
|
|
1022
|
-
var PutIntentRequest$ = [3, n0, _PIR,
|
|
1023
|
-
0,
|
|
1024
|
-
[_n, _d, _sl, _sU, _cPo, _rS, _fUP, _cS, _dCH, _fA, _pIS, _ch, _cV, _kC, _iC, _oC],
|
|
1025
|
-
[[0, 1], 0, () => SlotList, 64 | 0, () => Prompt$, () => Statement$, () => FollowUpPrompt$, () => Statement$, () => CodeHook$, () => FulfillmentActivity$, 0, 0, 2, () => KendraConfiguration$, () => InputContextList, () => OutputContextList], 1
|
|
1026
|
-
];
|
|
1027
|
-
var PutIntentResponse$ = [3, n0, _PIRu,
|
|
1028
|
-
0,
|
|
1029
|
-
[_n, _d, _sl, _sU, _cPo, _rS, _fUP, _cS, _dCH, _fA, _pIS, _lUD, _cD, _v, _ch, _cV, _kC, _iC, _oC],
|
|
1030
|
-
[0, 0, () => SlotList, 64 | 0, () => Prompt$, () => Statement$, () => FollowUpPrompt$, () => Statement$, () => CodeHook$, () => FulfillmentActivity$, 0, 4, 4, 0, 0, 2, () => KendraConfiguration$, () => InputContextList, () => OutputContextList]
|
|
1031
|
-
];
|
|
1032
|
-
var PutSlotTypeRequest$ = [3, n0, _PSTR,
|
|
1033
|
-
0,
|
|
1034
|
-
[_n, _d, _eV, _ch, _vSS, _cV, _pSTS, _sTC],
|
|
1035
|
-
[[0, 1], 0, () => EnumerationValues, 0, 0, 2, 0, () => SlotTypeConfigurations], 1
|
|
1036
|
-
];
|
|
1037
|
-
var PutSlotTypeResponse$ = [3, n0, _PSTRu,
|
|
1038
|
-
0,
|
|
1039
|
-
[_n, _d, _eV, _lUD, _cD, _v, _ch, _vSS, _cV, _pSTS, _sTC],
|
|
1040
|
-
[0, 0, () => EnumerationValues, 4, 4, 0, 0, 0, 2, 0, () => SlotTypeConfigurations]
|
|
1041
|
-
];
|
|
1042
|
-
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
1043
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1044
|
-
[_rTe, _eR],
|
|
1045
|
-
[0, () => ResourceReference$]
|
|
1046
|
-
];
|
|
1047
|
-
schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
1048
|
-
var ResourceReference$ = [3, n0, _RR,
|
|
1049
|
-
0,
|
|
1050
|
-
[_n, _v],
|
|
1051
|
-
[0, 0]
|
|
1052
|
-
];
|
|
1053
|
-
var Slot$ = [3, n0, _S,
|
|
1054
|
-
0,
|
|
1055
|
-
[_n, _sCl, _d, _sTl, _sTV, _vEP, _pr, _sU, _rC, _oS, _dVS],
|
|
1056
|
-
[0, 0, 0, 0, 0, () => Prompt$, 1, 64 | 0, 0, 0, () => SlotDefaultValueSpec$], 2
|
|
1057
|
-
];
|
|
1058
|
-
var SlotDefaultValue$ = [3, n0, _SDV,
|
|
1059
|
-
0,
|
|
1060
|
-
[_dV],
|
|
1061
|
-
[0], 1
|
|
1062
|
-
];
|
|
1063
|
-
var SlotDefaultValueSpec$ = [3, n0, _SDVS,
|
|
1064
|
-
0,
|
|
1065
|
-
[_dVL],
|
|
1066
|
-
[() => SlotDefaultValueList], 1
|
|
1067
|
-
];
|
|
1068
|
-
var SlotTypeConfiguration$ = [3, n0, _STC,
|
|
1069
|
-
0,
|
|
1070
|
-
[_rCe],
|
|
1071
|
-
[() => SlotTypeRegexConfiguration$]
|
|
1072
|
-
];
|
|
1073
|
-
var SlotTypeMetadata$ = [3, n0, _STM,
|
|
1074
|
-
0,
|
|
1075
|
-
[_n, _d, _lUD, _cD, _v],
|
|
1076
|
-
[0, 0, 4, 4, 0]
|
|
1077
|
-
];
|
|
1078
|
-
var SlotTypeRegexConfiguration$ = [3, n0, _STRC,
|
|
1079
|
-
0,
|
|
1080
|
-
[_pa],
|
|
1081
|
-
[0], 1
|
|
1082
|
-
];
|
|
1083
|
-
var StartImportRequest$ = [3, n0, _SIR,
|
|
1084
|
-
0,
|
|
1085
|
-
[_pay, _rT, _mS, _ta],
|
|
1086
|
-
[21, 0, 0, () => TagList], 3
|
|
1087
|
-
];
|
|
1088
|
-
var StartImportResponse$ = [3, n0, _SIRt,
|
|
1089
|
-
0,
|
|
1090
|
-
[_n, _rT, _mS, _iI, _iS, _ta, _cD],
|
|
1091
|
-
[0, 0, 0, 0, 0, () => TagList, 4]
|
|
1092
|
-
];
|
|
1093
|
-
var StartMigrationRequest$ = [3, n0, _SMR,
|
|
1094
|
-
0,
|
|
1095
|
-
[_vBN, _vBV, _vBNo, _vBR, _mSig],
|
|
1096
|
-
[0, 0, 0, 0, 0], 5
|
|
1097
|
-
];
|
|
1098
|
-
var StartMigrationResponse$ = [3, n0, _SMRt,
|
|
1099
|
-
0,
|
|
1100
|
-
[_vBN, _vBV, _vBL, _vBI, _vBR, _mI, _mSig, _mT],
|
|
1101
|
-
[0, 0, 0, 0, 0, 0, 0, 4]
|
|
1102
|
-
];
|
|
1103
|
-
var Statement$ = [3, n0, _St,
|
|
1104
|
-
0,
|
|
1105
|
-
[_me, _rC],
|
|
1106
|
-
[() => MessageList, 0], 1
|
|
1107
|
-
];
|
|
1108
|
-
var Tag$ = [3, n0, _T,
|
|
1109
|
-
0,
|
|
1110
|
-
[_k, _va],
|
|
1111
|
-
[0, 0], 2
|
|
1112
|
-
];
|
|
1113
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1114
|
-
0,
|
|
1115
|
-
[_rA, _ta],
|
|
1116
|
-
[[0, 1], () => TagList], 2
|
|
1117
|
-
];
|
|
1118
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1119
|
-
0,
|
|
1120
|
-
[],
|
|
1121
|
-
[]
|
|
1122
|
-
];
|
|
1123
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1124
|
-
0,
|
|
1125
|
-
[_rA, _tK],
|
|
1126
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1127
|
-
];
|
|
1128
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1129
|
-
0,
|
|
1130
|
-
[],
|
|
1131
|
-
[]
|
|
1132
|
-
];
|
|
1133
|
-
var UtteranceData$ = [3, n0, _UD,
|
|
1134
|
-
0,
|
|
1135
|
-
[_uS, _cou, _dU, _fUD, _lUDa],
|
|
1136
|
-
[0, 1, 1, 4, 4]
|
|
1137
|
-
];
|
|
1138
|
-
var UtteranceList$ = [3, n0, _UL,
|
|
1139
|
-
0,
|
|
1140
|
-
[_bV, _ut],
|
|
1141
|
-
[0, () => ListOfUtterance]
|
|
1142
|
-
];
|
|
1143
|
-
var __Unit = "unit";
|
|
1144
|
-
var LexModelBuildingServiceServiceException$ = [-3, _sm, "LexModelBuildingServiceServiceException", 0, [], []];
|
|
1145
|
-
schema.TypeRegistry.for(_sm).registerError(LexModelBuildingServiceServiceException$, LexModelBuildingServiceServiceException);
|
|
1146
|
-
var BotAliasMetadataList = [1, n0, _BAML,
|
|
1147
|
-
0, () => BotAliasMetadata$
|
|
1148
|
-
];
|
|
1149
|
-
var BotChannelAssociationList = [1, n0, _BCAL,
|
|
1150
|
-
0, [() => BotChannelAssociation$,
|
|
1151
|
-
0]
|
|
1152
|
-
];
|
|
1153
|
-
var BotMetadataList = [1, n0, _BML,
|
|
1154
|
-
0, () => BotMetadata$
|
|
1155
|
-
];
|
|
1156
|
-
var BuiltinIntentMetadataList = [1, n0, _BIML,
|
|
1157
|
-
0, () => BuiltinIntentMetadata$
|
|
1158
|
-
];
|
|
1159
|
-
var BuiltinIntentSlotList = [1, n0, _BISL,
|
|
1160
|
-
0, () => BuiltinIntentSlot$
|
|
1161
|
-
];
|
|
1162
|
-
var BuiltinSlotTypeMetadataList = [1, n0, _BSTML,
|
|
1163
|
-
0, () => BuiltinSlotTypeMetadata$
|
|
1164
|
-
];
|
|
1165
|
-
var EnumerationValues = [1, n0, _EVn,
|
|
1166
|
-
0, () => EnumerationValue$
|
|
1167
|
-
];
|
|
1168
|
-
var InputContextList = [1, n0, _ICL,
|
|
1169
|
-
0, () => InputContext$
|
|
1170
|
-
];
|
|
1171
|
-
var IntentList = [1, n0, _IL,
|
|
1172
|
-
0, () => Intent$
|
|
1173
|
-
];
|
|
1174
|
-
var IntentMetadataList = [1, n0, _IML,
|
|
1175
|
-
0, () => IntentMetadata$
|
|
1176
|
-
];
|
|
1177
|
-
var ListOfUtterance = [1, n0, _LOU,
|
|
1178
|
-
0, () => UtteranceData$
|
|
1179
|
-
];
|
|
1180
|
-
var ListsOfUtterances = [1, n0, _LOUi,
|
|
1181
|
-
0, () => UtteranceList$
|
|
1182
|
-
];
|
|
1183
|
-
var LogSettingsRequestList = [1, n0, _LSRL,
|
|
1184
|
-
0, () => LogSettingsRequest$
|
|
1185
|
-
];
|
|
1186
|
-
var LogSettingsResponseList = [1, n0, _LSRLo,
|
|
1187
|
-
0, () => LogSettingsResponse$
|
|
1188
|
-
];
|
|
1189
|
-
var MessageList = [1, n0, _ML,
|
|
1190
|
-
0, () => Message$
|
|
1191
|
-
];
|
|
1192
|
-
var MigrationAlerts = [1, n0, _MAi,
|
|
1193
|
-
0, () => MigrationAlert$
|
|
1194
|
-
];
|
|
1195
|
-
var MigrationSummaryList = [1, n0, _MSL,
|
|
1196
|
-
0, () => MigrationSummary$
|
|
1197
|
-
];
|
|
1198
|
-
var OutputContextList = [1, n0, _OCL,
|
|
1199
|
-
0, () => OutputContext$
|
|
1200
|
-
];
|
|
1201
|
-
var SlotDefaultValueList = [1, n0, _SDVL,
|
|
1202
|
-
0, () => SlotDefaultValue$
|
|
1203
|
-
];
|
|
1204
|
-
var SlotList = [1, n0, _SL,
|
|
1205
|
-
0, () => Slot$
|
|
1206
|
-
];
|
|
1207
|
-
var SlotTypeConfigurations = [1, n0, _STCl,
|
|
1208
|
-
0, () => SlotTypeConfiguration$
|
|
1209
|
-
];
|
|
1210
|
-
var SlotTypeMetadataList = [1, n0, _STML,
|
|
1211
|
-
0, () => SlotTypeMetadata$
|
|
1212
|
-
];
|
|
1213
|
-
var TagList = [1, n0, _TL,
|
|
1214
|
-
0, () => Tag$
|
|
1215
|
-
];
|
|
1216
|
-
var ChannelConfigurationMap = [2, n0, _CCM,
|
|
1217
|
-
8, 0, 0
|
|
1218
|
-
];
|
|
1219
|
-
var CreateBotVersion$ = [9, n0, _CBV,
|
|
1220
|
-
{ [_h]: ["POST", "/bots/{name}/versions", 201] }, () => CreateBotVersionRequest$, () => CreateBotVersionResponse$
|
|
1221
|
-
];
|
|
1222
|
-
var CreateIntentVersion$ = [9, n0, _CIV,
|
|
1223
|
-
{ [_h]: ["POST", "/intents/{name}/versions", 201] }, () => CreateIntentVersionRequest$, () => CreateIntentVersionResponse$
|
|
1224
|
-
];
|
|
1225
|
-
var CreateSlotTypeVersion$ = [9, n0, _CSTV,
|
|
1226
|
-
{ [_h]: ["POST", "/slottypes/{name}/versions", 201] }, () => CreateSlotTypeVersionRequest$, () => CreateSlotTypeVersionResponse$
|
|
1227
|
-
];
|
|
1228
|
-
var DeleteBot$ = [9, n0, _DB,
|
|
1229
|
-
{ [_h]: ["DELETE", "/bots/{name}", 204] }, () => DeleteBotRequest$, () => __Unit
|
|
1230
|
-
];
|
|
1231
|
-
var DeleteBotAlias$ = [9, n0, _DBA,
|
|
1232
|
-
{ [_h]: ["DELETE", "/bots/{botName}/aliases/{name}", 204] }, () => DeleteBotAliasRequest$, () => __Unit
|
|
1233
|
-
];
|
|
1234
|
-
var DeleteBotChannelAssociation$ = [9, n0, _DBCA,
|
|
1235
|
-
{ [_h]: ["DELETE", "/bots/{botName}/aliases/{botAlias}/channels/{name}", 204] }, () => DeleteBotChannelAssociationRequest$, () => __Unit
|
|
1236
|
-
];
|
|
1237
|
-
var DeleteBotVersion$ = [9, n0, _DBV,
|
|
1238
|
-
{ [_h]: ["DELETE", "/bots/{name}/versions/{version}", 204] }, () => DeleteBotVersionRequest$, () => __Unit
|
|
1239
|
-
];
|
|
1240
|
-
var DeleteIntent$ = [9, n0, _DI,
|
|
1241
|
-
{ [_h]: ["DELETE", "/intents/{name}", 204] }, () => DeleteIntentRequest$, () => __Unit
|
|
1242
|
-
];
|
|
1243
|
-
var DeleteIntentVersion$ = [9, n0, _DIV,
|
|
1244
|
-
{ [_h]: ["DELETE", "/intents/{name}/versions/{version}", 204] }, () => DeleteIntentVersionRequest$, () => __Unit
|
|
1245
|
-
];
|
|
1246
|
-
var DeleteSlotType$ = [9, n0, _DST,
|
|
1247
|
-
{ [_h]: ["DELETE", "/slottypes/{name}", 204] }, () => DeleteSlotTypeRequest$, () => __Unit
|
|
1248
|
-
];
|
|
1249
|
-
var DeleteSlotTypeVersion$ = [9, n0, _DSTV,
|
|
1250
|
-
{ [_h]: ["DELETE", "/slottypes/{name}/version/{version}", 204] }, () => DeleteSlotTypeVersionRequest$, () => __Unit
|
|
1251
|
-
];
|
|
1252
|
-
var DeleteUtterances$ = [9, n0, _DU,
|
|
1253
|
-
{ [_h]: ["DELETE", "/bots/{botName}/utterances/{userId}", 204] }, () => DeleteUtterancesRequest$, () => __Unit
|
|
1254
|
-
];
|
|
1255
|
-
var GetBot$ = [9, n0, _GB,
|
|
1256
|
-
{ [_h]: ["GET", "/bots/{name}/versions/{versionOrAlias}", 200] }, () => GetBotRequest$, () => GetBotResponse$
|
|
1257
|
-
];
|
|
1258
|
-
var GetBotAlias$ = [9, n0, _GBA,
|
|
1259
|
-
{ [_h]: ["GET", "/bots/{botName}/aliases/{name}", 200] }, () => GetBotAliasRequest$, () => GetBotAliasResponse$
|
|
1260
|
-
];
|
|
1261
|
-
var GetBotAliases$ = [9, n0, _GBAe,
|
|
1262
|
-
{ [_h]: ["GET", "/bots/{botName}/aliases", 200] }, () => GetBotAliasesRequest$, () => GetBotAliasesResponse$
|
|
1263
|
-
];
|
|
1264
|
-
var GetBotChannelAssociation$ = [9, n0, _GBCA,
|
|
1265
|
-
{ [_h]: ["GET", "/bots/{botName}/aliases/{botAlias}/channels/{name}", 200] }, () => GetBotChannelAssociationRequest$, () => GetBotChannelAssociationResponse$
|
|
1266
|
-
];
|
|
1267
|
-
var GetBotChannelAssociations$ = [9, n0, _GBCAe,
|
|
1268
|
-
{ [_h]: ["GET", "/bots/{botName}/aliases/{botAlias}/channels", 200] }, () => GetBotChannelAssociationsRequest$, () => GetBotChannelAssociationsResponse$
|
|
1269
|
-
];
|
|
1270
|
-
var GetBots$ = [9, n0, _GBe,
|
|
1271
|
-
{ [_h]: ["GET", "/bots", 200] }, () => GetBotsRequest$, () => GetBotsResponse$
|
|
1272
|
-
];
|
|
1273
|
-
var GetBotVersions$ = [9, n0, _GBV,
|
|
1274
|
-
{ [_h]: ["GET", "/bots/{name}/versions", 200] }, () => GetBotVersionsRequest$, () => GetBotVersionsResponse$
|
|
1275
|
-
];
|
|
1276
|
-
var GetBuiltinIntent$ = [9, n0, _GBI,
|
|
1277
|
-
{ [_h]: ["GET", "/builtins/intents/{signature}", 200] }, () => GetBuiltinIntentRequest$, () => GetBuiltinIntentResponse$
|
|
1278
|
-
];
|
|
1279
|
-
var GetBuiltinIntents$ = [9, n0, _GBIe,
|
|
1280
|
-
{ [_h]: ["GET", "/builtins/intents", 200] }, () => GetBuiltinIntentsRequest$, () => GetBuiltinIntentsResponse$
|
|
1281
|
-
];
|
|
1282
|
-
var GetBuiltinSlotTypes$ = [9, n0, _GBST,
|
|
1283
|
-
{ [_h]: ["GET", "/builtins/slottypes", 200] }, () => GetBuiltinSlotTypesRequest$, () => GetBuiltinSlotTypesResponse$
|
|
1284
|
-
];
|
|
1285
|
-
var GetExport$ = [9, n0, _GE,
|
|
1286
|
-
{ [_h]: ["GET", "/exports", 200] }, () => GetExportRequest$, () => GetExportResponse$
|
|
1287
|
-
];
|
|
1288
|
-
var GetImport$ = [9, n0, _GI,
|
|
1289
|
-
{ [_h]: ["GET", "/imports/{importId}", 200] }, () => GetImportRequest$, () => GetImportResponse$
|
|
1290
|
-
];
|
|
1291
|
-
var GetIntent$ = [9, n0, _GIe,
|
|
1292
|
-
{ [_h]: ["GET", "/intents/{name}/versions/{version}", 200] }, () => GetIntentRequest$, () => GetIntentResponse$
|
|
1293
|
-
];
|
|
1294
|
-
var GetIntents$ = [9, n0, _GIet,
|
|
1295
|
-
{ [_h]: ["GET", "/intents", 200] }, () => GetIntentsRequest$, () => GetIntentsResponse$
|
|
1296
|
-
];
|
|
1297
|
-
var GetIntentVersions$ = [9, n0, _GIV,
|
|
1298
|
-
{ [_h]: ["GET", "/intents/{name}/versions", 200] }, () => GetIntentVersionsRequest$, () => GetIntentVersionsResponse$
|
|
1299
|
-
];
|
|
1300
|
-
var GetMigration$ = [9, n0, _GM,
|
|
1301
|
-
{ [_h]: ["GET", "/migrations/{migrationId}", 200] }, () => GetMigrationRequest$, () => GetMigrationResponse$
|
|
1302
|
-
];
|
|
1303
|
-
var GetMigrations$ = [9, n0, _GMe,
|
|
1304
|
-
{ [_h]: ["GET", "/migrations", 200] }, () => GetMigrationsRequest$, () => GetMigrationsResponse$
|
|
1305
|
-
];
|
|
1306
|
-
var GetSlotType$ = [9, n0, _GST,
|
|
1307
|
-
{ [_h]: ["GET", "/slottypes/{name}/versions/{version}", 200] }, () => GetSlotTypeRequest$, () => GetSlotTypeResponse$
|
|
1308
|
-
];
|
|
1309
|
-
var GetSlotTypes$ = [9, n0, _GSTe,
|
|
1310
|
-
{ [_h]: ["GET", "/slottypes", 200] }, () => GetSlotTypesRequest$, () => GetSlotTypesResponse$
|
|
1311
|
-
];
|
|
1312
|
-
var GetSlotTypeVersions$ = [9, n0, _GSTV,
|
|
1313
|
-
{ [_h]: ["GET", "/slottypes/{name}/versions", 200] }, () => GetSlotTypeVersionsRequest$, () => GetSlotTypeVersionsResponse$
|
|
1314
|
-
];
|
|
1315
|
-
var GetUtterancesView$ = [9, n0, _GUV,
|
|
1316
|
-
{ [_h]: ["GET", "/bots/{botName}/utterances?view=aggregation", 200] }, () => GetUtterancesViewRequest$, () => GetUtterancesViewResponse$
|
|
1317
|
-
];
|
|
1318
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1319
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1320
|
-
];
|
|
1321
|
-
var PutBot$ = [9, n0, _PB,
|
|
1322
|
-
{ [_h]: ["PUT", "/bots/{name}/versions/$LATEST", 200] }, () => PutBotRequest$, () => PutBotResponse$
|
|
1323
|
-
];
|
|
1324
|
-
var PutBotAlias$ = [9, n0, _PBA,
|
|
1325
|
-
{ [_h]: ["PUT", "/bots/{botName}/aliases/{name}", 200] }, () => PutBotAliasRequest$, () => PutBotAliasResponse$
|
|
1326
|
-
];
|
|
1327
|
-
var PutIntent$ = [9, n0, _PI,
|
|
1328
|
-
{ [_h]: ["PUT", "/intents/{name}/versions/$LATEST", 200] }, () => PutIntentRequest$, () => PutIntentResponse$
|
|
1329
|
-
];
|
|
1330
|
-
var PutSlotType$ = [9, n0, _PST,
|
|
1331
|
-
{ [_h]: ["PUT", "/slottypes/{name}/versions/$LATEST", 200] }, () => PutSlotTypeRequest$, () => PutSlotTypeResponse$
|
|
1332
|
-
];
|
|
1333
|
-
var StartImport$ = [9, n0, _SI,
|
|
1334
|
-
{ [_h]: ["POST", "/imports", 201] }, () => StartImportRequest$, () => StartImportResponse$
|
|
1335
|
-
];
|
|
1336
|
-
var StartMigration$ = [9, n0, _SM,
|
|
1337
|
-
{ [_h]: ["POST", "/migrations", 202] }, () => StartMigrationRequest$, () => StartMigrationResponse$
|
|
1338
|
-
];
|
|
1339
|
-
var TagResource$ = [9, n0, _TR,
|
|
1340
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1341
|
-
];
|
|
1342
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1343
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1344
|
-
];
|
|
1345
|
-
|
|
1346
116
|
class CreateBotVersionCommand extends smithyClient.Command
|
|
1347
117
|
.classBuilder()
|
|
1348
118
|
.ep(commonParams)
|
|
@@ -1351,7 +121,7 @@ class CreateBotVersionCommand extends smithyClient.Command
|
|
|
1351
121
|
})
|
|
1352
122
|
.s("AWSDeepSenseModelBuildingService", "CreateBotVersion", {})
|
|
1353
123
|
.n("LexModelBuildingServiceClient", "CreateBotVersionCommand")
|
|
1354
|
-
.sc(CreateBotVersion$)
|
|
124
|
+
.sc(schemas_0.CreateBotVersion$)
|
|
1355
125
|
.build() {
|
|
1356
126
|
}
|
|
1357
127
|
|
|
@@ -1363,7 +133,7 @@ class CreateIntentVersionCommand extends smithyClient.Command
|
|
|
1363
133
|
})
|
|
1364
134
|
.s("AWSDeepSenseModelBuildingService", "CreateIntentVersion", {})
|
|
1365
135
|
.n("LexModelBuildingServiceClient", "CreateIntentVersionCommand")
|
|
1366
|
-
.sc(CreateIntentVersion$)
|
|
136
|
+
.sc(schemas_0.CreateIntentVersion$)
|
|
1367
137
|
.build() {
|
|
1368
138
|
}
|
|
1369
139
|
|
|
@@ -1375,7 +145,7 @@ class CreateSlotTypeVersionCommand extends smithyClient.Command
|
|
|
1375
145
|
})
|
|
1376
146
|
.s("AWSDeepSenseModelBuildingService", "CreateSlotTypeVersion", {})
|
|
1377
147
|
.n("LexModelBuildingServiceClient", "CreateSlotTypeVersionCommand")
|
|
1378
|
-
.sc(CreateSlotTypeVersion$)
|
|
148
|
+
.sc(schemas_0.CreateSlotTypeVersion$)
|
|
1379
149
|
.build() {
|
|
1380
150
|
}
|
|
1381
151
|
|
|
@@ -1387,7 +157,7 @@ class DeleteBotAliasCommand extends smithyClient.Command
|
|
|
1387
157
|
})
|
|
1388
158
|
.s("AWSDeepSenseModelBuildingService", "DeleteBotAlias", {})
|
|
1389
159
|
.n("LexModelBuildingServiceClient", "DeleteBotAliasCommand")
|
|
1390
|
-
.sc(DeleteBotAlias$)
|
|
160
|
+
.sc(schemas_0.DeleteBotAlias$)
|
|
1391
161
|
.build() {
|
|
1392
162
|
}
|
|
1393
163
|
|
|
@@ -1399,7 +169,7 @@ class DeleteBotChannelAssociationCommand extends smithyClient.Command
|
|
|
1399
169
|
})
|
|
1400
170
|
.s("AWSDeepSenseModelBuildingService", "DeleteBotChannelAssociation", {})
|
|
1401
171
|
.n("LexModelBuildingServiceClient", "DeleteBotChannelAssociationCommand")
|
|
1402
|
-
.sc(DeleteBotChannelAssociation$)
|
|
172
|
+
.sc(schemas_0.DeleteBotChannelAssociation$)
|
|
1403
173
|
.build() {
|
|
1404
174
|
}
|
|
1405
175
|
|
|
@@ -1411,7 +181,7 @@ class DeleteBotCommand extends smithyClient.Command
|
|
|
1411
181
|
})
|
|
1412
182
|
.s("AWSDeepSenseModelBuildingService", "DeleteBot", {})
|
|
1413
183
|
.n("LexModelBuildingServiceClient", "DeleteBotCommand")
|
|
1414
|
-
.sc(DeleteBot$)
|
|
184
|
+
.sc(schemas_0.DeleteBot$)
|
|
1415
185
|
.build() {
|
|
1416
186
|
}
|
|
1417
187
|
|
|
@@ -1423,7 +193,7 @@ class DeleteBotVersionCommand extends smithyClient.Command
|
|
|
1423
193
|
})
|
|
1424
194
|
.s("AWSDeepSenseModelBuildingService", "DeleteBotVersion", {})
|
|
1425
195
|
.n("LexModelBuildingServiceClient", "DeleteBotVersionCommand")
|
|
1426
|
-
.sc(DeleteBotVersion$)
|
|
196
|
+
.sc(schemas_0.DeleteBotVersion$)
|
|
1427
197
|
.build() {
|
|
1428
198
|
}
|
|
1429
199
|
|
|
@@ -1435,7 +205,7 @@ class DeleteIntentCommand extends smithyClient.Command
|
|
|
1435
205
|
})
|
|
1436
206
|
.s("AWSDeepSenseModelBuildingService", "DeleteIntent", {})
|
|
1437
207
|
.n("LexModelBuildingServiceClient", "DeleteIntentCommand")
|
|
1438
|
-
.sc(DeleteIntent$)
|
|
208
|
+
.sc(schemas_0.DeleteIntent$)
|
|
1439
209
|
.build() {
|
|
1440
210
|
}
|
|
1441
211
|
|
|
@@ -1447,7 +217,7 @@ class DeleteIntentVersionCommand extends smithyClient.Command
|
|
|
1447
217
|
})
|
|
1448
218
|
.s("AWSDeepSenseModelBuildingService", "DeleteIntentVersion", {})
|
|
1449
219
|
.n("LexModelBuildingServiceClient", "DeleteIntentVersionCommand")
|
|
1450
|
-
.sc(DeleteIntentVersion$)
|
|
220
|
+
.sc(schemas_0.DeleteIntentVersion$)
|
|
1451
221
|
.build() {
|
|
1452
222
|
}
|
|
1453
223
|
|
|
@@ -1459,7 +229,7 @@ class DeleteSlotTypeCommand extends smithyClient.Command
|
|
|
1459
229
|
})
|
|
1460
230
|
.s("AWSDeepSenseModelBuildingService", "DeleteSlotType", {})
|
|
1461
231
|
.n("LexModelBuildingServiceClient", "DeleteSlotTypeCommand")
|
|
1462
|
-
.sc(DeleteSlotType$)
|
|
232
|
+
.sc(schemas_0.DeleteSlotType$)
|
|
1463
233
|
.build() {
|
|
1464
234
|
}
|
|
1465
235
|
|
|
@@ -1471,7 +241,7 @@ class DeleteSlotTypeVersionCommand extends smithyClient.Command
|
|
|
1471
241
|
})
|
|
1472
242
|
.s("AWSDeepSenseModelBuildingService", "DeleteSlotTypeVersion", {})
|
|
1473
243
|
.n("LexModelBuildingServiceClient", "DeleteSlotTypeVersionCommand")
|
|
1474
|
-
.sc(DeleteSlotTypeVersion$)
|
|
244
|
+
.sc(schemas_0.DeleteSlotTypeVersion$)
|
|
1475
245
|
.build() {
|
|
1476
246
|
}
|
|
1477
247
|
|
|
@@ -1483,7 +253,7 @@ class DeleteUtterancesCommand extends smithyClient.Command
|
|
|
1483
253
|
})
|
|
1484
254
|
.s("AWSDeepSenseModelBuildingService", "DeleteUtterances", {})
|
|
1485
255
|
.n("LexModelBuildingServiceClient", "DeleteUtterancesCommand")
|
|
1486
|
-
.sc(DeleteUtterances$)
|
|
256
|
+
.sc(schemas_0.DeleteUtterances$)
|
|
1487
257
|
.build() {
|
|
1488
258
|
}
|
|
1489
259
|
|
|
@@ -1495,7 +265,7 @@ class GetBotAliasCommand extends smithyClient.Command
|
|
|
1495
265
|
})
|
|
1496
266
|
.s("AWSDeepSenseModelBuildingService", "GetBotAlias", {})
|
|
1497
267
|
.n("LexModelBuildingServiceClient", "GetBotAliasCommand")
|
|
1498
|
-
.sc(GetBotAlias$)
|
|
268
|
+
.sc(schemas_0.GetBotAlias$)
|
|
1499
269
|
.build() {
|
|
1500
270
|
}
|
|
1501
271
|
|
|
@@ -1507,7 +277,7 @@ class GetBotAliasesCommand extends smithyClient.Command
|
|
|
1507
277
|
})
|
|
1508
278
|
.s("AWSDeepSenseModelBuildingService", "GetBotAliases", {})
|
|
1509
279
|
.n("LexModelBuildingServiceClient", "GetBotAliasesCommand")
|
|
1510
|
-
.sc(GetBotAliases$)
|
|
280
|
+
.sc(schemas_0.GetBotAliases$)
|
|
1511
281
|
.build() {
|
|
1512
282
|
}
|
|
1513
283
|
|
|
@@ -1519,7 +289,7 @@ class GetBotChannelAssociationCommand extends smithyClient.Command
|
|
|
1519
289
|
})
|
|
1520
290
|
.s("AWSDeepSenseModelBuildingService", "GetBotChannelAssociation", {})
|
|
1521
291
|
.n("LexModelBuildingServiceClient", "GetBotChannelAssociationCommand")
|
|
1522
|
-
.sc(GetBotChannelAssociation$)
|
|
292
|
+
.sc(schemas_0.GetBotChannelAssociation$)
|
|
1523
293
|
.build() {
|
|
1524
294
|
}
|
|
1525
295
|
|
|
@@ -1531,7 +301,7 @@ class GetBotChannelAssociationsCommand extends smithyClient.Command
|
|
|
1531
301
|
})
|
|
1532
302
|
.s("AWSDeepSenseModelBuildingService", "GetBotChannelAssociations", {})
|
|
1533
303
|
.n("LexModelBuildingServiceClient", "GetBotChannelAssociationsCommand")
|
|
1534
|
-
.sc(GetBotChannelAssociations$)
|
|
304
|
+
.sc(schemas_0.GetBotChannelAssociations$)
|
|
1535
305
|
.build() {
|
|
1536
306
|
}
|
|
1537
307
|
|
|
@@ -1543,7 +313,7 @@ class GetBotCommand extends smithyClient.Command
|
|
|
1543
313
|
})
|
|
1544
314
|
.s("AWSDeepSenseModelBuildingService", "GetBot", {})
|
|
1545
315
|
.n("LexModelBuildingServiceClient", "GetBotCommand")
|
|
1546
|
-
.sc(GetBot$)
|
|
316
|
+
.sc(schemas_0.GetBot$)
|
|
1547
317
|
.build() {
|
|
1548
318
|
}
|
|
1549
319
|
|
|
@@ -1555,7 +325,7 @@ class GetBotsCommand extends smithyClient.Command
|
|
|
1555
325
|
})
|
|
1556
326
|
.s("AWSDeepSenseModelBuildingService", "GetBots", {})
|
|
1557
327
|
.n("LexModelBuildingServiceClient", "GetBotsCommand")
|
|
1558
|
-
.sc(GetBots$)
|
|
328
|
+
.sc(schemas_0.GetBots$)
|
|
1559
329
|
.build() {
|
|
1560
330
|
}
|
|
1561
331
|
|
|
@@ -1567,7 +337,7 @@ class GetBotVersionsCommand extends smithyClient.Command
|
|
|
1567
337
|
})
|
|
1568
338
|
.s("AWSDeepSenseModelBuildingService", "GetBotVersions", {})
|
|
1569
339
|
.n("LexModelBuildingServiceClient", "GetBotVersionsCommand")
|
|
1570
|
-
.sc(GetBotVersions$)
|
|
340
|
+
.sc(schemas_0.GetBotVersions$)
|
|
1571
341
|
.build() {
|
|
1572
342
|
}
|
|
1573
343
|
|
|
@@ -1579,7 +349,7 @@ class GetBuiltinIntentCommand extends smithyClient.Command
|
|
|
1579
349
|
})
|
|
1580
350
|
.s("AWSDeepSenseModelBuildingService", "GetBuiltinIntent", {})
|
|
1581
351
|
.n("LexModelBuildingServiceClient", "GetBuiltinIntentCommand")
|
|
1582
|
-
.sc(GetBuiltinIntent$)
|
|
352
|
+
.sc(schemas_0.GetBuiltinIntent$)
|
|
1583
353
|
.build() {
|
|
1584
354
|
}
|
|
1585
355
|
|
|
@@ -1591,7 +361,7 @@ class GetBuiltinIntentsCommand extends smithyClient.Command
|
|
|
1591
361
|
})
|
|
1592
362
|
.s("AWSDeepSenseModelBuildingService", "GetBuiltinIntents", {})
|
|
1593
363
|
.n("LexModelBuildingServiceClient", "GetBuiltinIntentsCommand")
|
|
1594
|
-
.sc(GetBuiltinIntents$)
|
|
364
|
+
.sc(schemas_0.GetBuiltinIntents$)
|
|
1595
365
|
.build() {
|
|
1596
366
|
}
|
|
1597
367
|
|
|
@@ -1603,7 +373,7 @@ class GetBuiltinSlotTypesCommand extends smithyClient.Command
|
|
|
1603
373
|
})
|
|
1604
374
|
.s("AWSDeepSenseModelBuildingService", "GetBuiltinSlotTypes", {})
|
|
1605
375
|
.n("LexModelBuildingServiceClient", "GetBuiltinSlotTypesCommand")
|
|
1606
|
-
.sc(GetBuiltinSlotTypes$)
|
|
376
|
+
.sc(schemas_0.GetBuiltinSlotTypes$)
|
|
1607
377
|
.build() {
|
|
1608
378
|
}
|
|
1609
379
|
|
|
@@ -1615,7 +385,7 @@ class GetExportCommand extends smithyClient.Command
|
|
|
1615
385
|
})
|
|
1616
386
|
.s("AWSDeepSenseModelBuildingService", "GetExport", {})
|
|
1617
387
|
.n("LexModelBuildingServiceClient", "GetExportCommand")
|
|
1618
|
-
.sc(GetExport$)
|
|
388
|
+
.sc(schemas_0.GetExport$)
|
|
1619
389
|
.build() {
|
|
1620
390
|
}
|
|
1621
391
|
|
|
@@ -1627,7 +397,7 @@ class GetImportCommand extends smithyClient.Command
|
|
|
1627
397
|
})
|
|
1628
398
|
.s("AWSDeepSenseModelBuildingService", "GetImport", {})
|
|
1629
399
|
.n("LexModelBuildingServiceClient", "GetImportCommand")
|
|
1630
|
-
.sc(GetImport$)
|
|
400
|
+
.sc(schemas_0.GetImport$)
|
|
1631
401
|
.build() {
|
|
1632
402
|
}
|
|
1633
403
|
|
|
@@ -1639,7 +409,7 @@ class GetIntentCommand extends smithyClient.Command
|
|
|
1639
409
|
})
|
|
1640
410
|
.s("AWSDeepSenseModelBuildingService", "GetIntent", {})
|
|
1641
411
|
.n("LexModelBuildingServiceClient", "GetIntentCommand")
|
|
1642
|
-
.sc(GetIntent$)
|
|
412
|
+
.sc(schemas_0.GetIntent$)
|
|
1643
413
|
.build() {
|
|
1644
414
|
}
|
|
1645
415
|
|
|
@@ -1651,7 +421,7 @@ class GetIntentsCommand extends smithyClient.Command
|
|
|
1651
421
|
})
|
|
1652
422
|
.s("AWSDeepSenseModelBuildingService", "GetIntents", {})
|
|
1653
423
|
.n("LexModelBuildingServiceClient", "GetIntentsCommand")
|
|
1654
|
-
.sc(GetIntents$)
|
|
424
|
+
.sc(schemas_0.GetIntents$)
|
|
1655
425
|
.build() {
|
|
1656
426
|
}
|
|
1657
427
|
|
|
@@ -1663,7 +433,7 @@ class GetIntentVersionsCommand extends smithyClient.Command
|
|
|
1663
433
|
})
|
|
1664
434
|
.s("AWSDeepSenseModelBuildingService", "GetIntentVersions", {})
|
|
1665
435
|
.n("LexModelBuildingServiceClient", "GetIntentVersionsCommand")
|
|
1666
|
-
.sc(GetIntentVersions$)
|
|
436
|
+
.sc(schemas_0.GetIntentVersions$)
|
|
1667
437
|
.build() {
|
|
1668
438
|
}
|
|
1669
439
|
|
|
@@ -1675,7 +445,7 @@ class GetMigrationCommand extends smithyClient.Command
|
|
|
1675
445
|
})
|
|
1676
446
|
.s("AWSDeepSenseModelBuildingService", "GetMigration", {})
|
|
1677
447
|
.n("LexModelBuildingServiceClient", "GetMigrationCommand")
|
|
1678
|
-
.sc(GetMigration$)
|
|
448
|
+
.sc(schemas_0.GetMigration$)
|
|
1679
449
|
.build() {
|
|
1680
450
|
}
|
|
1681
451
|
|
|
@@ -1687,7 +457,7 @@ class GetMigrationsCommand extends smithyClient.Command
|
|
|
1687
457
|
})
|
|
1688
458
|
.s("AWSDeepSenseModelBuildingService", "GetMigrations", {})
|
|
1689
459
|
.n("LexModelBuildingServiceClient", "GetMigrationsCommand")
|
|
1690
|
-
.sc(GetMigrations$)
|
|
460
|
+
.sc(schemas_0.GetMigrations$)
|
|
1691
461
|
.build() {
|
|
1692
462
|
}
|
|
1693
463
|
|
|
@@ -1699,7 +469,7 @@ class GetSlotTypeCommand extends smithyClient.Command
|
|
|
1699
469
|
})
|
|
1700
470
|
.s("AWSDeepSenseModelBuildingService", "GetSlotType", {})
|
|
1701
471
|
.n("LexModelBuildingServiceClient", "GetSlotTypeCommand")
|
|
1702
|
-
.sc(GetSlotType$)
|
|
472
|
+
.sc(schemas_0.GetSlotType$)
|
|
1703
473
|
.build() {
|
|
1704
474
|
}
|
|
1705
475
|
|
|
@@ -1711,7 +481,7 @@ class GetSlotTypesCommand extends smithyClient.Command
|
|
|
1711
481
|
})
|
|
1712
482
|
.s("AWSDeepSenseModelBuildingService", "GetSlotTypes", {})
|
|
1713
483
|
.n("LexModelBuildingServiceClient", "GetSlotTypesCommand")
|
|
1714
|
-
.sc(GetSlotTypes$)
|
|
484
|
+
.sc(schemas_0.GetSlotTypes$)
|
|
1715
485
|
.build() {
|
|
1716
486
|
}
|
|
1717
487
|
|
|
@@ -1723,7 +493,7 @@ class GetSlotTypeVersionsCommand extends smithyClient.Command
|
|
|
1723
493
|
})
|
|
1724
494
|
.s("AWSDeepSenseModelBuildingService", "GetSlotTypeVersions", {})
|
|
1725
495
|
.n("LexModelBuildingServiceClient", "GetSlotTypeVersionsCommand")
|
|
1726
|
-
.sc(GetSlotTypeVersions$)
|
|
496
|
+
.sc(schemas_0.GetSlotTypeVersions$)
|
|
1727
497
|
.build() {
|
|
1728
498
|
}
|
|
1729
499
|
|
|
@@ -1735,7 +505,7 @@ class GetUtterancesViewCommand extends smithyClient.Command
|
|
|
1735
505
|
})
|
|
1736
506
|
.s("AWSDeepSenseModelBuildingService", "GetUtterancesView", {})
|
|
1737
507
|
.n("LexModelBuildingServiceClient", "GetUtterancesViewCommand")
|
|
1738
|
-
.sc(GetUtterancesView$)
|
|
508
|
+
.sc(schemas_0.GetUtterancesView$)
|
|
1739
509
|
.build() {
|
|
1740
510
|
}
|
|
1741
511
|
|
|
@@ -1747,7 +517,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1747
517
|
})
|
|
1748
518
|
.s("AWSDeepSenseModelBuildingService", "ListTagsForResource", {})
|
|
1749
519
|
.n("LexModelBuildingServiceClient", "ListTagsForResourceCommand")
|
|
1750
|
-
.sc(ListTagsForResource$)
|
|
520
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1751
521
|
.build() {
|
|
1752
522
|
}
|
|
1753
523
|
|
|
@@ -1759,7 +529,7 @@ class PutBotAliasCommand extends smithyClient.Command
|
|
|
1759
529
|
})
|
|
1760
530
|
.s("AWSDeepSenseModelBuildingService", "PutBotAlias", {})
|
|
1761
531
|
.n("LexModelBuildingServiceClient", "PutBotAliasCommand")
|
|
1762
|
-
.sc(PutBotAlias$)
|
|
532
|
+
.sc(schemas_0.PutBotAlias$)
|
|
1763
533
|
.build() {
|
|
1764
534
|
}
|
|
1765
535
|
|
|
@@ -1771,7 +541,7 @@ class PutBotCommand extends smithyClient.Command
|
|
|
1771
541
|
})
|
|
1772
542
|
.s("AWSDeepSenseModelBuildingService", "PutBot", {})
|
|
1773
543
|
.n("LexModelBuildingServiceClient", "PutBotCommand")
|
|
1774
|
-
.sc(PutBot$)
|
|
544
|
+
.sc(schemas_0.PutBot$)
|
|
1775
545
|
.build() {
|
|
1776
546
|
}
|
|
1777
547
|
|
|
@@ -1783,7 +553,7 @@ class PutIntentCommand extends smithyClient.Command
|
|
|
1783
553
|
})
|
|
1784
554
|
.s("AWSDeepSenseModelBuildingService", "PutIntent", {})
|
|
1785
555
|
.n("LexModelBuildingServiceClient", "PutIntentCommand")
|
|
1786
|
-
.sc(PutIntent$)
|
|
556
|
+
.sc(schemas_0.PutIntent$)
|
|
1787
557
|
.build() {
|
|
1788
558
|
}
|
|
1789
559
|
|
|
@@ -1795,7 +565,7 @@ class PutSlotTypeCommand extends smithyClient.Command
|
|
|
1795
565
|
})
|
|
1796
566
|
.s("AWSDeepSenseModelBuildingService", "PutSlotType", {})
|
|
1797
567
|
.n("LexModelBuildingServiceClient", "PutSlotTypeCommand")
|
|
1798
|
-
.sc(PutSlotType$)
|
|
568
|
+
.sc(schemas_0.PutSlotType$)
|
|
1799
569
|
.build() {
|
|
1800
570
|
}
|
|
1801
571
|
|
|
@@ -1807,7 +577,7 @@ class StartImportCommand extends smithyClient.Command
|
|
|
1807
577
|
})
|
|
1808
578
|
.s("AWSDeepSenseModelBuildingService", "StartImport", {})
|
|
1809
579
|
.n("LexModelBuildingServiceClient", "StartImportCommand")
|
|
1810
|
-
.sc(StartImport$)
|
|
580
|
+
.sc(schemas_0.StartImport$)
|
|
1811
581
|
.build() {
|
|
1812
582
|
}
|
|
1813
583
|
|
|
@@ -1819,7 +589,7 @@ class StartMigrationCommand extends smithyClient.Command
|
|
|
1819
589
|
})
|
|
1820
590
|
.s("AWSDeepSenseModelBuildingService", "StartMigration", {})
|
|
1821
591
|
.n("LexModelBuildingServiceClient", "StartMigrationCommand")
|
|
1822
|
-
.sc(StartMigration$)
|
|
592
|
+
.sc(schemas_0.StartMigration$)
|
|
1823
593
|
.build() {
|
|
1824
594
|
}
|
|
1825
595
|
|
|
@@ -1831,7 +601,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1831
601
|
})
|
|
1832
602
|
.s("AWSDeepSenseModelBuildingService", "TagResource", {})
|
|
1833
603
|
.n("LexModelBuildingServiceClient", "TagResourceCommand")
|
|
1834
|
-
.sc(TagResource$)
|
|
604
|
+
.sc(schemas_0.TagResource$)
|
|
1835
605
|
.build() {
|
|
1836
606
|
}
|
|
1837
607
|
|
|
@@ -1843,7 +613,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1843
613
|
})
|
|
1844
614
|
.s("AWSDeepSenseModelBuildingService", "UntagResource", {})
|
|
1845
615
|
.n("LexModelBuildingServiceClient", "UntagResourceCommand")
|
|
1846
|
-
.sc(UntagResource$)
|
|
616
|
+
.sc(schemas_0.UntagResource$)
|
|
1847
617
|
.build() {
|
|
1848
618
|
}
|
|
1849
619
|
|
|
@@ -2059,243 +829,78 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2059
829
|
enumerable: true,
|
|
2060
830
|
get: function () { return smithyClient.Client; }
|
|
2061
831
|
});
|
|
2062
|
-
exports
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
exports.BotAliasMetadata$ = BotAliasMetadata$;
|
|
2067
|
-
exports.BotChannelAssociation$ = BotChannelAssociation$;
|
|
2068
|
-
exports.BotMetadata$ = BotMetadata$;
|
|
2069
|
-
exports.BuiltinIntentMetadata$ = BuiltinIntentMetadata$;
|
|
2070
|
-
exports.BuiltinIntentSlot$ = BuiltinIntentSlot$;
|
|
2071
|
-
exports.BuiltinSlotTypeMetadata$ = BuiltinSlotTypeMetadata$;
|
|
832
|
+
Object.defineProperty(exports, "LexModelBuildingServiceServiceException", {
|
|
833
|
+
enumerable: true,
|
|
834
|
+
get: function () { return LexModelBuildingServiceServiceException.LexModelBuildingServiceServiceException; }
|
|
835
|
+
});
|
|
2072
836
|
exports.ChannelStatus = ChannelStatus;
|
|
2073
837
|
exports.ChannelType = ChannelType;
|
|
2074
|
-
exports.CodeHook$ = CodeHook$;
|
|
2075
|
-
exports.ConflictException = ConflictException;
|
|
2076
|
-
exports.ConflictException$ = ConflictException$;
|
|
2077
838
|
exports.ContentType = ContentType;
|
|
2078
|
-
exports.ConversationLogsRequest$ = ConversationLogsRequest$;
|
|
2079
|
-
exports.ConversationLogsResponse$ = ConversationLogsResponse$;
|
|
2080
|
-
exports.CreateBotVersion$ = CreateBotVersion$;
|
|
2081
839
|
exports.CreateBotVersionCommand = CreateBotVersionCommand;
|
|
2082
|
-
exports.CreateBotVersionRequest$ = CreateBotVersionRequest$;
|
|
2083
|
-
exports.CreateBotVersionResponse$ = CreateBotVersionResponse$;
|
|
2084
|
-
exports.CreateIntentVersion$ = CreateIntentVersion$;
|
|
2085
840
|
exports.CreateIntentVersionCommand = CreateIntentVersionCommand;
|
|
2086
|
-
exports.CreateIntentVersionRequest$ = CreateIntentVersionRequest$;
|
|
2087
|
-
exports.CreateIntentVersionResponse$ = CreateIntentVersionResponse$;
|
|
2088
|
-
exports.CreateSlotTypeVersion$ = CreateSlotTypeVersion$;
|
|
2089
841
|
exports.CreateSlotTypeVersionCommand = CreateSlotTypeVersionCommand;
|
|
2090
|
-
exports.CreateSlotTypeVersionRequest$ = CreateSlotTypeVersionRequest$;
|
|
2091
|
-
exports.CreateSlotTypeVersionResponse$ = CreateSlotTypeVersionResponse$;
|
|
2092
|
-
exports.DeleteBot$ = DeleteBot$;
|
|
2093
|
-
exports.DeleteBotAlias$ = DeleteBotAlias$;
|
|
2094
842
|
exports.DeleteBotAliasCommand = DeleteBotAliasCommand;
|
|
2095
|
-
exports.DeleteBotAliasRequest$ = DeleteBotAliasRequest$;
|
|
2096
|
-
exports.DeleteBotChannelAssociation$ = DeleteBotChannelAssociation$;
|
|
2097
843
|
exports.DeleteBotChannelAssociationCommand = DeleteBotChannelAssociationCommand;
|
|
2098
|
-
exports.DeleteBotChannelAssociationRequest$ = DeleteBotChannelAssociationRequest$;
|
|
2099
844
|
exports.DeleteBotCommand = DeleteBotCommand;
|
|
2100
|
-
exports.DeleteBotRequest$ = DeleteBotRequest$;
|
|
2101
|
-
exports.DeleteBotVersion$ = DeleteBotVersion$;
|
|
2102
845
|
exports.DeleteBotVersionCommand = DeleteBotVersionCommand;
|
|
2103
|
-
exports.DeleteBotVersionRequest$ = DeleteBotVersionRequest$;
|
|
2104
|
-
exports.DeleteIntent$ = DeleteIntent$;
|
|
2105
846
|
exports.DeleteIntentCommand = DeleteIntentCommand;
|
|
2106
|
-
exports.DeleteIntentRequest$ = DeleteIntentRequest$;
|
|
2107
|
-
exports.DeleteIntentVersion$ = DeleteIntentVersion$;
|
|
2108
847
|
exports.DeleteIntentVersionCommand = DeleteIntentVersionCommand;
|
|
2109
|
-
exports.DeleteIntentVersionRequest$ = DeleteIntentVersionRequest$;
|
|
2110
|
-
exports.DeleteSlotType$ = DeleteSlotType$;
|
|
2111
848
|
exports.DeleteSlotTypeCommand = DeleteSlotTypeCommand;
|
|
2112
|
-
exports.DeleteSlotTypeRequest$ = DeleteSlotTypeRequest$;
|
|
2113
|
-
exports.DeleteSlotTypeVersion$ = DeleteSlotTypeVersion$;
|
|
2114
849
|
exports.DeleteSlotTypeVersionCommand = DeleteSlotTypeVersionCommand;
|
|
2115
|
-
exports.DeleteSlotTypeVersionRequest$ = DeleteSlotTypeVersionRequest$;
|
|
2116
|
-
exports.DeleteUtterances$ = DeleteUtterances$;
|
|
2117
850
|
exports.DeleteUtterancesCommand = DeleteUtterancesCommand;
|
|
2118
|
-
exports.DeleteUtterancesRequest$ = DeleteUtterancesRequest$;
|
|
2119
851
|
exports.Destination = Destination;
|
|
2120
|
-
exports.EnumerationValue$ = EnumerationValue$;
|
|
2121
852
|
exports.ExportStatus = ExportStatus;
|
|
2122
853
|
exports.ExportType = ExportType;
|
|
2123
|
-
exports.FollowUpPrompt$ = FollowUpPrompt$;
|
|
2124
|
-
exports.FulfillmentActivity$ = FulfillmentActivity$;
|
|
2125
854
|
exports.FulfillmentActivityType = FulfillmentActivityType;
|
|
2126
|
-
exports.GetBot$ = GetBot$;
|
|
2127
|
-
exports.GetBotAlias$ = GetBotAlias$;
|
|
2128
855
|
exports.GetBotAliasCommand = GetBotAliasCommand;
|
|
2129
|
-
exports.GetBotAliasRequest$ = GetBotAliasRequest$;
|
|
2130
|
-
exports.GetBotAliasResponse$ = GetBotAliasResponse$;
|
|
2131
|
-
exports.GetBotAliases$ = GetBotAliases$;
|
|
2132
856
|
exports.GetBotAliasesCommand = GetBotAliasesCommand;
|
|
2133
|
-
exports.GetBotAliasesRequest$ = GetBotAliasesRequest$;
|
|
2134
|
-
exports.GetBotAliasesResponse$ = GetBotAliasesResponse$;
|
|
2135
|
-
exports.GetBotChannelAssociation$ = GetBotChannelAssociation$;
|
|
2136
857
|
exports.GetBotChannelAssociationCommand = GetBotChannelAssociationCommand;
|
|
2137
|
-
exports.GetBotChannelAssociationRequest$ = GetBotChannelAssociationRequest$;
|
|
2138
|
-
exports.GetBotChannelAssociationResponse$ = GetBotChannelAssociationResponse$;
|
|
2139
|
-
exports.GetBotChannelAssociations$ = GetBotChannelAssociations$;
|
|
2140
858
|
exports.GetBotChannelAssociationsCommand = GetBotChannelAssociationsCommand;
|
|
2141
|
-
exports.GetBotChannelAssociationsRequest$ = GetBotChannelAssociationsRequest$;
|
|
2142
|
-
exports.GetBotChannelAssociationsResponse$ = GetBotChannelAssociationsResponse$;
|
|
2143
859
|
exports.GetBotCommand = GetBotCommand;
|
|
2144
|
-
exports.GetBotRequest$ = GetBotRequest$;
|
|
2145
|
-
exports.GetBotResponse$ = GetBotResponse$;
|
|
2146
|
-
exports.GetBotVersions$ = GetBotVersions$;
|
|
2147
860
|
exports.GetBotVersionsCommand = GetBotVersionsCommand;
|
|
2148
|
-
exports.GetBotVersionsRequest$ = GetBotVersionsRequest$;
|
|
2149
|
-
exports.GetBotVersionsResponse$ = GetBotVersionsResponse$;
|
|
2150
|
-
exports.GetBots$ = GetBots$;
|
|
2151
861
|
exports.GetBotsCommand = GetBotsCommand;
|
|
2152
|
-
exports.GetBotsRequest$ = GetBotsRequest$;
|
|
2153
|
-
exports.GetBotsResponse$ = GetBotsResponse$;
|
|
2154
|
-
exports.GetBuiltinIntent$ = GetBuiltinIntent$;
|
|
2155
862
|
exports.GetBuiltinIntentCommand = GetBuiltinIntentCommand;
|
|
2156
|
-
exports.GetBuiltinIntentRequest$ = GetBuiltinIntentRequest$;
|
|
2157
|
-
exports.GetBuiltinIntentResponse$ = GetBuiltinIntentResponse$;
|
|
2158
|
-
exports.GetBuiltinIntents$ = GetBuiltinIntents$;
|
|
2159
863
|
exports.GetBuiltinIntentsCommand = GetBuiltinIntentsCommand;
|
|
2160
|
-
exports.GetBuiltinIntentsRequest$ = GetBuiltinIntentsRequest$;
|
|
2161
|
-
exports.GetBuiltinIntentsResponse$ = GetBuiltinIntentsResponse$;
|
|
2162
|
-
exports.GetBuiltinSlotTypes$ = GetBuiltinSlotTypes$;
|
|
2163
864
|
exports.GetBuiltinSlotTypesCommand = GetBuiltinSlotTypesCommand;
|
|
2164
|
-
exports.GetBuiltinSlotTypesRequest$ = GetBuiltinSlotTypesRequest$;
|
|
2165
|
-
exports.GetBuiltinSlotTypesResponse$ = GetBuiltinSlotTypesResponse$;
|
|
2166
|
-
exports.GetExport$ = GetExport$;
|
|
2167
865
|
exports.GetExportCommand = GetExportCommand;
|
|
2168
|
-
exports.GetExportRequest$ = GetExportRequest$;
|
|
2169
|
-
exports.GetExportResponse$ = GetExportResponse$;
|
|
2170
|
-
exports.GetImport$ = GetImport$;
|
|
2171
866
|
exports.GetImportCommand = GetImportCommand;
|
|
2172
|
-
exports.GetImportRequest$ = GetImportRequest$;
|
|
2173
|
-
exports.GetImportResponse$ = GetImportResponse$;
|
|
2174
|
-
exports.GetIntent$ = GetIntent$;
|
|
2175
867
|
exports.GetIntentCommand = GetIntentCommand;
|
|
2176
|
-
exports.GetIntentRequest$ = GetIntentRequest$;
|
|
2177
|
-
exports.GetIntentResponse$ = GetIntentResponse$;
|
|
2178
|
-
exports.GetIntentVersions$ = GetIntentVersions$;
|
|
2179
868
|
exports.GetIntentVersionsCommand = GetIntentVersionsCommand;
|
|
2180
|
-
exports.GetIntentVersionsRequest$ = GetIntentVersionsRequest$;
|
|
2181
|
-
exports.GetIntentVersionsResponse$ = GetIntentVersionsResponse$;
|
|
2182
|
-
exports.GetIntents$ = GetIntents$;
|
|
2183
869
|
exports.GetIntentsCommand = GetIntentsCommand;
|
|
2184
|
-
exports.GetIntentsRequest$ = GetIntentsRequest$;
|
|
2185
|
-
exports.GetIntentsResponse$ = GetIntentsResponse$;
|
|
2186
|
-
exports.GetMigration$ = GetMigration$;
|
|
2187
870
|
exports.GetMigrationCommand = GetMigrationCommand;
|
|
2188
|
-
exports.GetMigrationRequest$ = GetMigrationRequest$;
|
|
2189
|
-
exports.GetMigrationResponse$ = GetMigrationResponse$;
|
|
2190
|
-
exports.GetMigrations$ = GetMigrations$;
|
|
2191
871
|
exports.GetMigrationsCommand = GetMigrationsCommand;
|
|
2192
|
-
exports.GetMigrationsRequest$ = GetMigrationsRequest$;
|
|
2193
|
-
exports.GetMigrationsResponse$ = GetMigrationsResponse$;
|
|
2194
|
-
exports.GetSlotType$ = GetSlotType$;
|
|
2195
872
|
exports.GetSlotTypeCommand = GetSlotTypeCommand;
|
|
2196
|
-
exports.GetSlotTypeRequest$ = GetSlotTypeRequest$;
|
|
2197
|
-
exports.GetSlotTypeResponse$ = GetSlotTypeResponse$;
|
|
2198
|
-
exports.GetSlotTypeVersions$ = GetSlotTypeVersions$;
|
|
2199
873
|
exports.GetSlotTypeVersionsCommand = GetSlotTypeVersionsCommand;
|
|
2200
|
-
exports.GetSlotTypeVersionsRequest$ = GetSlotTypeVersionsRequest$;
|
|
2201
|
-
exports.GetSlotTypeVersionsResponse$ = GetSlotTypeVersionsResponse$;
|
|
2202
|
-
exports.GetSlotTypes$ = GetSlotTypes$;
|
|
2203
874
|
exports.GetSlotTypesCommand = GetSlotTypesCommand;
|
|
2204
|
-
exports.GetSlotTypesRequest$ = GetSlotTypesRequest$;
|
|
2205
|
-
exports.GetSlotTypesResponse$ = GetSlotTypesResponse$;
|
|
2206
|
-
exports.GetUtterancesView$ = GetUtterancesView$;
|
|
2207
875
|
exports.GetUtterancesViewCommand = GetUtterancesViewCommand;
|
|
2208
|
-
exports.GetUtterancesViewRequest$ = GetUtterancesViewRequest$;
|
|
2209
|
-
exports.GetUtterancesViewResponse$ = GetUtterancesViewResponse$;
|
|
2210
876
|
exports.ImportStatus = ImportStatus;
|
|
2211
|
-
exports.InputContext$ = InputContext$;
|
|
2212
|
-
exports.Intent$ = Intent$;
|
|
2213
|
-
exports.IntentMetadata$ = IntentMetadata$;
|
|
2214
|
-
exports.InternalFailureException = InternalFailureException;
|
|
2215
|
-
exports.InternalFailureException$ = InternalFailureException$;
|
|
2216
|
-
exports.KendraConfiguration$ = KendraConfiguration$;
|
|
2217
877
|
exports.LexModelBuildingService = LexModelBuildingService;
|
|
2218
878
|
exports.LexModelBuildingServiceClient = LexModelBuildingServiceClient;
|
|
2219
|
-
exports.LexModelBuildingServiceServiceException = LexModelBuildingServiceServiceException;
|
|
2220
|
-
exports.LexModelBuildingServiceServiceException$ = LexModelBuildingServiceServiceException$;
|
|
2221
|
-
exports.LimitExceededException = LimitExceededException;
|
|
2222
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
2223
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2224
879
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2225
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2226
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2227
880
|
exports.Locale = Locale;
|
|
2228
|
-
exports.LogSettingsRequest$ = LogSettingsRequest$;
|
|
2229
|
-
exports.LogSettingsResponse$ = LogSettingsResponse$;
|
|
2230
881
|
exports.LogType = LogType;
|
|
2231
882
|
exports.MergeStrategy = MergeStrategy;
|
|
2232
|
-
exports.Message$ = Message$;
|
|
2233
|
-
exports.MigrationAlert$ = MigrationAlert$;
|
|
2234
883
|
exports.MigrationAlertType = MigrationAlertType;
|
|
2235
884
|
exports.MigrationSortAttribute = MigrationSortAttribute;
|
|
2236
885
|
exports.MigrationStatus = MigrationStatus;
|
|
2237
886
|
exports.MigrationStrategy = MigrationStrategy;
|
|
2238
|
-
exports.MigrationSummary$ = MigrationSummary$;
|
|
2239
|
-
exports.NotFoundException = NotFoundException;
|
|
2240
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
2241
887
|
exports.ObfuscationSetting = ObfuscationSetting;
|
|
2242
|
-
exports.OutputContext$ = OutputContext$;
|
|
2243
|
-
exports.PreconditionFailedException = PreconditionFailedException;
|
|
2244
|
-
exports.PreconditionFailedException$ = PreconditionFailedException$;
|
|
2245
888
|
exports.ProcessBehavior = ProcessBehavior;
|
|
2246
|
-
exports.Prompt$ = Prompt$;
|
|
2247
|
-
exports.PutBot$ = PutBot$;
|
|
2248
|
-
exports.PutBotAlias$ = PutBotAlias$;
|
|
2249
889
|
exports.PutBotAliasCommand = PutBotAliasCommand;
|
|
2250
|
-
exports.PutBotAliasRequest$ = PutBotAliasRequest$;
|
|
2251
|
-
exports.PutBotAliasResponse$ = PutBotAliasResponse$;
|
|
2252
890
|
exports.PutBotCommand = PutBotCommand;
|
|
2253
|
-
exports.PutBotRequest$ = PutBotRequest$;
|
|
2254
|
-
exports.PutBotResponse$ = PutBotResponse$;
|
|
2255
|
-
exports.PutIntent$ = PutIntent$;
|
|
2256
891
|
exports.PutIntentCommand = PutIntentCommand;
|
|
2257
|
-
exports.PutIntentRequest$ = PutIntentRequest$;
|
|
2258
|
-
exports.PutIntentResponse$ = PutIntentResponse$;
|
|
2259
|
-
exports.PutSlotType$ = PutSlotType$;
|
|
2260
892
|
exports.PutSlotTypeCommand = PutSlotTypeCommand;
|
|
2261
|
-
exports.PutSlotTypeRequest$ = PutSlotTypeRequest$;
|
|
2262
|
-
exports.PutSlotTypeResponse$ = PutSlotTypeResponse$;
|
|
2263
893
|
exports.ReferenceType = ReferenceType;
|
|
2264
|
-
exports.ResourceInUseException = ResourceInUseException;
|
|
2265
|
-
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
2266
|
-
exports.ResourceReference$ = ResourceReference$;
|
|
2267
894
|
exports.ResourceType = ResourceType;
|
|
2268
|
-
exports.Slot$ = Slot$;
|
|
2269
895
|
exports.SlotConstraint = SlotConstraint;
|
|
2270
|
-
exports.SlotDefaultValue$ = SlotDefaultValue$;
|
|
2271
|
-
exports.SlotDefaultValueSpec$ = SlotDefaultValueSpec$;
|
|
2272
|
-
exports.SlotTypeConfiguration$ = SlotTypeConfiguration$;
|
|
2273
|
-
exports.SlotTypeMetadata$ = SlotTypeMetadata$;
|
|
2274
|
-
exports.SlotTypeRegexConfiguration$ = SlotTypeRegexConfiguration$;
|
|
2275
896
|
exports.SlotValueSelectionStrategy = SlotValueSelectionStrategy;
|
|
2276
897
|
exports.SortOrder = SortOrder;
|
|
2277
|
-
exports.StartImport$ = StartImport$;
|
|
2278
898
|
exports.StartImportCommand = StartImportCommand;
|
|
2279
|
-
exports.StartImportRequest$ = StartImportRequest$;
|
|
2280
|
-
exports.StartImportResponse$ = StartImportResponse$;
|
|
2281
|
-
exports.StartMigration$ = StartMigration$;
|
|
2282
899
|
exports.StartMigrationCommand = StartMigrationCommand;
|
|
2283
|
-
exports.StartMigrationRequest$ = StartMigrationRequest$;
|
|
2284
|
-
exports.StartMigrationResponse$ = StartMigrationResponse$;
|
|
2285
|
-
exports.Statement$ = Statement$;
|
|
2286
900
|
exports.Status = Status;
|
|
2287
901
|
exports.StatusType = StatusType;
|
|
2288
|
-
exports.Tag$ = Tag$;
|
|
2289
|
-
exports.TagResource$ = TagResource$;
|
|
2290
902
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2291
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2292
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2293
|
-
exports.UntagResource$ = UntagResource$;
|
|
2294
903
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2295
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2296
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2297
|
-
exports.UtteranceData$ = UtteranceData$;
|
|
2298
|
-
exports.UtteranceList$ = UtteranceList$;
|
|
2299
904
|
exports.paginateGetBotAliases = paginateGetBotAliases;
|
|
2300
905
|
exports.paginateGetBotChannelAssociations = paginateGetBotChannelAssociations;
|
|
2301
906
|
exports.paginateGetBotVersions = paginateGetBotVersions;
|
|
@@ -2307,3 +912,15 @@ exports.paginateGetIntents = paginateGetIntents;
|
|
|
2307
912
|
exports.paginateGetMigrations = paginateGetMigrations;
|
|
2308
913
|
exports.paginateGetSlotTypeVersions = paginateGetSlotTypeVersions;
|
|
2309
914
|
exports.paginateGetSlotTypes = paginateGetSlotTypes;
|
|
915
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
916
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
917
|
+
enumerable: true,
|
|
918
|
+
get: function () { return schemas_0[k]; }
|
|
919
|
+
});
|
|
920
|
+
});
|
|
921
|
+
Object.keys(errors).forEach(function (k) {
|
|
922
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
923
|
+
enumerable: true,
|
|
924
|
+
get: function () { return errors[k]; }
|
|
925
|
+
});
|
|
926
|
+
});
|