@aws-sdk/client-lex-models-v2 3.299.0 → 3.300.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 (72) hide show
  1. package/dist-types/commands/BatchCreateCustomVocabularyItemCommand.d.ts +12 -0
  2. package/dist-types/commands/BatchDeleteCustomVocabularyItemCommand.d.ts +10 -0
  3. package/dist-types/commands/BatchUpdateCustomVocabularyItemCommand.d.ts +13 -0
  4. package/dist-types/commands/BuildBotLocaleCommand.d.ts +5 -0
  5. package/dist-types/commands/CreateBotAliasCommand.d.ts +48 -0
  6. package/dist-types/commands/CreateBotCommand.d.ts +25 -0
  7. package/dist-types/commands/CreateBotLocaleCommand.d.ts +11 -0
  8. package/dist-types/commands/CreateBotVersionCommand.d.ts +9 -0
  9. package/dist-types/commands/CreateExportCommand.d.ts +20 -0
  10. package/dist-types/commands/CreateIntentCommand.d.ts +708 -0
  11. package/dist-types/commands/CreateResourcePolicyCommand.d.ts +4 -0
  12. package/dist-types/commands/CreateResourcePolicyStatementCommand.d.ts +20 -0
  13. package/dist-types/commands/CreateSlotCommand.d.ts +546 -0
  14. package/dist-types/commands/CreateSlotTypeCommand.d.ts +46 -0
  15. package/dist-types/commands/CreateUploadUrlCommand.d.ts +1 -0
  16. package/dist-types/commands/DeleteBotAliasCommand.d.ts +5 -0
  17. package/dist-types/commands/DeleteBotCommand.d.ts +4 -0
  18. package/dist-types/commands/DeleteBotLocaleCommand.d.ts +5 -0
  19. package/dist-types/commands/DeleteBotVersionCommand.d.ts +5 -0
  20. package/dist-types/commands/DeleteCustomVocabularyCommand.d.ts +5 -0
  21. package/dist-types/commands/DeleteExportCommand.d.ts +3 -0
  22. package/dist-types/commands/DeleteImportCommand.d.ts +3 -0
  23. package/dist-types/commands/DeleteIntentCommand.d.ts +6 -0
  24. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +4 -0
  25. package/dist-types/commands/DeleteResourcePolicyStatementCommand.d.ts +5 -0
  26. package/dist-types/commands/DeleteSlotCommand.d.ts +7 -0
  27. package/dist-types/commands/DeleteSlotTypeCommand.d.ts +7 -0
  28. package/dist-types/commands/DeleteUtterancesCommand.d.ts +5 -0
  29. package/dist-types/commands/DescribeBotAliasCommand.d.ts +4 -0
  30. package/dist-types/commands/DescribeBotCommand.d.ts +3 -0
  31. package/dist-types/commands/DescribeBotLocaleCommand.d.ts +5 -0
  32. package/dist-types/commands/DescribeBotRecommendationCommand.d.ts +6 -0
  33. package/dist-types/commands/DescribeBotVersionCommand.d.ts +4 -0
  34. package/dist-types/commands/DescribeCustomVocabularyMetadataCommand.d.ts +5 -0
  35. package/dist-types/commands/DescribeExportCommand.d.ts +3 -0
  36. package/dist-types/commands/DescribeImportCommand.d.ts +3 -0
  37. package/dist-types/commands/DescribeIntentCommand.d.ts +6 -0
  38. package/dist-types/commands/DescribeResourcePolicyCommand.d.ts +3 -0
  39. package/dist-types/commands/DescribeSlotCommand.d.ts +7 -0
  40. package/dist-types/commands/DescribeSlotTypeCommand.d.ts +6 -0
  41. package/dist-types/commands/ListAggregatedUtterancesCommand.d.ts +27 -0
  42. package/dist-types/commands/ListBotAliasesCommand.d.ts +5 -0
  43. package/dist-types/commands/ListBotLocalesCommand.d.ts +19 -0
  44. package/dist-types/commands/ListBotRecommendationsCommand.d.ts +7 -0
  45. package/dist-types/commands/ListBotVersionsCommand.d.ts +9 -0
  46. package/dist-types/commands/ListBotsCommand.d.ts +17 -0
  47. package/dist-types/commands/ListBuiltInIntentsCommand.d.ts +9 -0
  48. package/dist-types/commands/ListBuiltInSlotTypesCommand.d.ts +9 -0
  49. package/dist-types/commands/ListCustomVocabularyItemsCommand.d.ts +7 -0
  50. package/dist-types/commands/ListExportsCommand.d.ts +20 -0
  51. package/dist-types/commands/ListImportsCommand.d.ts +20 -0
  52. package/dist-types/commands/ListIntentsCommand.d.ts +20 -0
  53. package/dist-types/commands/ListRecommendedIntentsCommand.d.ts +8 -0
  54. package/dist-types/commands/ListSlotTypesCommand.d.ts +20 -0
  55. package/dist-types/commands/ListSlotsCommand.d.ts +21 -0
  56. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  57. package/dist-types/commands/SearchAssociatedTranscriptsCommand.d.ts +17 -0
  58. package/dist-types/commands/StartBotRecommendationCommand.d.ts +30 -0
  59. package/dist-types/commands/StartImportCommand.d.ts +36 -0
  60. package/dist-types/commands/StopBotRecommendationCommand.d.ts +6 -0
  61. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  62. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  63. package/dist-types/commands/UpdateBotAliasCommand.d.ts +46 -0
  64. package/dist-types/commands/UpdateBotCommand.d.ts +20 -0
  65. package/dist-types/commands/UpdateBotLocaleCommand.d.ts +11 -0
  66. package/dist-types/commands/UpdateBotRecommendationCommand.d.ts +11 -0
  67. package/dist-types/commands/UpdateExportCommand.d.ts +4 -0
  68. package/dist-types/commands/UpdateIntentCommand.d.ts +715 -0
  69. package/dist-types/commands/UpdateResourcePolicyCommand.d.ts +5 -0
  70. package/dist-types/commands/UpdateSlotCommand.d.ts +547 -0
  71. package/dist-types/commands/UpdateSlotTypeCommand.d.ts +47 -0
  72. package/package.json +8 -8
@@ -27,6 +27,10 @@ export interface CreateResourcePolicyCommandOutput extends CreateResourcePolicyR
27
27
  * import { LexModelsV2Client, CreateResourcePolicyCommand } from "@aws-sdk/client-lex-models-v2"; // ES Modules import
28
28
  * // const { LexModelsV2Client, CreateResourcePolicyCommand } = require("@aws-sdk/client-lex-models-v2"); // CommonJS import
29
29
  * const client = new LexModelsV2Client(config);
30
+ * const input = {
31
+ * resourceArn: "STRING_VALUE", // required
32
+ * policy: "STRING_VALUE", // required
33
+ * };
30
34
  * const command = new CreateResourcePolicyCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -30,6 +30,26 @@ export interface CreateResourcePolicyStatementCommandOutput extends CreateResour
30
30
  * import { LexModelsV2Client, CreateResourcePolicyStatementCommand } from "@aws-sdk/client-lex-models-v2"; // ES Modules import
31
31
  * // const { LexModelsV2Client, CreateResourcePolicyStatementCommand } = require("@aws-sdk/client-lex-models-v2"); // CommonJS import
32
32
  * const client = new LexModelsV2Client(config);
33
+ * const input = {
34
+ * resourceArn: "STRING_VALUE", // required
35
+ * statementId: "STRING_VALUE", // required
36
+ * effect: "Allow" || "Deny", // required
37
+ * principal: [ // required
38
+ * {
39
+ * service: "STRING_VALUE",
40
+ * arn: "STRING_VALUE",
41
+ * },
42
+ * ],
43
+ * action: [ // required
44
+ * "STRING_VALUE",
45
+ * ],
46
+ * condition: {
47
+ * "<keys>": {
48
+ * "<keys>": "STRING_VALUE",
49
+ * },
50
+ * },
51
+ * expectedRevisionId: "STRING_VALUE",
52
+ * };
33
53
  * const command = new CreateResourcePolicyStatementCommand(input);
34
54
  * const response = await client.send(command);
35
55
  * ```
@@ -30,6 +30,552 @@ export interface CreateSlotCommandOutput extends CreateSlotResponse, __MetadataB
30
30
  * import { LexModelsV2Client, CreateSlotCommand } from "@aws-sdk/client-lex-models-v2"; // ES Modules import
31
31
  * // const { LexModelsV2Client, CreateSlotCommand } = require("@aws-sdk/client-lex-models-v2"); // CommonJS import
32
32
  * const client = new LexModelsV2Client(config);
33
+ * const input = {
34
+ * slotName: "STRING_VALUE", // required
35
+ * description: "STRING_VALUE",
36
+ * slotTypeId: "STRING_VALUE",
37
+ * valueElicitationSetting: {
38
+ * defaultValueSpecification: {
39
+ * defaultValueList: [ // required
40
+ * {
41
+ * defaultValue: "STRING_VALUE", // required
42
+ * },
43
+ * ],
44
+ * },
45
+ * slotConstraint: "Required" || "Optional", // required
46
+ * promptSpecification: {
47
+ * messageGroups: [ // required
48
+ * {
49
+ * message: {
50
+ * plainTextMessage: {
51
+ * value: "STRING_VALUE", // required
52
+ * },
53
+ * customPayload: {
54
+ * value: "STRING_VALUE", // required
55
+ * },
56
+ * ssmlMessage: {
57
+ * value: "STRING_VALUE", // required
58
+ * },
59
+ * imageResponseCard: {
60
+ * title: "STRING_VALUE", // required
61
+ * subtitle: "STRING_VALUE",
62
+ * imageUrl: "STRING_VALUE",
63
+ * buttons: [
64
+ * {
65
+ * text: "STRING_VALUE", // required
66
+ * value: "STRING_VALUE", // required
67
+ * },
68
+ * ],
69
+ * },
70
+ * },
71
+ * variations: [
72
+ * {
73
+ * plainTextMessage: {
74
+ * value: "STRING_VALUE", // required
75
+ * },
76
+ * customPayload: {
77
+ * value: "STRING_VALUE", // required
78
+ * },
79
+ * ssmlMessage: {
80
+ * value: "STRING_VALUE", // required
81
+ * },
82
+ * imageResponseCard: {
83
+ * title: "STRING_VALUE", // required
84
+ * subtitle: "STRING_VALUE",
85
+ * imageUrl: "STRING_VALUE",
86
+ * buttons: [
87
+ * {
88
+ * text: "STRING_VALUE", // required
89
+ * value: "STRING_VALUE", // required
90
+ * },
91
+ * ],
92
+ * },
93
+ * },
94
+ * ],
95
+ * },
96
+ * ],
97
+ * maxRetries: Number("int"), // required
98
+ * allowInterrupt: true || false,
99
+ * messageSelectionStrategy: "Random" || "Ordered",
100
+ * promptAttemptsSpecification: {
101
+ * "<keys>": {
102
+ * allowInterrupt: true || false,
103
+ * allowedInputTypes: {
104
+ * allowAudioInput: true || false, // required
105
+ * allowDTMFInput: true || false, // required
106
+ * },
107
+ * audioAndDTMFInputSpecification: {
108
+ * startTimeoutMs: Number("int"), // required
109
+ * audioSpecification: {
110
+ * maxLengthMs: Number("int"), // required
111
+ * endTimeoutMs: Number("int"), // required
112
+ * },
113
+ * dtmfSpecification: {
114
+ * maxLength: Number("int"), // required
115
+ * endTimeoutMs: Number("int"), // required
116
+ * deletionCharacter: "STRING_VALUE", // required
117
+ * endCharacter: "STRING_VALUE", // required
118
+ * },
119
+ * },
120
+ * textInputSpecification: {
121
+ * startTimeoutMs: Number("int"), // required
122
+ * },
123
+ * },
124
+ * },
125
+ * },
126
+ * sampleUtterances: [
127
+ * {
128
+ * utterance: "STRING_VALUE", // required
129
+ * },
130
+ * ],
131
+ * waitAndContinueSpecification: {
132
+ * waitingResponse: {
133
+ * messageGroups: [ // required
134
+ * {
135
+ * message: {
136
+ * plainTextMessage: {
137
+ * value: "STRING_VALUE", // required
138
+ * },
139
+ * customPayload: {
140
+ * value: "STRING_VALUE", // required
141
+ * },
142
+ * ssmlMessage: {
143
+ * value: "STRING_VALUE", // required
144
+ * },
145
+ * imageResponseCard: {
146
+ * title: "STRING_VALUE", // required
147
+ * subtitle: "STRING_VALUE",
148
+ * imageUrl: "STRING_VALUE",
149
+ * buttons: [
150
+ * {
151
+ * text: "STRING_VALUE", // required
152
+ * value: "STRING_VALUE", // required
153
+ * },
154
+ * ],
155
+ * },
156
+ * },
157
+ * variations: [
158
+ * {
159
+ * plainTextMessage: "<Message>",
160
+ * customPayload: "<Message>",
161
+ * ssmlMessage: "<Message>",
162
+ * imageResponseCard: "<Message>",
163
+ * },
164
+ * ],
165
+ * },
166
+ * ],
167
+ * allowInterrupt: true || false,
168
+ * },
169
+ * continueResponse: {
170
+ * messageGroups: [ // required
171
+ * {
172
+ * message: {
173
+ * plainTextMessage: "<Message>",
174
+ * customPayload: "<Message>",
175
+ * ssmlMessage: "<Message>",
176
+ * imageResponseCard: "<Message>",
177
+ * },
178
+ * variations: [
179
+ * {
180
+ * plainTextMessage: "<Message>",
181
+ * customPayload: "<Message>",
182
+ * ssmlMessage: "<Message>",
183
+ * imageResponseCard: "<Message>",
184
+ * },
185
+ * ],
186
+ * },
187
+ * ],
188
+ * allowInterrupt: true || false,
189
+ * },
190
+ * stillWaitingResponse: {
191
+ * messageGroups: [ // required
192
+ * {
193
+ * message: {
194
+ * plainTextMessage: "<Message>",
195
+ * customPayload: "<Message>",
196
+ * ssmlMessage: "<Message>",
197
+ * imageResponseCard: "<Message>",
198
+ * },
199
+ * variations: [
200
+ * {
201
+ * plainTextMessage: "<Message>",
202
+ * customPayload: "<Message>",
203
+ * ssmlMessage: "<Message>",
204
+ * imageResponseCard: "<Message>",
205
+ * },
206
+ * ],
207
+ * },
208
+ * ],
209
+ * frequencyInSeconds: Number("int"), // required
210
+ * timeoutInSeconds: Number("int"), // required
211
+ * allowInterrupt: true || false,
212
+ * },
213
+ * active: true || false,
214
+ * },
215
+ * slotCaptureSetting: {
216
+ * captureResponse: {
217
+ * messageGroups: [ // required
218
+ * {
219
+ * message: {
220
+ * plainTextMessage: "<Message>",
221
+ * customPayload: "<Message>",
222
+ * ssmlMessage: "<Message>",
223
+ * imageResponseCard: "<Message>",
224
+ * },
225
+ * variations: [
226
+ * {
227
+ * plainTextMessage: "<Message>",
228
+ * customPayload: "<Message>",
229
+ * ssmlMessage: "<Message>",
230
+ * imageResponseCard: "<Message>",
231
+ * },
232
+ * ],
233
+ * },
234
+ * ],
235
+ * allowInterrupt: true || false,
236
+ * },
237
+ * captureNextStep: {
238
+ * dialogAction: {
239
+ * type: "ElicitIntent" || "StartIntent" || "ElicitSlot" || "EvaluateConditional" || "InvokeDialogCodeHook" || "ConfirmIntent" || "FulfillIntent" || "CloseIntent" || "EndConversation", // required
240
+ * slotToElicit: "STRING_VALUE",
241
+ * suppressNextMessage: true || false,
242
+ * },
243
+ * intent: {
244
+ * name: "STRING_VALUE",
245
+ * slots: {
246
+ * "<keys>": {
247
+ * shape: "Scalar" || "List",
248
+ * value: {
249
+ * interpretedValue: "STRING_VALUE",
250
+ * },
251
+ * values: [
252
+ * {
253
+ * shape: "Scalar" || "List",
254
+ * value: {
255
+ * interpretedValue: "STRING_VALUE",
256
+ * },
257
+ * values: [
258
+ * {
259
+ * shape: "<SlotValueOverride>",
260
+ * value: "<SlotValueOverride>",
261
+ * values: "<SlotValueOverride>",
262
+ * },
263
+ * ],
264
+ * },
265
+ * ],
266
+ * },
267
+ * },
268
+ * },
269
+ * sessionAttributes: {
270
+ * "<keys>": "STRING_VALUE",
271
+ * },
272
+ * },
273
+ * captureConditional: {
274
+ * active: true || false, // required
275
+ * conditionalBranches: [ // required
276
+ * {
277
+ * name: "STRING_VALUE", // required
278
+ * condition: {
279
+ * expressionString: "STRING_VALUE", // required
280
+ * },
281
+ * nextStep: {
282
+ * dialogAction: {
283
+ * type: "ElicitIntent" || "StartIntent" || "ElicitSlot" || "EvaluateConditional" || "InvokeDialogCodeHook" || "ConfirmIntent" || "FulfillIntent" || "CloseIntent" || "EndConversation", // required
284
+ * slotToElicit: "STRING_VALUE",
285
+ * suppressNextMessage: true || false,
286
+ * },
287
+ * intent: {
288
+ * name: "STRING_VALUE",
289
+ * slots: {
290
+ * "<keys>": {
291
+ * shape: "<SlotValueOverride>",
292
+ * value: "<SlotValueOverride>",
293
+ * values: "<SlotValueOverride>",
294
+ * },
295
+ * },
296
+ * },
297
+ * sessionAttributes: {
298
+ * "<keys>": "STRING_VALUE",
299
+ * },
300
+ * },
301
+ * response: {
302
+ * messageGroups: [ // required
303
+ * "<MessageGroupsList>",
304
+ * ],
305
+ * allowInterrupt: true || false,
306
+ * },
307
+ * },
308
+ * ],
309
+ * defaultBranch: {
310
+ * nextStep: {
311
+ * dialogAction: "<DialogState>",
312
+ * intent: "<DialogState>",
313
+ * sessionAttributes: "<DialogState>",
314
+ * },
315
+ * response: {
316
+ * messageGroups: "<ResponseSpecification>",
317
+ * allowInterrupt: "<ResponseSpecification>",
318
+ * },
319
+ * },
320
+ * },
321
+ * failureResponse: {
322
+ * messageGroups: "<ResponseSpecification>",
323
+ * allowInterrupt: "<ResponseSpecification>",
324
+ * },
325
+ * failureNextStep: {
326
+ * dialogAction: "<DialogState>",
327
+ * intent: "<DialogState>",
328
+ * sessionAttributes: "<DialogState>",
329
+ * },
330
+ * failureConditional: {
331
+ * active: true || false, // required
332
+ * conditionalBranches: [ // required
333
+ * {
334
+ * name: "STRING_VALUE", // required
335
+ * condition: {
336
+ * expressionString: "STRING_VALUE", // required
337
+ * },
338
+ * nextStep: {
339
+ * dialogAction: "<DialogState>",
340
+ * intent: "<DialogState>",
341
+ * sessionAttributes: "<DialogState>",
342
+ * },
343
+ * response: {
344
+ * messageGroups: "<ResponseSpecification>",
345
+ * allowInterrupt: "<ResponseSpecification>",
346
+ * },
347
+ * },
348
+ * ],
349
+ * defaultBranch: {
350
+ * nextStep: {
351
+ * dialogAction: "<DialogState>",
352
+ * intent: "<DialogState>",
353
+ * sessionAttributes: "<DialogState>",
354
+ * },
355
+ * response: {
356
+ * messageGroups: "<ResponseSpecification>",
357
+ * allowInterrupt: "<ResponseSpecification>",
358
+ * },
359
+ * },
360
+ * },
361
+ * codeHook: {
362
+ * enableCodeHookInvocation: true || false, // required
363
+ * active: true || false, // required
364
+ * invocationLabel: "STRING_VALUE",
365
+ * postCodeHookSpecification: {
366
+ * successResponse: {
367
+ * messageGroups: "<ResponseSpecification>",
368
+ * allowInterrupt: "<ResponseSpecification>",
369
+ * },
370
+ * successNextStep: {
371
+ * dialogAction: "<DialogState>",
372
+ * intent: "<DialogState>",
373
+ * sessionAttributes: "<DialogState>",
374
+ * },
375
+ * successConditional: {
376
+ * active: true || false, // required
377
+ * conditionalBranches: [ // required
378
+ * {
379
+ * name: "STRING_VALUE", // required
380
+ * condition: {
381
+ * expressionString: "STRING_VALUE", // required
382
+ * },
383
+ * nextStep: {
384
+ * dialogAction: "<DialogState>",
385
+ * intent: "<DialogState>",
386
+ * sessionAttributes: "<DialogState>",
387
+ * },
388
+ * response: {
389
+ * messageGroups: "<ResponseSpecification>",
390
+ * allowInterrupt: "<ResponseSpecification>",
391
+ * },
392
+ * },
393
+ * ],
394
+ * defaultBranch: {
395
+ * nextStep: {
396
+ * dialogAction: "<DialogState>",
397
+ * intent: "<DialogState>",
398
+ * sessionAttributes: "<DialogState>",
399
+ * },
400
+ * response: {
401
+ * messageGroups: "<ResponseSpecification>",
402
+ * allowInterrupt: "<ResponseSpecification>",
403
+ * },
404
+ * },
405
+ * },
406
+ * failureResponse: {
407
+ * messageGroups: "<ResponseSpecification>",
408
+ * allowInterrupt: "<ResponseSpecification>",
409
+ * },
410
+ * failureNextStep: {
411
+ * dialogAction: "<DialogState>",
412
+ * intent: "<DialogState>",
413
+ * sessionAttributes: "<DialogState>",
414
+ * },
415
+ * failureConditional: {
416
+ * active: true || false, // required
417
+ * conditionalBranches: [ // required
418
+ * {
419
+ * name: "STRING_VALUE", // required
420
+ * condition: {
421
+ * expressionString: "STRING_VALUE", // required
422
+ * },
423
+ * nextStep: {
424
+ * dialogAction: "<DialogState>",
425
+ * intent: "<DialogState>",
426
+ * sessionAttributes: "<DialogState>",
427
+ * },
428
+ * response: {
429
+ * messageGroups: "<ResponseSpecification>",
430
+ * allowInterrupt: "<ResponseSpecification>",
431
+ * },
432
+ * },
433
+ * ],
434
+ * defaultBranch: {
435
+ * nextStep: {
436
+ * dialogAction: "<DialogState>",
437
+ * intent: "<DialogState>",
438
+ * sessionAttributes: "<DialogState>",
439
+ * },
440
+ * response: {
441
+ * messageGroups: "<ResponseSpecification>",
442
+ * allowInterrupt: "<ResponseSpecification>",
443
+ * },
444
+ * },
445
+ * },
446
+ * timeoutResponse: {
447
+ * messageGroups: "<ResponseSpecification>",
448
+ * allowInterrupt: "<ResponseSpecification>",
449
+ * },
450
+ * timeoutNextStep: {
451
+ * dialogAction: "<DialogState>",
452
+ * intent: "<DialogState>",
453
+ * sessionAttributes: "<DialogState>",
454
+ * },
455
+ * timeoutConditional: {
456
+ * active: true || false, // required
457
+ * conditionalBranches: [ // required
458
+ * {
459
+ * name: "STRING_VALUE", // required
460
+ * condition: {
461
+ * expressionString: "STRING_VALUE", // required
462
+ * },
463
+ * nextStep: {
464
+ * dialogAction: "<DialogState>",
465
+ * intent: "<DialogState>",
466
+ * sessionAttributes: "<DialogState>",
467
+ * },
468
+ * response: {
469
+ * messageGroups: "<ResponseSpecification>",
470
+ * allowInterrupt: "<ResponseSpecification>",
471
+ * },
472
+ * },
473
+ * ],
474
+ * defaultBranch: {
475
+ * nextStep: {
476
+ * dialogAction: "<DialogState>",
477
+ * intent: "<DialogState>",
478
+ * sessionAttributes: "<DialogState>",
479
+ * },
480
+ * response: {
481
+ * messageGroups: "<ResponseSpecification>",
482
+ * allowInterrupt: "<ResponseSpecification>",
483
+ * },
484
+ * },
485
+ * },
486
+ * },
487
+ * },
488
+ * elicitationCodeHook: {
489
+ * enableCodeHookInvocation: true || false, // required
490
+ * invocationLabel: "STRING_VALUE",
491
+ * },
492
+ * },
493
+ * },
494
+ * obfuscationSetting: {
495
+ * obfuscationSettingType: "None" || "DefaultObfuscation", // required
496
+ * },
497
+ * botId: "STRING_VALUE", // required
498
+ * botVersion: "STRING_VALUE", // required
499
+ * localeId: "STRING_VALUE", // required
500
+ * intentId: "STRING_VALUE", // required
501
+ * multipleValuesSetting: {
502
+ * allowMultipleValues: true || false,
503
+ * },
504
+ * subSlotSetting: {
505
+ * expression: "STRING_VALUE",
506
+ * slotSpecifications: {
507
+ * "<keys>": {
508
+ * slotTypeId: "STRING_VALUE", // required
509
+ * valueElicitationSetting: {
510
+ * defaultValueSpecification: {
511
+ * defaultValueList: [ // required
512
+ * {
513
+ * defaultValue: "STRING_VALUE", // required
514
+ * },
515
+ * ],
516
+ * },
517
+ * promptSpecification: {
518
+ * messageGroups: [ // required
519
+ * "<MessageGroupsList>",
520
+ * ],
521
+ * maxRetries: Number("int"), // required
522
+ * allowInterrupt: true || false,
523
+ * messageSelectionStrategy: "Random" || "Ordered",
524
+ * promptAttemptsSpecification: {
525
+ * "<keys>": {
526
+ * allowInterrupt: true || false,
527
+ * allowedInputTypes: {
528
+ * allowAudioInput: true || false, // required
529
+ * allowDTMFInput: true || false, // required
530
+ * },
531
+ * audioAndDTMFInputSpecification: {
532
+ * startTimeoutMs: Number("int"), // required
533
+ * audioSpecification: {
534
+ * maxLengthMs: Number("int"), // required
535
+ * endTimeoutMs: Number("int"), // required
536
+ * },
537
+ * dtmfSpecification: {
538
+ * maxLength: Number("int"), // required
539
+ * endTimeoutMs: Number("int"), // required
540
+ * deletionCharacter: "STRING_VALUE", // required
541
+ * endCharacter: "STRING_VALUE", // required
542
+ * },
543
+ * },
544
+ * textInputSpecification: {
545
+ * startTimeoutMs: Number("int"), // required
546
+ * },
547
+ * },
548
+ * },
549
+ * },
550
+ * sampleUtterances: [
551
+ * {
552
+ * utterance: "STRING_VALUE", // required
553
+ * },
554
+ * ],
555
+ * waitAndContinueSpecification: {
556
+ * waitingResponse: {
557
+ * messageGroups: "<ResponseSpecification>",
558
+ * allowInterrupt: "<ResponseSpecification>",
559
+ * },
560
+ * continueResponse: {
561
+ * messageGroups: "<ResponseSpecification>",
562
+ * allowInterrupt: "<ResponseSpecification>",
563
+ * },
564
+ * stillWaitingResponse: {
565
+ * messageGroups: [ // required
566
+ * "<MessageGroupsList>",
567
+ * ],
568
+ * frequencyInSeconds: Number("int"), // required
569
+ * timeoutInSeconds: Number("int"), // required
570
+ * allowInterrupt: true || false,
571
+ * },
572
+ * active: true || false,
573
+ * },
574
+ * },
575
+ * },
576
+ * },
577
+ * },
578
+ * };
33
579
  * const command = new CreateSlotCommand(input);
34
580
  * const response = await client.send(command);
35
581
  * ```
@@ -29,6 +29,52 @@ export interface CreateSlotTypeCommandOutput extends CreateSlotTypeResponse, __M
29
29
  * import { LexModelsV2Client, CreateSlotTypeCommand } from "@aws-sdk/client-lex-models-v2"; // ES Modules import
30
30
  * // const { LexModelsV2Client, CreateSlotTypeCommand } = require("@aws-sdk/client-lex-models-v2"); // CommonJS import
31
31
  * const client = new LexModelsV2Client(config);
32
+ * const input = {
33
+ * slotTypeName: "STRING_VALUE", // required
34
+ * description: "STRING_VALUE",
35
+ * slotTypeValues: [
36
+ * {
37
+ * sampleValue: {
38
+ * value: "STRING_VALUE", // required
39
+ * },
40
+ * synonyms: [
41
+ * {
42
+ * value: "STRING_VALUE", // required
43
+ * },
44
+ * ],
45
+ * },
46
+ * ],
47
+ * valueSelectionSetting: {
48
+ * resolutionStrategy: "OriginalValue" || "TopResolution" || "Concatenation", // required
49
+ * regexFilter: {
50
+ * pattern: "STRING_VALUE", // required
51
+ * },
52
+ * advancedRecognitionSetting: {
53
+ * audioRecognitionStrategy: "UseSlotValuesAsCustomVocabulary",
54
+ * },
55
+ * },
56
+ * parentSlotTypeSignature: "STRING_VALUE",
57
+ * botId: "STRING_VALUE", // required
58
+ * botVersion: "STRING_VALUE", // required
59
+ * localeId: "STRING_VALUE", // required
60
+ * externalSourceSetting: {
61
+ * grammarSlotTypeSetting: {
62
+ * source: {
63
+ * s3BucketName: "STRING_VALUE", // required
64
+ * s3ObjectKey: "STRING_VALUE", // required
65
+ * kmsKeyArn: "STRING_VALUE",
66
+ * },
67
+ * },
68
+ * },
69
+ * compositeSlotTypeSetting: {
70
+ * subSlots: [
71
+ * {
72
+ * name: "STRING_VALUE", // required
73
+ * slotTypeId: "STRING_VALUE", // required
74
+ * },
75
+ * ],
76
+ * },
77
+ * };
32
78
  * const command = new CreateSlotTypeCommand(input);
33
79
  * const response = await client.send(command);
34
80
  * ```
@@ -27,6 +27,7 @@ export interface CreateUploadUrlCommandOutput extends CreateUploadUrlResponse, _
27
27
  * import { LexModelsV2Client, CreateUploadUrlCommand } from "@aws-sdk/client-lex-models-v2"; // ES Modules import
28
28
  * // const { LexModelsV2Client, CreateUploadUrlCommand } = require("@aws-sdk/client-lex-models-v2"); // CommonJS import
29
29
  * const client = new LexModelsV2Client(config);
30
+ * const input = {};
30
31
  * const command = new CreateUploadUrlCommand(input);
31
32
  * const response = await client.send(command);
32
33
  * ```
@@ -26,6 +26,11 @@ export interface DeleteBotAliasCommandOutput extends DeleteBotAliasResponse, __M
26
26
  * import { LexModelsV2Client, DeleteBotAliasCommand } from "@aws-sdk/client-lex-models-v2"; // ES Modules import
27
27
  * // const { LexModelsV2Client, DeleteBotAliasCommand } = require("@aws-sdk/client-lex-models-v2"); // CommonJS import
28
28
  * const client = new LexModelsV2Client(config);
29
+ * const input = {
30
+ * botAliasId: "STRING_VALUE", // required
31
+ * botId: "STRING_VALUE", // required
32
+ * skipResourceInUseCheck: true || false,
33
+ * };
29
34
  * const command = new DeleteBotAliasCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -35,6 +35,10 @@ export interface DeleteBotCommandOutput extends DeleteBotResponse, __MetadataBea
35
35
  * import { LexModelsV2Client, DeleteBotCommand } from "@aws-sdk/client-lex-models-v2"; // ES Modules import
36
36
  * // const { LexModelsV2Client, DeleteBotCommand } = require("@aws-sdk/client-lex-models-v2"); // CommonJS import
37
37
  * const client = new LexModelsV2Client(config);
38
+ * const input = {
39
+ * botId: "STRING_VALUE", // required
40
+ * skipResourceInUseCheck: true || false,
41
+ * };
38
42
  * const command = new DeleteBotCommand(input);
39
43
  * const response = await client.send(command);
40
44
  * ```