@aws-sdk/client-lex-models-v2 3.299.0 → 3.301.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 +430 -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 +400 -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 +437 -0
  69. package/dist-types/commands/UpdateResourcePolicyCommand.d.ts +5 -0
  70. package/dist-types/commands/UpdateSlotCommand.d.ts +401 -0
  71. package/dist-types/commands/UpdateSlotTypeCommand.d.ts +47 -0
  72. package/package.json +8 -8
@@ -26,6 +26,407 @@ export interface UpdateSlotCommandOutput extends UpdateSlotResponse, __MetadataB
26
26
  * import { LexModelsV2Client, UpdateSlotCommand } from "@aws-sdk/client-lex-models-v2"; // ES Modules import
27
27
  * // const { LexModelsV2Client, UpdateSlotCommand } = require("@aws-sdk/client-lex-models-v2"); // CommonJS import
28
28
  * const client = new LexModelsV2Client(config);
29
+ * const input = { // UpdateSlotRequest
30
+ * slotId: "STRING_VALUE", // required
31
+ * slotName: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * slotTypeId: "STRING_VALUE",
34
+ * valueElicitationSetting: { // SlotValueElicitationSetting
35
+ * defaultValueSpecification: { // SlotDefaultValueSpecification
36
+ * defaultValueList: [ // SlotDefaultValueList // required
37
+ * { // SlotDefaultValue
38
+ * defaultValue: "STRING_VALUE", // required
39
+ * },
40
+ * ],
41
+ * },
42
+ * slotConstraint: "Required" || "Optional", // required
43
+ * promptSpecification: { // PromptSpecification
44
+ * messageGroups: [ // MessageGroupsList // required
45
+ * { // MessageGroup
46
+ * message: { // Message
47
+ * plainTextMessage: { // PlainTextMessage
48
+ * value: "STRING_VALUE", // required
49
+ * },
50
+ * customPayload: { // CustomPayload
51
+ * value: "STRING_VALUE", // required
52
+ * },
53
+ * ssmlMessage: { // SSMLMessage
54
+ * value: "STRING_VALUE", // required
55
+ * },
56
+ * imageResponseCard: { // ImageResponseCard
57
+ * title: "STRING_VALUE", // required
58
+ * subtitle: "STRING_VALUE",
59
+ * imageUrl: "STRING_VALUE",
60
+ * buttons: [ // ButtonsList
61
+ * { // Button
62
+ * text: "STRING_VALUE", // required
63
+ * value: "STRING_VALUE", // required
64
+ * },
65
+ * ],
66
+ * },
67
+ * },
68
+ * variations: [ // MessageVariationsList
69
+ * {
70
+ * plainTextMessage: {
71
+ * value: "STRING_VALUE", // required
72
+ * },
73
+ * customPayload: {
74
+ * value: "STRING_VALUE", // required
75
+ * },
76
+ * ssmlMessage: {
77
+ * value: "STRING_VALUE", // required
78
+ * },
79
+ * imageResponseCard: {
80
+ * title: "STRING_VALUE", // required
81
+ * subtitle: "STRING_VALUE",
82
+ * imageUrl: "STRING_VALUE",
83
+ * buttons: [
84
+ * {
85
+ * text: "STRING_VALUE", // required
86
+ * value: "STRING_VALUE", // required
87
+ * },
88
+ * ],
89
+ * },
90
+ * },
91
+ * ],
92
+ * },
93
+ * ],
94
+ * maxRetries: Number("int"), // required
95
+ * allowInterrupt: true || false,
96
+ * messageSelectionStrategy: "Random" || "Ordered",
97
+ * promptAttemptsSpecification: { // PromptAttemptsSpecificationMap
98
+ * "<keys>": { // PromptAttemptSpecification
99
+ * allowInterrupt: true || false,
100
+ * allowedInputTypes: { // AllowedInputTypes
101
+ * allowAudioInput: true || false, // required
102
+ * allowDTMFInput: true || false, // required
103
+ * },
104
+ * audioAndDTMFInputSpecification: { // AudioAndDTMFInputSpecification
105
+ * startTimeoutMs: Number("int"), // required
106
+ * audioSpecification: { // AudioSpecification
107
+ * maxLengthMs: Number("int"), // required
108
+ * endTimeoutMs: Number("int"), // required
109
+ * },
110
+ * dtmfSpecification: { // DTMFSpecification
111
+ * maxLength: Number("int"), // required
112
+ * endTimeoutMs: Number("int"), // required
113
+ * deletionCharacter: "STRING_VALUE", // required
114
+ * endCharacter: "STRING_VALUE", // required
115
+ * },
116
+ * },
117
+ * textInputSpecification: { // TextInputSpecification
118
+ * startTimeoutMs: Number("int"), // required
119
+ * },
120
+ * },
121
+ * },
122
+ * },
123
+ * sampleUtterances: [ // SampleUtterancesList
124
+ * { // SampleUtterance
125
+ * utterance: "STRING_VALUE", // required
126
+ * },
127
+ * ],
128
+ * waitAndContinueSpecification: { // WaitAndContinueSpecification
129
+ * waitingResponse: { // ResponseSpecification
130
+ * messageGroups: [ // required
131
+ * {
132
+ * message: {
133
+ * plainTextMessage: {
134
+ * value: "STRING_VALUE", // required
135
+ * },
136
+ * customPayload: {
137
+ * value: "STRING_VALUE", // required
138
+ * },
139
+ * ssmlMessage: {
140
+ * value: "STRING_VALUE", // required
141
+ * },
142
+ * imageResponseCard: {
143
+ * title: "STRING_VALUE", // required
144
+ * subtitle: "STRING_VALUE",
145
+ * imageUrl: "STRING_VALUE",
146
+ * buttons: [
147
+ * {
148
+ * text: "STRING_VALUE", // required
149
+ * value: "STRING_VALUE", // required
150
+ * },
151
+ * ],
152
+ * },
153
+ * },
154
+ * variations: [
155
+ * "<Message>",
156
+ * ],
157
+ * },
158
+ * ],
159
+ * allowInterrupt: true || false,
160
+ * },
161
+ * continueResponse: {
162
+ * messageGroups: [ // required
163
+ * {
164
+ * message: "<Message>", // required
165
+ * variations: [
166
+ * "<Message>",
167
+ * ],
168
+ * },
169
+ * ],
170
+ * allowInterrupt: true || false,
171
+ * },
172
+ * stillWaitingResponse: { // StillWaitingResponseSpecification
173
+ * messageGroups: [ // required
174
+ * {
175
+ * message: "<Message>", // required
176
+ * variations: [
177
+ * "<Message>",
178
+ * ],
179
+ * },
180
+ * ],
181
+ * frequencyInSeconds: Number("int"), // required
182
+ * timeoutInSeconds: Number("int"), // required
183
+ * allowInterrupt: true || false,
184
+ * },
185
+ * active: true || false,
186
+ * },
187
+ * slotCaptureSetting: { // SlotCaptureSetting
188
+ * captureResponse: {
189
+ * messageGroups: [ // required
190
+ * {
191
+ * message: "<Message>", // required
192
+ * variations: [
193
+ * "<Message>",
194
+ * ],
195
+ * },
196
+ * ],
197
+ * allowInterrupt: true || false,
198
+ * },
199
+ * captureNextStep: { // DialogState
200
+ * dialogAction: { // DialogAction
201
+ * type: "ElicitIntent" || "StartIntent" || "ElicitSlot" || "EvaluateConditional" || "InvokeDialogCodeHook" || "ConfirmIntent" || "FulfillIntent" || "CloseIntent" || "EndConversation", // required
202
+ * slotToElicit: "STRING_VALUE",
203
+ * suppressNextMessage: true || false,
204
+ * },
205
+ * intent: { // IntentOverride
206
+ * name: "STRING_VALUE",
207
+ * slots: { // SlotValueOverrideMap
208
+ * "<keys>": { // SlotValueOverride
209
+ * shape: "Scalar" || "List",
210
+ * value: { // SlotValue
211
+ * interpretedValue: "STRING_VALUE",
212
+ * },
213
+ * values: [ // SlotValues
214
+ * {
215
+ * shape: "Scalar" || "List",
216
+ * value: {
217
+ * interpretedValue: "STRING_VALUE",
218
+ * },
219
+ * values: [
220
+ * "<SlotValueOverride>",
221
+ * ],
222
+ * },
223
+ * ],
224
+ * },
225
+ * },
226
+ * },
227
+ * sessionAttributes: { // StringMap
228
+ * "<keys>": "STRING_VALUE",
229
+ * },
230
+ * },
231
+ * captureConditional: { // ConditionalSpecification
232
+ * active: true || false, // required
233
+ * conditionalBranches: [ // ConditionalBranches // required
234
+ * { // ConditionalBranch
235
+ * name: "STRING_VALUE", // required
236
+ * condition: { // Condition
237
+ * expressionString: "STRING_VALUE", // required
238
+ * },
239
+ * nextStep: {
240
+ * dialogAction: {
241
+ * type: "ElicitIntent" || "StartIntent" || "ElicitSlot" || "EvaluateConditional" || "InvokeDialogCodeHook" || "ConfirmIntent" || "FulfillIntent" || "CloseIntent" || "EndConversation", // required
242
+ * slotToElicit: "STRING_VALUE",
243
+ * suppressNextMessage: true || false,
244
+ * },
245
+ * intent: {
246
+ * name: "STRING_VALUE",
247
+ * slots: {
248
+ * "<keys>": "<SlotValueOverride>",
249
+ * },
250
+ * },
251
+ * sessionAttributes: {
252
+ * "<keys>": "STRING_VALUE",
253
+ * },
254
+ * },
255
+ * response: {
256
+ * messageGroups: "<MessageGroupsList>", // required
257
+ * allowInterrupt: true || false,
258
+ * },
259
+ * },
260
+ * ],
261
+ * defaultBranch: { // DefaultConditionalBranch
262
+ * nextStep: "<DialogState>",
263
+ * response: "<ResponseSpecification>",
264
+ * },
265
+ * },
266
+ * failureResponse: "<ResponseSpecification>",
267
+ * failureNextStep: "<DialogState>",
268
+ * failureConditional: {
269
+ * active: true || false, // required
270
+ * conditionalBranches: [ // required
271
+ * {
272
+ * name: "STRING_VALUE", // required
273
+ * condition: {
274
+ * expressionString: "STRING_VALUE", // required
275
+ * },
276
+ * nextStep: "<DialogState>", // required
277
+ * response: "<ResponseSpecification>",
278
+ * },
279
+ * ],
280
+ * defaultBranch: {
281
+ * nextStep: "<DialogState>",
282
+ * response: "<ResponseSpecification>",
283
+ * },
284
+ * },
285
+ * codeHook: { // DialogCodeHookInvocationSetting
286
+ * enableCodeHookInvocation: true || false, // required
287
+ * active: true || false, // required
288
+ * invocationLabel: "STRING_VALUE",
289
+ * postCodeHookSpecification: { // PostDialogCodeHookInvocationSpecification
290
+ * successResponse: "<ResponseSpecification>",
291
+ * successNextStep: "<DialogState>",
292
+ * successConditional: {
293
+ * active: true || false, // required
294
+ * conditionalBranches: [ // required
295
+ * {
296
+ * name: "STRING_VALUE", // required
297
+ * condition: {
298
+ * expressionString: "STRING_VALUE", // required
299
+ * },
300
+ * nextStep: "<DialogState>", // required
301
+ * response: "<ResponseSpecification>",
302
+ * },
303
+ * ],
304
+ * defaultBranch: {
305
+ * nextStep: "<DialogState>",
306
+ * response: "<ResponseSpecification>",
307
+ * },
308
+ * },
309
+ * failureResponse: "<ResponseSpecification>",
310
+ * failureNextStep: "<DialogState>",
311
+ * failureConditional: {
312
+ * active: true || false, // required
313
+ * conditionalBranches: [ // required
314
+ * {
315
+ * name: "STRING_VALUE", // required
316
+ * condition: {
317
+ * expressionString: "STRING_VALUE", // required
318
+ * },
319
+ * nextStep: "<DialogState>", // required
320
+ * response: "<ResponseSpecification>",
321
+ * },
322
+ * ],
323
+ * defaultBranch: {
324
+ * nextStep: "<DialogState>",
325
+ * response: "<ResponseSpecification>",
326
+ * },
327
+ * },
328
+ * timeoutResponse: "<ResponseSpecification>",
329
+ * timeoutNextStep: "<DialogState>",
330
+ * timeoutConditional: {
331
+ * active: true || false, // required
332
+ * conditionalBranches: [ // required
333
+ * {
334
+ * name: "STRING_VALUE", // required
335
+ * condition: {
336
+ * expressionString: "STRING_VALUE", // required
337
+ * },
338
+ * nextStep: "<DialogState>", // required
339
+ * response: "<ResponseSpecification>",
340
+ * },
341
+ * ],
342
+ * defaultBranch: {
343
+ * nextStep: "<DialogState>",
344
+ * response: "<ResponseSpecification>",
345
+ * },
346
+ * },
347
+ * },
348
+ * },
349
+ * elicitationCodeHook: { // ElicitationCodeHookInvocationSetting
350
+ * enableCodeHookInvocation: true || false, // required
351
+ * invocationLabel: "STRING_VALUE",
352
+ * },
353
+ * },
354
+ * },
355
+ * obfuscationSetting: { // ObfuscationSetting
356
+ * obfuscationSettingType: "None" || "DefaultObfuscation", // required
357
+ * },
358
+ * botId: "STRING_VALUE", // required
359
+ * botVersion: "STRING_VALUE", // required
360
+ * localeId: "STRING_VALUE", // required
361
+ * intentId: "STRING_VALUE", // required
362
+ * multipleValuesSetting: { // MultipleValuesSetting
363
+ * allowMultipleValues: true || false,
364
+ * },
365
+ * subSlotSetting: { // SubSlotSetting
366
+ * expression: "STRING_VALUE",
367
+ * slotSpecifications: { // SubSlotSpecificationMap
368
+ * "<keys>": { // Specifications
369
+ * slotTypeId: "STRING_VALUE", // required
370
+ * valueElicitationSetting: { // SubSlotValueElicitationSetting
371
+ * defaultValueSpecification: {
372
+ * defaultValueList: [ // required
373
+ * {
374
+ * defaultValue: "STRING_VALUE", // required
375
+ * },
376
+ * ],
377
+ * },
378
+ * promptSpecification: {
379
+ * messageGroups: "<MessageGroupsList>", // required
380
+ * maxRetries: Number("int"), // required
381
+ * allowInterrupt: true || false,
382
+ * messageSelectionStrategy: "Random" || "Ordered",
383
+ * promptAttemptsSpecification: {
384
+ * "<keys>": {
385
+ * allowInterrupt: true || false,
386
+ * allowedInputTypes: {
387
+ * allowAudioInput: true || false, // required
388
+ * allowDTMFInput: true || false, // required
389
+ * },
390
+ * audioAndDTMFInputSpecification: {
391
+ * startTimeoutMs: Number("int"), // required
392
+ * audioSpecification: {
393
+ * maxLengthMs: Number("int"), // required
394
+ * endTimeoutMs: Number("int"), // required
395
+ * },
396
+ * dtmfSpecification: {
397
+ * maxLength: Number("int"), // required
398
+ * endTimeoutMs: Number("int"), // required
399
+ * deletionCharacter: "STRING_VALUE", // required
400
+ * endCharacter: "STRING_VALUE", // required
401
+ * },
402
+ * },
403
+ * textInputSpecification: {
404
+ * startTimeoutMs: Number("int"), // required
405
+ * },
406
+ * },
407
+ * },
408
+ * },
409
+ * sampleUtterances: [
410
+ * {
411
+ * utterance: "STRING_VALUE", // required
412
+ * },
413
+ * ],
414
+ * waitAndContinueSpecification: {
415
+ * waitingResponse: "<ResponseSpecification>", // required
416
+ * continueResponse: "<ResponseSpecification>", // required
417
+ * stillWaitingResponse: {
418
+ * messageGroups: "<MessageGroupsList>", // required
419
+ * frequencyInSeconds: Number("int"), // required
420
+ * timeoutInSeconds: Number("int"), // required
421
+ * allowInterrupt: true || false,
422
+ * },
423
+ * active: true || false,
424
+ * },
425
+ * },
426
+ * },
427
+ * },
428
+ * },
429
+ * };
29
430
  * const command = new UpdateSlotCommand(input);
30
431
  * const response = await client.send(command);
31
432
  * ```
@@ -26,6 +26,53 @@ export interface UpdateSlotTypeCommandOutput extends UpdateSlotTypeResponse, __M
26
26
  * import { LexModelsV2Client, UpdateSlotTypeCommand } from "@aws-sdk/client-lex-models-v2"; // ES Modules import
27
27
  * // const { LexModelsV2Client, UpdateSlotTypeCommand } = require("@aws-sdk/client-lex-models-v2"); // CommonJS import
28
28
  * const client = new LexModelsV2Client(config);
29
+ * const input = { // UpdateSlotTypeRequest
30
+ * slotTypeId: "STRING_VALUE", // required
31
+ * slotTypeName: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * slotTypeValues: [ // SlotTypeValues
34
+ * { // SlotTypeValue
35
+ * sampleValue: { // SampleValue
36
+ * value: "STRING_VALUE", // required
37
+ * },
38
+ * synonyms: [ // SynonymList
39
+ * {
40
+ * value: "STRING_VALUE", // required
41
+ * },
42
+ * ],
43
+ * },
44
+ * ],
45
+ * valueSelectionSetting: { // SlotValueSelectionSetting
46
+ * resolutionStrategy: "OriginalValue" || "TopResolution" || "Concatenation", // required
47
+ * regexFilter: { // SlotValueRegexFilter
48
+ * pattern: "STRING_VALUE", // required
49
+ * },
50
+ * advancedRecognitionSetting: { // AdvancedRecognitionSetting
51
+ * audioRecognitionStrategy: "UseSlotValuesAsCustomVocabulary",
52
+ * },
53
+ * },
54
+ * parentSlotTypeSignature: "STRING_VALUE",
55
+ * botId: "STRING_VALUE", // required
56
+ * botVersion: "STRING_VALUE", // required
57
+ * localeId: "STRING_VALUE", // required
58
+ * externalSourceSetting: { // ExternalSourceSetting
59
+ * grammarSlotTypeSetting: { // GrammarSlotTypeSetting
60
+ * source: { // GrammarSlotTypeSource
61
+ * s3BucketName: "STRING_VALUE", // required
62
+ * s3ObjectKey: "STRING_VALUE", // required
63
+ * kmsKeyArn: "STRING_VALUE",
64
+ * },
65
+ * },
66
+ * },
67
+ * compositeSlotTypeSetting: { // CompositeSlotTypeSetting
68
+ * subSlots: [ // SubSlotTypeList
69
+ * { // SubSlotTypeComposition
70
+ * name: "STRING_VALUE", // required
71
+ * slotTypeId: "STRING_VALUE", // required
72
+ * },
73
+ * ],
74
+ * },
75
+ * };
29
76
  * const command = new UpdateSlotTypeCommand(input);
30
77
  * const response = await client.send(command);
31
78
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lex-models-v2",
3
3
  "description": "AWS SDK for JavaScript Lex Models V2 Client for Node.js, Browser and React Native",
4
- "version": "3.299.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "@aws-sdk/util-waiter": "3.296.0",
57
57
  "tslib": "^2.5.0"