@aws-sdk/client-lex-model-building-service 3.296.0 → 3.297.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.
Files changed (59) hide show
  1. package/dist-types/LexModelBuildingService.d.ts +43 -0
  2. package/dist-types/LexModelBuildingServiceClient.d.ts +24 -4
  3. package/dist-types/commands/CreateBotVersionCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateIntentVersionCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateSlotTypeVersionCommand.d.ts +16 -0
  6. package/dist-types/commands/DeleteBotAliasCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteBotChannelAssociationCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteBotCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteBotVersionCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteIntentCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteIntentVersionCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteSlotTypeCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteSlotTypeVersionCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteUtterancesCommand.d.ts +16 -0
  15. package/dist-types/commands/GetBotAliasCommand.d.ts +16 -0
  16. package/dist-types/commands/GetBotAliasesCommand.d.ts +16 -0
  17. package/dist-types/commands/GetBotChannelAssociationCommand.d.ts +16 -0
  18. package/dist-types/commands/GetBotChannelAssociationsCommand.d.ts +16 -0
  19. package/dist-types/commands/GetBotCommand.d.ts +16 -0
  20. package/dist-types/commands/GetBotVersionsCommand.d.ts +16 -0
  21. package/dist-types/commands/GetBotsCommand.d.ts +16 -0
  22. package/dist-types/commands/GetBuiltinIntentCommand.d.ts +16 -0
  23. package/dist-types/commands/GetBuiltinIntentsCommand.d.ts +16 -0
  24. package/dist-types/commands/GetBuiltinSlotTypesCommand.d.ts +16 -0
  25. package/dist-types/commands/GetExportCommand.d.ts +16 -0
  26. package/dist-types/commands/GetImportCommand.d.ts +16 -0
  27. package/dist-types/commands/GetIntentCommand.d.ts +16 -0
  28. package/dist-types/commands/GetIntentVersionsCommand.d.ts +16 -0
  29. package/dist-types/commands/GetIntentsCommand.d.ts +16 -0
  30. package/dist-types/commands/GetMigrationCommand.d.ts +16 -0
  31. package/dist-types/commands/GetMigrationsCommand.d.ts +16 -0
  32. package/dist-types/commands/GetSlotTypeCommand.d.ts +16 -0
  33. package/dist-types/commands/GetSlotTypeVersionsCommand.d.ts +16 -0
  34. package/dist-types/commands/GetSlotTypesCommand.d.ts +16 -0
  35. package/dist-types/commands/GetUtterancesViewCommand.d.ts +16 -0
  36. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  37. package/dist-types/commands/PutBotAliasCommand.d.ts +16 -0
  38. package/dist-types/commands/PutBotCommand.d.ts +16 -0
  39. package/dist-types/commands/PutIntentCommand.d.ts +16 -0
  40. package/dist-types/commands/PutSlotTypeCommand.d.ts +16 -0
  41. package/dist-types/commands/StartImportCommand.d.ts +16 -0
  42. package/dist-types/commands/StartMigrationCommand.d.ts +16 -0
  43. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  44. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  45. package/dist-types/models/LexModelBuildingServiceServiceException.d.ts +2 -0
  46. package/dist-types/models/models_0.d.ts +348 -9
  47. package/dist-types/pagination/GetBotAliasesPaginator.d.ts +3 -0
  48. package/dist-types/pagination/GetBotChannelAssociationsPaginator.d.ts +3 -0
  49. package/dist-types/pagination/GetBotVersionsPaginator.d.ts +3 -0
  50. package/dist-types/pagination/GetBotsPaginator.d.ts +3 -0
  51. package/dist-types/pagination/GetBuiltinIntentsPaginator.d.ts +3 -0
  52. package/dist-types/pagination/GetBuiltinSlotTypesPaginator.d.ts +3 -0
  53. package/dist-types/pagination/GetIntentVersionsPaginator.d.ts +3 -0
  54. package/dist-types/pagination/GetIntentsPaginator.d.ts +3 -0
  55. package/dist-types/pagination/GetMigrationsPaginator.d.ts +3 -0
  56. package/dist-types/pagination/GetSlotTypeVersionsPaginator.d.ts +3 -0
  57. package/dist-types/pagination/GetSlotTypesPaginator.d.ts +3 -0
  58. package/dist-types/pagination/Interfaces.d.ts +3 -0
  59. package/package.json +3 -3
@@ -43,6 +43,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
43
43
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
44
44
  import { LexModelBuildingServiceClient } from "./LexModelBuildingServiceClient";
45
45
  /**
46
+ * @public
46
47
  * <fullname>Amazon Lex Build-Time Actions</fullname>
47
48
  * <p> Amazon Lex is an AWS service for building conversational voice and text
48
49
  * interfaces. Use these actions to create, update, and delete conversational
@@ -50,6 +51,7 @@ import { LexModelBuildingServiceClient } from "./LexModelBuildingServiceClient";
50
51
  */
51
52
  export declare class LexModelBuildingService extends LexModelBuildingServiceClient {
52
53
  /**
54
+ * @public
53
55
  * <p>Creates a new version of the bot based on the <code>$LATEST</code>
54
56
  * version. If the <code>$LATEST</code> version of this resource hasn't
55
57
  * changed since you created the last version, Amazon Lex doesn't create a new
@@ -68,6 +70,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
68
70
  createBotVersion(args: CreateBotVersionCommandInput, cb: (err: any, data?: CreateBotVersionCommandOutput) => void): void;
69
71
  createBotVersion(args: CreateBotVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBotVersionCommandOutput) => void): void;
70
72
  /**
73
+ * @public
71
74
  * <p>Creates a new version of an intent based on the
72
75
  * <code>$LATEST</code> version of the intent. If the <code>$LATEST</code>
73
76
  * version of this intent hasn't changed since you last updated it, Amazon Lex
@@ -87,6 +90,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
87
90
  createIntentVersion(args: CreateIntentVersionCommandInput, cb: (err: any, data?: CreateIntentVersionCommandOutput) => void): void;
88
91
  createIntentVersion(args: CreateIntentVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIntentVersionCommandOutput) => void): void;
89
92
  /**
93
+ * @public
90
94
  * <p>Creates a new version of a slot type based on the
91
95
  * <code>$LATEST</code> version of the specified slot type. If the
92
96
  * <code>$LATEST</code> version of this resource has not changed since the
@@ -108,6 +112,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
108
112
  createSlotTypeVersion(args: CreateSlotTypeVersionCommandInput, cb: (err: any, data?: CreateSlotTypeVersionCommandOutput) => void): void;
109
113
  createSlotTypeVersion(args: CreateSlotTypeVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSlotTypeVersionCommandOutput) => void): void;
110
114
  /**
115
+ * @public
111
116
  * <p>Deletes all versions of the bot, including the <code>$LATEST</code>
112
117
  * version. To delete a specific version of the bot, use the <a>DeleteBotVersion</a> operation. The <code>DeleteBot</code>
113
118
  * operation doesn't immediately remove the bot schema. Instead, it is marked
@@ -130,6 +135,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
130
135
  deleteBot(args: DeleteBotCommandInput, cb: (err: any, data?: DeleteBotCommandOutput) => void): void;
131
136
  deleteBot(args: DeleteBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBotCommandOutput) => void): void;
132
137
  /**
138
+ * @public
133
139
  * <p>Deletes an alias for the specified bot. </p>
134
140
  * <p>You can't delete an alias that is used in the association between a
135
141
  * bot and a messaging channel. If an alias is used in a channel association,
@@ -144,6 +150,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
144
150
  deleteBotAlias(args: DeleteBotAliasCommandInput, cb: (err: any, data?: DeleteBotAliasCommandOutput) => void): void;
145
151
  deleteBotAlias(args: DeleteBotAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBotAliasCommandOutput) => void): void;
146
152
  /**
153
+ * @public
147
154
  * <p>Deletes the association between an Amazon Lex bot and a messaging
148
155
  * platform.</p>
149
156
  * <p>This operation requires permission for the
@@ -153,6 +160,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
153
160
  deleteBotChannelAssociation(args: DeleteBotChannelAssociationCommandInput, cb: (err: any, data?: DeleteBotChannelAssociationCommandOutput) => void): void;
154
161
  deleteBotChannelAssociation(args: DeleteBotChannelAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBotChannelAssociationCommandOutput) => void): void;
155
162
  /**
163
+ * @public
156
164
  * <p>Deletes a specific version of a bot. To delete all versions of a
157
165
  * bot, use the <a>DeleteBot</a> operation. </p>
158
166
  * <p>This operation requires permissions for the
@@ -162,6 +170,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
162
170
  deleteBotVersion(args: DeleteBotVersionCommandInput, cb: (err: any, data?: DeleteBotVersionCommandOutput) => void): void;
163
171
  deleteBotVersion(args: DeleteBotVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBotVersionCommandOutput) => void): void;
164
172
  /**
173
+ * @public
165
174
  * <p>Deletes all versions of the intent, including the
166
175
  * <code>$LATEST</code> version. To delete a specific version of the
167
176
  * intent, use the <a>DeleteIntentVersion</a> operation.</p>
@@ -185,6 +194,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
185
194
  deleteIntent(args: DeleteIntentCommandInput, cb: (err: any, data?: DeleteIntentCommandOutput) => void): void;
186
195
  deleteIntent(args: DeleteIntentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIntentCommandOutput) => void): void;
187
196
  /**
197
+ * @public
188
198
  * <p>Deletes a specific version of an intent. To delete all versions of
189
199
  * a intent, use the <a>DeleteIntent</a> operation. </p>
190
200
  * <p>This operation requires permissions for the
@@ -194,6 +204,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
194
204
  deleteIntentVersion(args: DeleteIntentVersionCommandInput, cb: (err: any, data?: DeleteIntentVersionCommandOutput) => void): void;
195
205
  deleteIntentVersion(args: DeleteIntentVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIntentVersionCommandOutput) => void): void;
196
206
  /**
207
+ * @public
197
208
  * <p>Deletes all versions of the slot type, including the
198
209
  * <code>$LATEST</code> version. To delete a specific version of the slot
199
210
  * type, use the <a>DeleteSlotTypeVersion</a> operation.</p>
@@ -216,6 +227,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
216
227
  deleteSlotType(args: DeleteSlotTypeCommandInput, cb: (err: any, data?: DeleteSlotTypeCommandOutput) => void): void;
217
228
  deleteSlotType(args: DeleteSlotTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSlotTypeCommandOutput) => void): void;
218
229
  /**
230
+ * @public
219
231
  * <p>Deletes a specific version of a slot type. To delete all versions
220
232
  * of a slot type, use the <a>DeleteSlotType</a> operation. </p>
221
233
  * <p>This operation requires permissions for the
@@ -225,6 +237,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
225
237
  deleteSlotTypeVersion(args: DeleteSlotTypeVersionCommandInput, cb: (err: any, data?: DeleteSlotTypeVersionCommandOutput) => void): void;
226
238
  deleteSlotTypeVersion(args: DeleteSlotTypeVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSlotTypeVersionCommandOutput) => void): void;
227
239
  /**
240
+ * @public
228
241
  * <p>Deletes stored utterances.</p>
229
242
  * <p>Amazon Lex stores the utterances that users send to your bot. Utterances
230
243
  * are stored for 15 days for use with the <a>GetUtterancesView</a> operation, and then stored indefinitely for use in improving the
@@ -242,6 +255,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
242
255
  deleteUtterances(args: DeleteUtterancesCommandInput, cb: (err: any, data?: DeleteUtterancesCommandOutput) => void): void;
243
256
  deleteUtterances(args: DeleteUtterancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUtterancesCommandOutput) => void): void;
244
257
  /**
258
+ * @public
245
259
  * <p>Returns metadata information for a specific bot. You must provide
246
260
  * the bot name and the bot version or alias. </p>
247
261
  * <p> This operation requires permissions for the
@@ -251,6 +265,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
251
265
  getBot(args: GetBotCommandInput, cb: (err: any, data?: GetBotCommandOutput) => void): void;
252
266
  getBot(args: GetBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBotCommandOutput) => void): void;
253
267
  /**
268
+ * @public
254
269
  * <p>Returns information about an Amazon Lex bot alias. For more information
255
270
  * about aliases, see <a>versioning-aliases</a>.</p>
256
271
  * <p>This operation requires permissions for the
@@ -260,6 +275,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
260
275
  getBotAlias(args: GetBotAliasCommandInput, cb: (err: any, data?: GetBotAliasCommandOutput) => void): void;
261
276
  getBotAlias(args: GetBotAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBotAliasCommandOutput) => void): void;
262
277
  /**
278
+ * @public
263
279
  * <p>Returns a list of aliases for a specified Amazon Lex bot.</p>
264
280
  * <p>This operation requires permissions for the
265
281
  * <code>lex:GetBotAliases</code> action.</p>
@@ -268,6 +284,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
268
284
  getBotAliases(args: GetBotAliasesCommandInput, cb: (err: any, data?: GetBotAliasesCommandOutput) => void): void;
269
285
  getBotAliases(args: GetBotAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBotAliasesCommandOutput) => void): void;
270
286
  /**
287
+ * @public
271
288
  * <p>Returns information about the association between an Amazon Lex bot and
272
289
  * a messaging platform.</p>
273
290
  * <p>This operation requires permissions for the
@@ -277,6 +294,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
277
294
  getBotChannelAssociation(args: GetBotChannelAssociationCommandInput, cb: (err: any, data?: GetBotChannelAssociationCommandOutput) => void): void;
278
295
  getBotChannelAssociation(args: GetBotChannelAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBotChannelAssociationCommandOutput) => void): void;
279
296
  /**
297
+ * @public
280
298
  * <p> Returns a list of all of the channels associated with the
281
299
  * specified bot. </p>
282
300
  * <p>The <code>GetBotChannelAssociations</code> operation requires
@@ -287,6 +305,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
287
305
  getBotChannelAssociations(args: GetBotChannelAssociationsCommandInput, cb: (err: any, data?: GetBotChannelAssociationsCommandOutput) => void): void;
288
306
  getBotChannelAssociations(args: GetBotChannelAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBotChannelAssociationsCommandOutput) => void): void;
289
307
  /**
308
+ * @public
290
309
  * <p>Returns bot information as follows: </p>
291
310
  * <ul>
292
311
  * <li>
@@ -307,6 +326,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
307
326
  getBots(args: GetBotsCommandInput, cb: (err: any, data?: GetBotsCommandOutput) => void): void;
308
327
  getBots(args: GetBotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBotsCommandOutput) => void): void;
309
328
  /**
329
+ * @public
310
330
  * <p>Gets information about all of the versions of a bot.</p>
311
331
  * <p>The <code>GetBotVersions</code> operation returns a
312
332
  * <code>BotMetadata</code> object for each version of a bot. For example,
@@ -323,6 +343,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
323
343
  getBotVersions(args: GetBotVersionsCommandInput, cb: (err: any, data?: GetBotVersionsCommandOutput) => void): void;
324
344
  getBotVersions(args: GetBotVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBotVersionsCommandOutput) => void): void;
325
345
  /**
346
+ * @public
326
347
  * <p>Returns information about a built-in intent.</p>
327
348
  * <p>This operation requires permission for the
328
349
  * <code>lex:GetBuiltinIntent</code> action.</p>
@@ -331,6 +352,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
331
352
  getBuiltinIntent(args: GetBuiltinIntentCommandInput, cb: (err: any, data?: GetBuiltinIntentCommandOutput) => void): void;
332
353
  getBuiltinIntent(args: GetBuiltinIntentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBuiltinIntentCommandOutput) => void): void;
333
354
  /**
355
+ * @public
334
356
  * <p>Gets a list of built-in intents that meet the specified
335
357
  * criteria.</p>
336
358
  * <p>This operation requires permission for the
@@ -340,6 +362,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
340
362
  getBuiltinIntents(args: GetBuiltinIntentsCommandInput, cb: (err: any, data?: GetBuiltinIntentsCommandOutput) => void): void;
341
363
  getBuiltinIntents(args: GetBuiltinIntentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBuiltinIntentsCommandOutput) => void): void;
342
364
  /**
365
+ * @public
343
366
  * <p>Gets a list of built-in slot types that meet the specified
344
367
  * criteria.</p>
345
368
  * <p>For a list of built-in slot types, see <a href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/slot-type-reference">Slot Type Reference</a> in the <i>Alexa Skills
@@ -352,6 +375,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
352
375
  getBuiltinSlotTypes(args: GetBuiltinSlotTypesCommandInput, cb: (err: any, data?: GetBuiltinSlotTypesCommandOutput) => void): void;
353
376
  getBuiltinSlotTypes(args: GetBuiltinSlotTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBuiltinSlotTypesCommandOutput) => void): void;
354
377
  /**
378
+ * @public
355
379
  * <p>Exports the contents of a Amazon Lex resource in a specified format.
356
380
  * </p>
357
381
  */
@@ -359,6 +383,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
359
383
  getExport(args: GetExportCommandInput, cb: (err: any, data?: GetExportCommandOutput) => void): void;
360
384
  getExport(args: GetExportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetExportCommandOutput) => void): void;
361
385
  /**
386
+ * @public
362
387
  * <p>Gets information about an import job started with the
363
388
  * <code>StartImport</code> operation.</p>
364
389
  */
@@ -366,6 +391,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
366
391
  getImport(args: GetImportCommandInput, cb: (err: any, data?: GetImportCommandOutput) => void): void;
367
392
  getImport(args: GetImportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetImportCommandOutput) => void): void;
368
393
  /**
394
+ * @public
369
395
  * <p> Returns information about an intent. In addition to the intent
370
396
  * name, you must specify the intent version. </p>
371
397
  * <p> This operation requires permissions to perform the
@@ -375,6 +401,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
375
401
  getIntent(args: GetIntentCommandInput, cb: (err: any, data?: GetIntentCommandOutput) => void): void;
376
402
  getIntent(args: GetIntentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIntentCommandOutput) => void): void;
377
403
  /**
404
+ * @public
378
405
  * <p>Returns intent information as follows: </p>
379
406
  * <ul>
380
407
  * <li>
@@ -395,6 +422,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
395
422
  getIntents(args: GetIntentsCommandInput, cb: (err: any, data?: GetIntentsCommandOutput) => void): void;
396
423
  getIntents(args: GetIntentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIntentsCommandOutput) => void): void;
397
424
  /**
425
+ * @public
398
426
  * <p>Gets information about all of the versions of an intent.</p>
399
427
  * <p>The <code>GetIntentVersions</code> operation returns an
400
428
  * <code>IntentMetadata</code> object for each version of an intent. For
@@ -411,6 +439,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
411
439
  getIntentVersions(args: GetIntentVersionsCommandInput, cb: (err: any, data?: GetIntentVersionsCommandOutput) => void): void;
412
440
  getIntentVersions(args: GetIntentVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIntentVersionsCommandOutput) => void): void;
413
441
  /**
442
+ * @public
414
443
  * <p>Provides details about an ongoing or complete migration from an
415
444
  * Amazon Lex V1 bot to an Amazon Lex V2 bot. Use this operation to view the migration
416
445
  * alerts and warnings related to the migration.</p>
@@ -419,12 +448,14 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
419
448
  getMigration(args: GetMigrationCommandInput, cb: (err: any, data?: GetMigrationCommandOutput) => void): void;
420
449
  getMigration(args: GetMigrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMigrationCommandOutput) => void): void;
421
450
  /**
451
+ * @public
422
452
  * <p>Gets a list of migrations between Amazon Lex V1 and Amazon Lex V2.</p>
423
453
  */
424
454
  getMigrations(args: GetMigrationsCommandInput, options?: __HttpHandlerOptions): Promise<GetMigrationsCommandOutput>;
425
455
  getMigrations(args: GetMigrationsCommandInput, cb: (err: any, data?: GetMigrationsCommandOutput) => void): void;
426
456
  getMigrations(args: GetMigrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMigrationsCommandOutput) => void): void;
427
457
  /**
458
+ * @public
428
459
  * <p>Returns information about a specific version of a slot type. In
429
460
  * addition to specifying the slot type name, you must specify the slot type
430
461
  * version.</p>
@@ -435,6 +466,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
435
466
  getSlotType(args: GetSlotTypeCommandInput, cb: (err: any, data?: GetSlotTypeCommandOutput) => void): void;
436
467
  getSlotType(args: GetSlotTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSlotTypeCommandOutput) => void): void;
437
468
  /**
469
+ * @public
438
470
  * <p>Returns slot type information as follows: </p>
439
471
  * <ul>
440
472
  * <li>
@@ -455,6 +487,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
455
487
  getSlotTypes(args: GetSlotTypesCommandInput, cb: (err: any, data?: GetSlotTypesCommandOutput) => void): void;
456
488
  getSlotTypes(args: GetSlotTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSlotTypesCommandOutput) => void): void;
457
489
  /**
490
+ * @public
458
491
  * <p>Gets information about all versions of a slot type.</p>
459
492
  * <p>The <code>GetSlotTypeVersions</code> operation returns a
460
493
  * <code>SlotTypeMetadata</code> object for each version of a slot type.
@@ -471,6 +504,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
471
504
  getSlotTypeVersions(args: GetSlotTypeVersionsCommandInput, cb: (err: any, data?: GetSlotTypeVersionsCommandOutput) => void): void;
472
505
  getSlotTypeVersions(args: GetSlotTypeVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSlotTypeVersionsCommandOutput) => void): void;
473
506
  /**
507
+ * @public
474
508
  * <p>Use the <code>GetUtterancesView</code> operation to get information
475
509
  * about the utterances that your users have made to your bot. You can use
476
510
  * this list to tune the utterances that your bot responds to.</p>
@@ -500,6 +534,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
500
534
  getUtterancesView(args: GetUtterancesViewCommandInput, cb: (err: any, data?: GetUtterancesViewCommandOutput) => void): void;
501
535
  getUtterancesView(args: GetUtterancesViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUtterancesViewCommandOutput) => void): void;
502
536
  /**
537
+ * @public
503
538
  * <p>Gets a list of tags associated with the specified resource. Only bots,
504
539
  * bot aliases, and bot channels can have tags associated with them.</p>
505
540
  */
@@ -507,6 +542,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
507
542
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
508
543
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
509
544
  /**
545
+ * @public
510
546
  * <p>Creates an Amazon Lex conversational bot or replaces an existing bot.
511
547
  * When you create or update a bot you are only required to specify a name, a
512
548
  * locale, and whether the bot is directed toward children under age 13. You
@@ -530,6 +566,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
530
566
  putBot(args: PutBotCommandInput, cb: (err: any, data?: PutBotCommandOutput) => void): void;
531
567
  putBot(args: PutBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutBotCommandOutput) => void): void;
532
568
  /**
569
+ * @public
533
570
  * <p>Creates an alias for the specified version of the bot or replaces
534
571
  * an alias for the specified bot. To change the version of the bot that the
535
572
  * alias points to, replace the alias. For more information about aliases,
@@ -541,6 +578,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
541
578
  putBotAlias(args: PutBotAliasCommandInput, cb: (err: any, data?: PutBotAliasCommandOutput) => void): void;
542
579
  putBotAlias(args: PutBotAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutBotAliasCommandOutput) => void): void;
543
580
  /**
581
+ * @public
544
582
  * <p>Creates an intent or replaces an existing intent.</p>
545
583
  * <p>To define the interaction between the user and your bot, you use
546
584
  * one or more intents. For a pizza ordering bot, for example, you would
@@ -604,6 +642,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
604
642
  putIntent(args: PutIntentCommandInput, cb: (err: any, data?: PutIntentCommandOutput) => void): void;
605
643
  putIntent(args: PutIntentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutIntentCommandOutput) => void): void;
606
644
  /**
645
+ * @public
607
646
  * <p>Creates a custom slot type or replaces an existing custom slot
608
647
  * type.</p>
609
648
  * <p>To create a custom slot type, specify a name for the slot type and
@@ -625,12 +664,14 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
625
664
  putSlotType(args: PutSlotTypeCommandInput, cb: (err: any, data?: PutSlotTypeCommandOutput) => void): void;
626
665
  putSlotType(args: PutSlotTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSlotTypeCommandOutput) => void): void;
627
666
  /**
667
+ * @public
628
668
  * <p>Starts a job to import a resource to Amazon Lex.</p>
629
669
  */
630
670
  startImport(args: StartImportCommandInput, options?: __HttpHandlerOptions): Promise<StartImportCommandOutput>;
631
671
  startImport(args: StartImportCommandInput, cb: (err: any, data?: StartImportCommandOutput) => void): void;
632
672
  startImport(args: StartImportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartImportCommandOutput) => void): void;
633
673
  /**
674
+ * @public
634
675
  * <p>Starts migrating a bot from Amazon Lex V1 to Amazon Lex V2. Migrate your bot when
635
676
  * you want to take advantage of the new features of Amazon Lex V2.</p>
636
677
  * <p>For more information, see <a href="https://docs.aws.amazon.com/lex/latest/dg/migrate.html">Migrating a bot</a> in the <i>Amazon Lex
@@ -640,6 +681,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
640
681
  startMigration(args: StartMigrationCommandInput, cb: (err: any, data?: StartMigrationCommandOutput) => void): void;
641
682
  startMigration(args: StartMigrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMigrationCommandOutput) => void): void;
642
683
  /**
684
+ * @public
643
685
  * <p>Adds the specified tags to the specified resource. If a tag key
644
686
  * already exists, the existing value is replaced with the new value.</p>
645
687
  */
@@ -647,6 +689,7 @@ export declare class LexModelBuildingService extends LexModelBuildingServiceClie
647
689
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
648
690
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
649
691
  /**
692
+ * @public
650
693
  * <p>Removes tags from a bot, bot alias or bot channel.</p>
651
694
  */
652
695
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
@@ -50,15 +50,24 @@ import { StartMigrationCommandInput, StartMigrationCommandOutput } from "./comma
50
50
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
51
51
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
52
52
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
53
+ /**
54
+ * @public
55
+ */
53
56
  export type ServiceInputTypes = CreateBotVersionCommandInput | CreateIntentVersionCommandInput | CreateSlotTypeVersionCommandInput | DeleteBotAliasCommandInput | DeleteBotChannelAssociationCommandInput | DeleteBotCommandInput | DeleteBotVersionCommandInput | DeleteIntentCommandInput | DeleteIntentVersionCommandInput | DeleteSlotTypeCommandInput | DeleteSlotTypeVersionCommandInput | DeleteUtterancesCommandInput | GetBotAliasCommandInput | GetBotAliasesCommandInput | GetBotChannelAssociationCommandInput | GetBotChannelAssociationsCommandInput | GetBotCommandInput | GetBotVersionsCommandInput | GetBotsCommandInput | GetBuiltinIntentCommandInput | GetBuiltinIntentsCommandInput | GetBuiltinSlotTypesCommandInput | GetExportCommandInput | GetImportCommandInput | GetIntentCommandInput | GetIntentVersionsCommandInput | GetIntentsCommandInput | GetMigrationCommandInput | GetMigrationsCommandInput | GetSlotTypeCommandInput | GetSlotTypeVersionsCommandInput | GetSlotTypesCommandInput | GetUtterancesViewCommandInput | ListTagsForResourceCommandInput | PutBotAliasCommandInput | PutBotCommandInput | PutIntentCommandInput | PutSlotTypeCommandInput | StartImportCommandInput | StartMigrationCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
57
+ /**
58
+ * @public
59
+ */
54
60
  export type ServiceOutputTypes = CreateBotVersionCommandOutput | CreateIntentVersionCommandOutput | CreateSlotTypeVersionCommandOutput | DeleteBotAliasCommandOutput | DeleteBotChannelAssociationCommandOutput | DeleteBotCommandOutput | DeleteBotVersionCommandOutput | DeleteIntentCommandOutput | DeleteIntentVersionCommandOutput | DeleteSlotTypeCommandOutput | DeleteSlotTypeVersionCommandOutput | DeleteUtterancesCommandOutput | GetBotAliasCommandOutput | GetBotAliasesCommandOutput | GetBotChannelAssociationCommandOutput | GetBotChannelAssociationsCommandOutput | GetBotCommandOutput | GetBotVersionsCommandOutput | GetBotsCommandOutput | GetBuiltinIntentCommandOutput | GetBuiltinIntentsCommandOutput | GetBuiltinSlotTypesCommandOutput | GetExportCommandOutput | GetImportCommandOutput | GetIntentCommandOutput | GetIntentVersionsCommandOutput | GetIntentsCommandOutput | GetMigrationCommandOutput | GetMigrationsCommandOutput | GetSlotTypeCommandOutput | GetSlotTypeVersionsCommandOutput | GetSlotTypesCommandOutput | GetUtterancesViewCommandOutput | ListTagsForResourceCommandOutput | PutBotAliasCommandOutput | PutBotCommandOutput | PutIntentCommandOutput | PutSlotTypeCommandOutput | StartImportCommandOutput | StartMigrationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
61
+ /**
62
+ * @public
63
+ */
55
64
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
56
65
  /**
57
66
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
58
67
  */
59
68
  requestHandler?: __HttpHandler;
60
69
  /**
61
- * A constructor for a class implementing the {@link __Checksum} interface
70
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
62
71
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
63
72
  * @internal
64
73
  */
@@ -148,23 +157,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
148
157
  */
149
158
  logger?: __Logger;
150
159
  /**
151
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
160
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
152
161
  */
153
162
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
154
163
  }
164
+ /**
165
+ * @public
166
+ */
155
167
  type LexModelBuildingServiceClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
156
168
  /**
157
- * The configuration interface of LexModelBuildingServiceClient class constructor that set the region, credentials and other options.
169
+ * @public
170
+ *
171
+ * The configuration interface of LexModelBuildingServiceClient class constructor that set the region, credentials and other options.
158
172
  */
159
173
  export interface LexModelBuildingServiceClientConfig extends LexModelBuildingServiceClientConfigType {
160
174
  }
175
+ /**
176
+ * @public
177
+ */
161
178
  type LexModelBuildingServiceClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
162
179
  /**
163
- * The resolved configuration interface of LexModelBuildingServiceClient class. This is resolved and normalized from the {@link LexModelBuildingServiceClientConfig | constructor configuration interface}.
180
+ * @public
181
+ *
182
+ * The resolved configuration interface of LexModelBuildingServiceClient class. This is resolved and normalized from the {@link LexModelBuildingServiceClientConfig | constructor configuration interface}.
164
183
  */
165
184
  export interface LexModelBuildingServiceClientResolvedConfig extends LexModelBuildingServiceClientResolvedConfigType {
166
185
  }
167
186
  /**
187
+ * @public
168
188
  * <fullname>Amazon Lex Build-Time Actions</fullname>
169
189
  * <p> Amazon Lex is an AWS service for building conversational voice and text
170
190
  * interfaces. Use these actions to create, update, and delete conversational
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelBuildingServiceClient";
5
5
  import { CreateBotVersionRequest, CreateBotVersionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateBotVersionCommand}.
8
10
  */
9
11
  export interface CreateBotVersionCommandInput extends CreateBotVersionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateBotVersionCommand}.
13
17
  */
14
18
  export interface CreateBotVersionCommandOutput extends CreateBotVersionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new version of the bot based on the <code>$LATEST</code>
18
23
  * version. If the <code>$LATEST</code> version of this resource hasn't
19
24
  * changed since you created the last version, Amazon Lex doesn't create a new
@@ -37,6 +42,8 @@ export interface CreateBotVersionCommandOutput extends CreateBotVersionResponse,
37
42
  * const response = await client.send(command);
38
43
  * ```
39
44
  *
45
+ * @param CreateBotVersionCommandInput - {@link CreateBotVersionCommandInput}
46
+ * @returns {@link CreateBotVersionCommandOutput}
40
47
  * @see {@link CreateBotVersionCommandInput} for command's `input` shape.
41
48
  * @see {@link CreateBotVersionCommandOutput} for command's `response` shape.
42
49
  * @see {@link LexModelBuildingServiceClientResolvedConfig | config} for LexModelBuildingServiceClient's `config` shape.
@@ -70,11 +77,20 @@ export interface CreateBotVersionCommandOutput extends CreateBotVersionResponse,
70
77
  export declare class CreateBotVersionCommand extends $Command<CreateBotVersionCommandInput, CreateBotVersionCommandOutput, LexModelBuildingServiceClientResolvedConfig> {
71
78
  readonly input: CreateBotVersionCommandInput;
72
79
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
80
+ /**
81
+ * @public
82
+ */
73
83
  constructor(input: CreateBotVersionCommandInput);
74
84
  /**
75
85
  * @internal
76
86
  */
77
87
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LexModelBuildingServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateBotVersionCommandInput, CreateBotVersionCommandOutput>;
88
+ /**
89
+ * @internal
90
+ */
78
91
  private serialize;
92
+ /**
93
+ * @internal
94
+ */
79
95
  private deserialize;
80
96
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelBuildingServiceClient";
5
5
  import { CreateIntentVersionRequest, CreateIntentVersionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateIntentVersionCommand}.
8
10
  */
9
11
  export interface CreateIntentVersionCommandInput extends CreateIntentVersionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateIntentVersionCommand}.
13
17
  */
14
18
  export interface CreateIntentVersionCommandOutput extends CreateIntentVersionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new version of an intent based on the
18
23
  * <code>$LATEST</code> version of the intent. If the <code>$LATEST</code>
19
24
  * version of this intent hasn't changed since you last updated it, Amazon Lex
@@ -38,6 +43,8 @@ export interface CreateIntentVersionCommandOutput extends CreateIntentVersionRes
38
43
  * const response = await client.send(command);
39
44
  * ```
40
45
  *
46
+ * @param CreateIntentVersionCommandInput - {@link CreateIntentVersionCommandInput}
47
+ * @returns {@link CreateIntentVersionCommandOutput}
41
48
  * @see {@link CreateIntentVersionCommandInput} for command's `input` shape.
42
49
  * @see {@link CreateIntentVersionCommandOutput} for command's `response` shape.
43
50
  * @see {@link LexModelBuildingServiceClientResolvedConfig | config} for LexModelBuildingServiceClient's `config` shape.
@@ -71,11 +78,20 @@ export interface CreateIntentVersionCommandOutput extends CreateIntentVersionRes
71
78
  export declare class CreateIntentVersionCommand extends $Command<CreateIntentVersionCommandInput, CreateIntentVersionCommandOutput, LexModelBuildingServiceClientResolvedConfig> {
72
79
  readonly input: CreateIntentVersionCommandInput;
73
80
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
81
+ /**
82
+ * @public
83
+ */
74
84
  constructor(input: CreateIntentVersionCommandInput);
75
85
  /**
76
86
  * @internal
77
87
  */
78
88
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LexModelBuildingServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateIntentVersionCommandInput, CreateIntentVersionCommandOutput>;
89
+ /**
90
+ * @internal
91
+ */
79
92
  private serialize;
93
+ /**
94
+ * @internal
95
+ */
80
96
  private deserialize;
81
97
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelBuildingServiceClient";
5
5
  import { CreateSlotTypeVersionRequest, CreateSlotTypeVersionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateSlotTypeVersionCommand}.
8
10
  */
9
11
  export interface CreateSlotTypeVersionCommandInput extends CreateSlotTypeVersionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateSlotTypeVersionCommand}.
13
17
  */
14
18
  export interface CreateSlotTypeVersionCommandOutput extends CreateSlotTypeVersionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new version of a slot type based on the
18
23
  * <code>$LATEST</code> version of the specified slot type. If the
19
24
  * <code>$LATEST</code> version of this resource has not changed since the
@@ -40,6 +45,8 @@ export interface CreateSlotTypeVersionCommandOutput extends CreateSlotTypeVersio
40
45
  * const response = await client.send(command);
41
46
  * ```
42
47
  *
48
+ * @param CreateSlotTypeVersionCommandInput - {@link CreateSlotTypeVersionCommandInput}
49
+ * @returns {@link CreateSlotTypeVersionCommandOutput}
43
50
  * @see {@link CreateSlotTypeVersionCommandInput} for command's `input` shape.
44
51
  * @see {@link CreateSlotTypeVersionCommandOutput} for command's `response` shape.
45
52
  * @see {@link LexModelBuildingServiceClientResolvedConfig | config} for LexModelBuildingServiceClient's `config` shape.
@@ -73,11 +80,20 @@ export interface CreateSlotTypeVersionCommandOutput extends CreateSlotTypeVersio
73
80
  export declare class CreateSlotTypeVersionCommand extends $Command<CreateSlotTypeVersionCommandInput, CreateSlotTypeVersionCommandOutput, LexModelBuildingServiceClientResolvedConfig> {
74
81
  readonly input: CreateSlotTypeVersionCommandInput;
75
82
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
83
+ /**
84
+ * @public
85
+ */
76
86
  constructor(input: CreateSlotTypeVersionCommandInput);
77
87
  /**
78
88
  * @internal
79
89
  */
80
90
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LexModelBuildingServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSlotTypeVersionCommandInput, CreateSlotTypeVersionCommandOutput>;
91
+ /**
92
+ * @internal
93
+ */
81
94
  private serialize;
95
+ /**
96
+ * @internal
97
+ */
82
98
  private deserialize;
83
99
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelBuildingServiceClient";
5
5
  import { DeleteBotAliasRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteBotAliasCommand}.
8
10
  */
9
11
  export interface DeleteBotAliasCommandInput extends DeleteBotAliasRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteBotAliasCommand}.
13
17
  */
14
18
  export interface DeleteBotAliasCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes an alias for the specified bot. </p>
18
23
  * <p>You can't delete an alias that is used in the association between a
19
24
  * bot and a messaging channel. If an alias is used in a channel association,
@@ -33,6 +38,8 @@ export interface DeleteBotAliasCommandOutput extends __MetadataBearer {
33
38
  * const response = await client.send(command);
34
39
  * ```
35
40
  *
41
+ * @param DeleteBotAliasCommandInput - {@link DeleteBotAliasCommandInput}
42
+ * @returns {@link DeleteBotAliasCommandOutput}
36
43
  * @see {@link DeleteBotAliasCommandInput} for command's `input` shape.
37
44
  * @see {@link DeleteBotAliasCommandOutput} for command's `response` shape.
38
45
  * @see {@link LexModelBuildingServiceClientResolvedConfig | config} for LexModelBuildingServiceClient's `config` shape.
@@ -79,11 +86,20 @@ export interface DeleteBotAliasCommandOutput extends __MetadataBearer {
79
86
  export declare class DeleteBotAliasCommand extends $Command<DeleteBotAliasCommandInput, DeleteBotAliasCommandOutput, LexModelBuildingServiceClientResolvedConfig> {
80
87
  readonly input: DeleteBotAliasCommandInput;
81
88
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
89
+ /**
90
+ * @public
91
+ */
82
92
  constructor(input: DeleteBotAliasCommandInput);
83
93
  /**
84
94
  * @internal
85
95
  */
86
96
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LexModelBuildingServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBotAliasCommandInput, DeleteBotAliasCommandOutput>;
97
+ /**
98
+ * @internal
99
+ */
87
100
  private serialize;
101
+ /**
102
+ * @internal
103
+ */
88
104
  private deserialize;
89
105
  }