@aws-sdk/client-lex-runtime-v2 3.296.0 → 3.298.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/commands/DeleteSessionCommand.js +2 -3
- package/dist-cjs/commands/GetSessionCommand.js +1 -1
- package/dist-cjs/models/models_0.js +8 -113
- package/dist-es/commands/DeleteSessionCommand.js +2 -3
- package/dist-es/commands/GetSessionCommand.js +2 -2
- package/dist-es/models/models_0.js +7 -85
- package/dist-types/LexRuntimeV2.d.ts +7 -0
- package/dist-types/LexRuntimeV2Client.d.ts +24 -4
- package/dist-types/commands/DeleteSessionCommand.d.ts +16 -0
- package/dist-types/commands/GetSessionCommand.d.ts +16 -0
- package/dist-types/commands/PutSessionCommand.d.ts +16 -0
- package/dist-types/commands/RecognizeTextCommand.d.ts +16 -0
- package/dist-types/commands/RecognizeUtteranceCommand.d.ts +17 -2
- package/dist-types/commands/StartConversationCommand.d.ts +16 -0
- package/dist-types/models/LexRuntimeV2ServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +113 -104
- package/dist-types/ts3.4/commands/RecognizeUtteranceCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +0 -66
- package/package.json +4 -3
|
@@ -4,7 +4,6 @@ exports.DeleteSessionCommand = void 0;
|
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
-
const models_0_1 = require("../models/models_0");
|
|
8
7
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
8
|
class DeleteSessionCommand extends smithy_client_1.Command {
|
|
10
9
|
static getEndpointParameterInstructions() {
|
|
@@ -30,8 +29,8 @@ class DeleteSessionCommand extends smithy_client_1.Command {
|
|
|
30
29
|
logger,
|
|
31
30
|
clientName,
|
|
32
31
|
commandName,
|
|
33
|
-
inputFilterSensitiveLog:
|
|
34
|
-
outputFilterSensitiveLog:
|
|
32
|
+
inputFilterSensitiveLog: (_) => _,
|
|
33
|
+
outputFilterSensitiveLog: (_) => _,
|
|
35
34
|
};
|
|
36
35
|
const { requestHandler } = configuration;
|
|
37
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -30,7 +30,7 @@ class GetSessionCommand extends smithy_client_1.Command {
|
|
|
30
30
|
logger,
|
|
31
31
|
clientName,
|
|
32
32
|
commandName,
|
|
33
|
-
inputFilterSensitiveLog:
|
|
33
|
+
inputFilterSensitiveLog: (_) => _,
|
|
34
34
|
outputFilterSensitiveLog: models_0_1.GetSessionResponseFilterSensitiveLog,
|
|
35
35
|
};
|
|
36
36
|
const { requestHandler } = configuration;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.StartConversationResponseFilterSensitiveLog = exports.StartConversationResponseEventStreamFilterSensitiveLog = exports.RecognizeTextResponseFilterSensitiveLog = exports.IntentResultEventFilterSensitiveLog = exports.GetSessionResponseFilterSensitiveLog = exports.StartConversationRequestFilterSensitiveLog = exports.StartConversationRequestEventStreamFilterSensitiveLog = exports.RecognizeTextRequestFilterSensitiveLog = exports.PutSessionRequestFilterSensitiveLog = exports.ConfigurationEventFilterSensitiveLog = exports.SessionStateFilterSensitiveLog = exports.InterpretationFilterSensitiveLog = exports.IntentFilterSensitiveLog = exports.SlotFilterSensitiveLog = exports.RuntimeHintsFilterSensitiveLog = void 0;
|
|
3
|
+
exports.StartConversationResponseFilterSensitiveLog = exports.StartConversationResponseEventStreamFilterSensitiveLog = exports.RecognizeTextResponseFilterSensitiveLog = exports.IntentResultEventFilterSensitiveLog = exports.GetSessionResponseFilterSensitiveLog = exports.StartConversationRequestFilterSensitiveLog = exports.StartConversationRequestEventStreamFilterSensitiveLog = exports.RecognizeTextRequestFilterSensitiveLog = exports.PutSessionRequestFilterSensitiveLog = exports.ConfigurationEventFilterSensitiveLog = exports.SessionStateFilterSensitiveLog = exports.TextResponseEventFilterSensitiveLog = exports.TextInputEventFilterSensitiveLog = exports.DTMFInputEventFilterSensitiveLog = exports.RecognizeUtteranceResponseFilterSensitiveLog = exports.RecognizeUtteranceRequestFilterSensitiveLog = exports.PutSessionResponseFilterSensitiveLog = exports.MessageFilterSensitiveLog = exports.ActiveContextFilterSensitiveLog = exports.StartConversationResponseEventStream = exports.StartConversationRequestEventStream = exports.PlaybackInterruptionReason = exports.InputMode = exports.ConversationMode = exports.DependencyFailedException = exports.BadGatewayException = exports.DialogActionType = exports.StyleType = exports.MessageContentType = exports.SentimentType = exports.IntentState = exports.Shape = exports.ConfirmationState = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;
|
|
5
4
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
5
|
const LexRuntimeV2ServiceException_1 = require("./LexRuntimeV2ServiceException");
|
|
7
6
|
class AccessDeniedException extends LexRuntimeV2ServiceException_1.LexRuntimeV2ServiceException {
|
|
@@ -227,76 +226,20 @@ var StartConversationResponseEventStream;
|
|
|
227
226
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
228
227
|
};
|
|
229
228
|
})(StartConversationResponseEventStream = exports.StartConversationResponseEventStream || (exports.StartConversationResponseEventStream = {}));
|
|
230
|
-
const ActiveContextTimeToLiveFilterSensitiveLog = (obj) => ({
|
|
231
|
-
...obj,
|
|
232
|
-
});
|
|
233
|
-
exports.ActiveContextTimeToLiveFilterSensitiveLog = ActiveContextTimeToLiveFilterSensitiveLog;
|
|
234
229
|
const ActiveContextFilterSensitiveLog = (obj) => ({
|
|
235
230
|
...obj,
|
|
236
231
|
...(obj.contextAttributes && { contextAttributes: smithy_client_1.SENSITIVE_STRING }),
|
|
237
232
|
});
|
|
238
233
|
exports.ActiveContextFilterSensitiveLog = ActiveContextFilterSensitiveLog;
|
|
239
|
-
const AudioInputEventFilterSensitiveLog = (obj) => ({
|
|
240
|
-
...obj,
|
|
241
|
-
});
|
|
242
|
-
exports.AudioInputEventFilterSensitiveLog = AudioInputEventFilterSensitiveLog;
|
|
243
|
-
const AudioResponseEventFilterSensitiveLog = (obj) => ({
|
|
244
|
-
...obj,
|
|
245
|
-
});
|
|
246
|
-
exports.AudioResponseEventFilterSensitiveLog = AudioResponseEventFilterSensitiveLog;
|
|
247
|
-
const DeleteSessionRequestFilterSensitiveLog = (obj) => ({
|
|
248
|
-
...obj,
|
|
249
|
-
});
|
|
250
|
-
exports.DeleteSessionRequestFilterSensitiveLog = DeleteSessionRequestFilterSensitiveLog;
|
|
251
|
-
const DeleteSessionResponseFilterSensitiveLog = (obj) => ({
|
|
252
|
-
...obj,
|
|
253
|
-
});
|
|
254
|
-
exports.DeleteSessionResponseFilterSensitiveLog = DeleteSessionResponseFilterSensitiveLog;
|
|
255
|
-
const GetSessionRequestFilterSensitiveLog = (obj) => ({
|
|
256
|
-
...obj,
|
|
257
|
-
});
|
|
258
|
-
exports.GetSessionRequestFilterSensitiveLog = GetSessionRequestFilterSensitiveLog;
|
|
259
|
-
const ValueFilterSensitiveLog = (obj) => ({
|
|
260
|
-
...obj,
|
|
261
|
-
});
|
|
262
|
-
exports.ValueFilterSensitiveLog = ValueFilterSensitiveLog;
|
|
263
|
-
const ConfidenceScoreFilterSensitiveLog = (obj) => ({
|
|
264
|
-
...obj,
|
|
265
|
-
});
|
|
266
|
-
exports.ConfidenceScoreFilterSensitiveLog = ConfidenceScoreFilterSensitiveLog;
|
|
267
|
-
const SentimentScoreFilterSensitiveLog = (obj) => ({
|
|
268
|
-
...obj,
|
|
269
|
-
});
|
|
270
|
-
exports.SentimentScoreFilterSensitiveLog = SentimentScoreFilterSensitiveLog;
|
|
271
|
-
const SentimentResponseFilterSensitiveLog = (obj) => ({
|
|
272
|
-
...obj,
|
|
273
|
-
});
|
|
274
|
-
exports.SentimentResponseFilterSensitiveLog = SentimentResponseFilterSensitiveLog;
|
|
275
|
-
const ButtonFilterSensitiveLog = (obj) => ({
|
|
276
|
-
...obj,
|
|
277
|
-
});
|
|
278
|
-
exports.ButtonFilterSensitiveLog = ButtonFilterSensitiveLog;
|
|
279
|
-
const ImageResponseCardFilterSensitiveLog = (obj) => ({
|
|
280
|
-
...obj,
|
|
281
|
-
});
|
|
282
|
-
exports.ImageResponseCardFilterSensitiveLog = ImageResponseCardFilterSensitiveLog;
|
|
283
234
|
const MessageFilterSensitiveLog = (obj) => ({
|
|
284
235
|
...obj,
|
|
285
236
|
...(obj.content && { content: smithy_client_1.SENSITIVE_STRING }),
|
|
286
237
|
});
|
|
287
238
|
exports.MessageFilterSensitiveLog = MessageFilterSensitiveLog;
|
|
288
|
-
const RuntimeHintValueFilterSensitiveLog = (obj) => ({
|
|
289
|
-
...obj,
|
|
290
|
-
});
|
|
291
|
-
exports.RuntimeHintValueFilterSensitiveLog = RuntimeHintValueFilterSensitiveLog;
|
|
292
239
|
const PutSessionResponseFilterSensitiveLog = (obj) => ({
|
|
293
240
|
...obj,
|
|
294
241
|
});
|
|
295
242
|
exports.PutSessionResponseFilterSensitiveLog = PutSessionResponseFilterSensitiveLog;
|
|
296
|
-
const RecognizedBotMemberFilterSensitiveLog = (obj) => ({
|
|
297
|
-
...obj,
|
|
298
|
-
});
|
|
299
|
-
exports.RecognizedBotMemberFilterSensitiveLog = RecognizedBotMemberFilterSensitiveLog;
|
|
300
243
|
const RecognizeUtteranceRequestFilterSensitiveLog = (obj) => ({
|
|
301
244
|
...obj,
|
|
302
245
|
...(obj.sessionState && { sessionState: smithy_client_1.SENSITIVE_STRING }),
|
|
@@ -307,69 +250,21 @@ const RecognizeUtteranceResponseFilterSensitiveLog = (obj) => ({
|
|
|
307
250
|
...obj,
|
|
308
251
|
});
|
|
309
252
|
exports.RecognizeUtteranceResponseFilterSensitiveLog = RecognizeUtteranceResponseFilterSensitiveLog;
|
|
310
|
-
const DisconnectionEventFilterSensitiveLog = (obj) => ({
|
|
311
|
-
...obj,
|
|
312
|
-
});
|
|
313
|
-
exports.DisconnectionEventFilterSensitiveLog = DisconnectionEventFilterSensitiveLog;
|
|
314
253
|
const DTMFInputEventFilterSensitiveLog = (obj) => ({
|
|
315
254
|
...obj,
|
|
316
255
|
...(obj.inputCharacter && { inputCharacter: smithy_client_1.SENSITIVE_STRING }),
|
|
317
256
|
});
|
|
318
257
|
exports.DTMFInputEventFilterSensitiveLog = DTMFInputEventFilterSensitiveLog;
|
|
319
|
-
const PlaybackCompletionEventFilterSensitiveLog = (obj) => ({
|
|
320
|
-
...obj,
|
|
321
|
-
});
|
|
322
|
-
exports.PlaybackCompletionEventFilterSensitiveLog = PlaybackCompletionEventFilterSensitiveLog;
|
|
323
258
|
const TextInputEventFilterSensitiveLog = (obj) => ({
|
|
324
259
|
...obj,
|
|
325
260
|
...(obj.text && { text: smithy_client_1.SENSITIVE_STRING }),
|
|
326
261
|
});
|
|
327
262
|
exports.TextInputEventFilterSensitiveLog = TextInputEventFilterSensitiveLog;
|
|
328
|
-
const HeartbeatEventFilterSensitiveLog = (obj) => ({
|
|
329
|
-
...obj,
|
|
330
|
-
});
|
|
331
|
-
exports.HeartbeatEventFilterSensitiveLog = HeartbeatEventFilterSensitiveLog;
|
|
332
|
-
const PlaybackInterruptionEventFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
});
|
|
335
|
-
exports.PlaybackInterruptionEventFilterSensitiveLog = PlaybackInterruptionEventFilterSensitiveLog;
|
|
336
263
|
const TextResponseEventFilterSensitiveLog = (obj) => ({
|
|
337
264
|
...obj,
|
|
338
265
|
...(obj.messages && { messages: obj.messages.map((item) => (0, exports.MessageFilterSensitiveLog)(item)) }),
|
|
339
266
|
});
|
|
340
267
|
exports.TextResponseEventFilterSensitiveLog = TextResponseEventFilterSensitiveLog;
|
|
341
|
-
const TranscriptEventFilterSensitiveLog = (obj) => ({
|
|
342
|
-
...obj,
|
|
343
|
-
});
|
|
344
|
-
exports.TranscriptEventFilterSensitiveLog = TranscriptEventFilterSensitiveLog;
|
|
345
|
-
const ElicitSubSlotFilterSensitiveLog = (obj) => ({
|
|
346
|
-
...obj,
|
|
347
|
-
});
|
|
348
|
-
exports.ElicitSubSlotFilterSensitiveLog = ElicitSubSlotFilterSensitiveLog;
|
|
349
|
-
const DialogActionFilterSensitiveLog = (obj) => ({
|
|
350
|
-
...obj,
|
|
351
|
-
});
|
|
352
|
-
exports.DialogActionFilterSensitiveLog = DialogActionFilterSensitiveLog;
|
|
353
|
-
const RuntimeHintDetailsFilterSensitiveLog = (obj) => ({
|
|
354
|
-
...obj,
|
|
355
|
-
});
|
|
356
|
-
exports.RuntimeHintDetailsFilterSensitiveLog = RuntimeHintDetailsFilterSensitiveLog;
|
|
357
|
-
const RuntimeHintsFilterSensitiveLog = (obj) => ({
|
|
358
|
-
...obj,
|
|
359
|
-
});
|
|
360
|
-
exports.RuntimeHintsFilterSensitiveLog = RuntimeHintsFilterSensitiveLog;
|
|
361
|
-
const SlotFilterSensitiveLog = (obj) => ({
|
|
362
|
-
...obj,
|
|
363
|
-
});
|
|
364
|
-
exports.SlotFilterSensitiveLog = SlotFilterSensitiveLog;
|
|
365
|
-
const IntentFilterSensitiveLog = (obj) => ({
|
|
366
|
-
...obj,
|
|
367
|
-
});
|
|
368
|
-
exports.IntentFilterSensitiveLog = IntentFilterSensitiveLog;
|
|
369
|
-
const InterpretationFilterSensitiveLog = (obj) => ({
|
|
370
|
-
...obj,
|
|
371
|
-
});
|
|
372
|
-
exports.InterpretationFilterSensitiveLog = InterpretationFilterSensitiveLog;
|
|
373
268
|
const SessionStateFilterSensitiveLog = (obj) => ({
|
|
374
269
|
...obj,
|
|
375
270
|
...(obj.activeContexts && {
|
|
@@ -396,15 +291,15 @@ const StartConversationRequestEventStreamFilterSensitiveLog = (obj) => {
|
|
|
396
291
|
if (obj.ConfigurationEvent !== undefined)
|
|
397
292
|
return { ConfigurationEvent: (0, exports.ConfigurationEventFilterSensitiveLog)(obj.ConfigurationEvent) };
|
|
398
293
|
if (obj.AudioInputEvent !== undefined)
|
|
399
|
-
return { AudioInputEvent:
|
|
294
|
+
return { AudioInputEvent: obj.AudioInputEvent };
|
|
400
295
|
if (obj.DTMFInputEvent !== undefined)
|
|
401
296
|
return { DTMFInputEvent: (0, exports.DTMFInputEventFilterSensitiveLog)(obj.DTMFInputEvent) };
|
|
402
297
|
if (obj.TextInputEvent !== undefined)
|
|
403
298
|
return { TextInputEvent: (0, exports.TextInputEventFilterSensitiveLog)(obj.TextInputEvent) };
|
|
404
299
|
if (obj.PlaybackCompletionEvent !== undefined)
|
|
405
|
-
return { PlaybackCompletionEvent:
|
|
300
|
+
return { PlaybackCompletionEvent: obj.PlaybackCompletionEvent };
|
|
406
301
|
if (obj.DisconnectionEvent !== undefined)
|
|
407
|
-
return { DisconnectionEvent:
|
|
302
|
+
return { DisconnectionEvent: obj.DisconnectionEvent };
|
|
408
303
|
if (obj.$unknown !== undefined)
|
|
409
304
|
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
410
305
|
};
|
|
@@ -430,17 +325,17 @@ const RecognizeTextResponseFilterSensitiveLog = (obj) => ({
|
|
|
430
325
|
exports.RecognizeTextResponseFilterSensitiveLog = RecognizeTextResponseFilterSensitiveLog;
|
|
431
326
|
const StartConversationResponseEventStreamFilterSensitiveLog = (obj) => {
|
|
432
327
|
if (obj.PlaybackInterruptionEvent !== undefined)
|
|
433
|
-
return { PlaybackInterruptionEvent:
|
|
328
|
+
return { PlaybackInterruptionEvent: obj.PlaybackInterruptionEvent };
|
|
434
329
|
if (obj.TranscriptEvent !== undefined)
|
|
435
|
-
return { TranscriptEvent:
|
|
330
|
+
return { TranscriptEvent: obj.TranscriptEvent };
|
|
436
331
|
if (obj.IntentResultEvent !== undefined)
|
|
437
332
|
return { IntentResultEvent: (0, exports.IntentResultEventFilterSensitiveLog)(obj.IntentResultEvent) };
|
|
438
333
|
if (obj.TextResponseEvent !== undefined)
|
|
439
334
|
return { TextResponseEvent: (0, exports.TextResponseEventFilterSensitiveLog)(obj.TextResponseEvent) };
|
|
440
335
|
if (obj.AudioResponseEvent !== undefined)
|
|
441
|
-
return { AudioResponseEvent:
|
|
336
|
+
return { AudioResponseEvent: obj.AudioResponseEvent };
|
|
442
337
|
if (obj.HeartbeatEvent !== undefined)
|
|
443
|
-
return { HeartbeatEvent:
|
|
338
|
+
return { HeartbeatEvent: obj.HeartbeatEvent };
|
|
444
339
|
if (obj.AccessDeniedException !== undefined)
|
|
445
340
|
return { AccessDeniedException: obj.AccessDeniedException };
|
|
446
341
|
if (obj.ResourceNotFoundException !== undefined)
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DeleteSessionRequestFilterSensitiveLog, DeleteSessionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1DeleteSessionCommand, serializeAws_restJson1DeleteSessionCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class DeleteSessionCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class DeleteSessionCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetSessionResponseFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetSessionCommand, serializeAws_restJson1GetSessionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class GetSessionCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
@@ -27,7 +27,7 @@ export class GetSessionCommand extends $Command {
|
|
|
27
27
|
logger,
|
|
28
28
|
clientName,
|
|
29
29
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
30
|
+
inputFilterSensitiveLog: (_) => _,
|
|
31
31
|
outputFilterSensitiveLog: GetSessionResponseFilterSensitiveLog,
|
|
32
32
|
};
|
|
33
33
|
const { requestHandler } = configuration;
|
|
@@ -215,59 +215,17 @@ export var StartConversationResponseEventStream;
|
|
|
215
215
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
216
216
|
};
|
|
217
217
|
})(StartConversationResponseEventStream || (StartConversationResponseEventStream = {}));
|
|
218
|
-
export const ActiveContextTimeToLiveFilterSensitiveLog = (obj) => ({
|
|
219
|
-
...obj,
|
|
220
|
-
});
|
|
221
218
|
export const ActiveContextFilterSensitiveLog = (obj) => ({
|
|
222
219
|
...obj,
|
|
223
220
|
...(obj.contextAttributes && { contextAttributes: SENSITIVE_STRING }),
|
|
224
221
|
});
|
|
225
|
-
export const AudioInputEventFilterSensitiveLog = (obj) => ({
|
|
226
|
-
...obj,
|
|
227
|
-
});
|
|
228
|
-
export const AudioResponseEventFilterSensitiveLog = (obj) => ({
|
|
229
|
-
...obj,
|
|
230
|
-
});
|
|
231
|
-
export const DeleteSessionRequestFilterSensitiveLog = (obj) => ({
|
|
232
|
-
...obj,
|
|
233
|
-
});
|
|
234
|
-
export const DeleteSessionResponseFilterSensitiveLog = (obj) => ({
|
|
235
|
-
...obj,
|
|
236
|
-
});
|
|
237
|
-
export const GetSessionRequestFilterSensitiveLog = (obj) => ({
|
|
238
|
-
...obj,
|
|
239
|
-
});
|
|
240
|
-
export const ValueFilterSensitiveLog = (obj) => ({
|
|
241
|
-
...obj,
|
|
242
|
-
});
|
|
243
|
-
export const ConfidenceScoreFilterSensitiveLog = (obj) => ({
|
|
244
|
-
...obj,
|
|
245
|
-
});
|
|
246
|
-
export const SentimentScoreFilterSensitiveLog = (obj) => ({
|
|
247
|
-
...obj,
|
|
248
|
-
});
|
|
249
|
-
export const SentimentResponseFilterSensitiveLog = (obj) => ({
|
|
250
|
-
...obj,
|
|
251
|
-
});
|
|
252
|
-
export const ButtonFilterSensitiveLog = (obj) => ({
|
|
253
|
-
...obj,
|
|
254
|
-
});
|
|
255
|
-
export const ImageResponseCardFilterSensitiveLog = (obj) => ({
|
|
256
|
-
...obj,
|
|
257
|
-
});
|
|
258
222
|
export const MessageFilterSensitiveLog = (obj) => ({
|
|
259
223
|
...obj,
|
|
260
224
|
...(obj.content && { content: SENSITIVE_STRING }),
|
|
261
225
|
});
|
|
262
|
-
export const RuntimeHintValueFilterSensitiveLog = (obj) => ({
|
|
263
|
-
...obj,
|
|
264
|
-
});
|
|
265
226
|
export const PutSessionResponseFilterSensitiveLog = (obj) => ({
|
|
266
227
|
...obj,
|
|
267
228
|
});
|
|
268
|
-
export const RecognizedBotMemberFilterSensitiveLog = (obj) => ({
|
|
269
|
-
...obj,
|
|
270
|
-
});
|
|
271
229
|
export const RecognizeUtteranceRequestFilterSensitiveLog = (obj) => ({
|
|
272
230
|
...obj,
|
|
273
231
|
...(obj.sessionState && { sessionState: SENSITIVE_STRING }),
|
|
@@ -276,54 +234,18 @@ export const RecognizeUtteranceRequestFilterSensitiveLog = (obj) => ({
|
|
|
276
234
|
export const RecognizeUtteranceResponseFilterSensitiveLog = (obj) => ({
|
|
277
235
|
...obj,
|
|
278
236
|
});
|
|
279
|
-
export const DisconnectionEventFilterSensitiveLog = (obj) => ({
|
|
280
|
-
...obj,
|
|
281
|
-
});
|
|
282
237
|
export const DTMFInputEventFilterSensitiveLog = (obj) => ({
|
|
283
238
|
...obj,
|
|
284
239
|
...(obj.inputCharacter && { inputCharacter: SENSITIVE_STRING }),
|
|
285
240
|
});
|
|
286
|
-
export const PlaybackCompletionEventFilterSensitiveLog = (obj) => ({
|
|
287
|
-
...obj,
|
|
288
|
-
});
|
|
289
241
|
export const TextInputEventFilterSensitiveLog = (obj) => ({
|
|
290
242
|
...obj,
|
|
291
243
|
...(obj.text && { text: SENSITIVE_STRING }),
|
|
292
244
|
});
|
|
293
|
-
export const HeartbeatEventFilterSensitiveLog = (obj) => ({
|
|
294
|
-
...obj,
|
|
295
|
-
});
|
|
296
|
-
export const PlaybackInterruptionEventFilterSensitiveLog = (obj) => ({
|
|
297
|
-
...obj,
|
|
298
|
-
});
|
|
299
245
|
export const TextResponseEventFilterSensitiveLog = (obj) => ({
|
|
300
246
|
...obj,
|
|
301
247
|
...(obj.messages && { messages: obj.messages.map((item) => MessageFilterSensitiveLog(item)) }),
|
|
302
248
|
});
|
|
303
|
-
export const TranscriptEventFilterSensitiveLog = (obj) => ({
|
|
304
|
-
...obj,
|
|
305
|
-
});
|
|
306
|
-
export const ElicitSubSlotFilterSensitiveLog = (obj) => ({
|
|
307
|
-
...obj,
|
|
308
|
-
});
|
|
309
|
-
export const DialogActionFilterSensitiveLog = (obj) => ({
|
|
310
|
-
...obj,
|
|
311
|
-
});
|
|
312
|
-
export const RuntimeHintDetailsFilterSensitiveLog = (obj) => ({
|
|
313
|
-
...obj,
|
|
314
|
-
});
|
|
315
|
-
export const RuntimeHintsFilterSensitiveLog = (obj) => ({
|
|
316
|
-
...obj,
|
|
317
|
-
});
|
|
318
|
-
export const SlotFilterSensitiveLog = (obj) => ({
|
|
319
|
-
...obj,
|
|
320
|
-
});
|
|
321
|
-
export const IntentFilterSensitiveLog = (obj) => ({
|
|
322
|
-
...obj,
|
|
323
|
-
});
|
|
324
|
-
export const InterpretationFilterSensitiveLog = (obj) => ({
|
|
325
|
-
...obj,
|
|
326
|
-
});
|
|
327
249
|
export const SessionStateFilterSensitiveLog = (obj) => ({
|
|
328
250
|
...obj,
|
|
329
251
|
...(obj.activeContexts && {
|
|
@@ -346,15 +268,15 @@ export const StartConversationRequestEventStreamFilterSensitiveLog = (obj) => {
|
|
|
346
268
|
if (obj.ConfigurationEvent !== undefined)
|
|
347
269
|
return { ConfigurationEvent: ConfigurationEventFilterSensitiveLog(obj.ConfigurationEvent) };
|
|
348
270
|
if (obj.AudioInputEvent !== undefined)
|
|
349
|
-
return { AudioInputEvent:
|
|
271
|
+
return { AudioInputEvent: obj.AudioInputEvent };
|
|
350
272
|
if (obj.DTMFInputEvent !== undefined)
|
|
351
273
|
return { DTMFInputEvent: DTMFInputEventFilterSensitiveLog(obj.DTMFInputEvent) };
|
|
352
274
|
if (obj.TextInputEvent !== undefined)
|
|
353
275
|
return { TextInputEvent: TextInputEventFilterSensitiveLog(obj.TextInputEvent) };
|
|
354
276
|
if (obj.PlaybackCompletionEvent !== undefined)
|
|
355
|
-
return { PlaybackCompletionEvent:
|
|
277
|
+
return { PlaybackCompletionEvent: obj.PlaybackCompletionEvent };
|
|
356
278
|
if (obj.DisconnectionEvent !== undefined)
|
|
357
|
-
return { DisconnectionEvent:
|
|
279
|
+
return { DisconnectionEvent: obj.DisconnectionEvent };
|
|
358
280
|
if (obj.$unknown !== undefined)
|
|
359
281
|
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
360
282
|
};
|
|
@@ -375,17 +297,17 @@ export const RecognizeTextResponseFilterSensitiveLog = (obj) => ({
|
|
|
375
297
|
});
|
|
376
298
|
export const StartConversationResponseEventStreamFilterSensitiveLog = (obj) => {
|
|
377
299
|
if (obj.PlaybackInterruptionEvent !== undefined)
|
|
378
|
-
return { PlaybackInterruptionEvent:
|
|
300
|
+
return { PlaybackInterruptionEvent: obj.PlaybackInterruptionEvent };
|
|
379
301
|
if (obj.TranscriptEvent !== undefined)
|
|
380
|
-
return { TranscriptEvent:
|
|
302
|
+
return { TranscriptEvent: obj.TranscriptEvent };
|
|
381
303
|
if (obj.IntentResultEvent !== undefined)
|
|
382
304
|
return { IntentResultEvent: IntentResultEventFilterSensitiveLog(obj.IntentResultEvent) };
|
|
383
305
|
if (obj.TextResponseEvent !== undefined)
|
|
384
306
|
return { TextResponseEvent: TextResponseEventFilterSensitiveLog(obj.TextResponseEvent) };
|
|
385
307
|
if (obj.AudioResponseEvent !== undefined)
|
|
386
|
-
return { AudioResponseEvent:
|
|
308
|
+
return { AudioResponseEvent: obj.AudioResponseEvent };
|
|
387
309
|
if (obj.HeartbeatEvent !== undefined)
|
|
388
|
-
return { HeartbeatEvent:
|
|
310
|
+
return { HeartbeatEvent: obj.HeartbeatEvent };
|
|
389
311
|
if (obj.AccessDeniedException !== undefined)
|
|
390
312
|
return { AccessDeniedException: obj.AccessDeniedException };
|
|
391
313
|
if (obj.ResourceNotFoundException !== undefined)
|
|
@@ -7,10 +7,12 @@ import { RecognizeUtteranceCommandInput, RecognizeUtteranceCommandOutput } from
|
|
|
7
7
|
import { StartConversationCommandInput, StartConversationCommandOutput } from "./commands/StartConversationCommand";
|
|
8
8
|
import { LexRuntimeV2Client } from "./LexRuntimeV2Client";
|
|
9
9
|
/**
|
|
10
|
+
* @public
|
|
10
11
|
* <p>This section contains documentation for the Amazon Lex V2 Runtime V2 API operations.</p>
|
|
11
12
|
*/
|
|
12
13
|
export declare class LexRuntimeV2 extends LexRuntimeV2Client {
|
|
13
14
|
/**
|
|
15
|
+
* @public
|
|
14
16
|
* <p>Removes session information for a specified bot, alias, and user ID. </p>
|
|
15
17
|
* <p>You can use this operation to restart a conversation with a bot.
|
|
16
18
|
* When you remove a session, the entire history of the session is removed
|
|
@@ -30,6 +32,7 @@ export declare class LexRuntimeV2 extends LexRuntimeV2Client {
|
|
|
30
32
|
deleteSession(args: DeleteSessionCommandInput, cb: (err: any, data?: DeleteSessionCommandOutput) => void): void;
|
|
31
33
|
deleteSession(args: DeleteSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSessionCommandOutput) => void): void;
|
|
32
34
|
/**
|
|
35
|
+
* @public
|
|
33
36
|
* <p>Returns session information for a specified bot, alias, and
|
|
34
37
|
* user.</p>
|
|
35
38
|
* <p>For example, you can use this operation to retrieve session
|
|
@@ -44,6 +47,7 @@ export declare class LexRuntimeV2 extends LexRuntimeV2Client {
|
|
|
44
47
|
getSession(args: GetSessionCommandInput, cb: (err: any, data?: GetSessionCommandOutput) => void): void;
|
|
45
48
|
getSession(args: GetSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSessionCommandOutput) => void): void;
|
|
46
49
|
/**
|
|
50
|
+
* @public
|
|
47
51
|
* <p>Creates a new session or modifies an existing session with an Amazon Lex V2
|
|
48
52
|
* bot. Use this operation to enable your application to set the state of
|
|
49
53
|
* the bot.</p>
|
|
@@ -52,6 +56,7 @@ export declare class LexRuntimeV2 extends LexRuntimeV2Client {
|
|
|
52
56
|
putSession(args: PutSessionCommandInput, cb: (err: any, data?: PutSessionCommandOutput) => void): void;
|
|
53
57
|
putSession(args: PutSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSessionCommandOutput) => void): void;
|
|
54
58
|
/**
|
|
59
|
+
* @public
|
|
55
60
|
* <p>Sends user input to Amazon Lex V2. Client applications use this API to send
|
|
56
61
|
* requests to Amazon Lex V2 at runtime. Amazon Lex V2 then interprets the user input
|
|
57
62
|
* using the machine learning model that it build for the bot.</p>
|
|
@@ -88,6 +93,7 @@ export declare class LexRuntimeV2 extends LexRuntimeV2Client {
|
|
|
88
93
|
recognizeText(args: RecognizeTextCommandInput, cb: (err: any, data?: RecognizeTextCommandOutput) => void): void;
|
|
89
94
|
recognizeText(args: RecognizeTextCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RecognizeTextCommandOutput) => void): void;
|
|
90
95
|
/**
|
|
96
|
+
* @public
|
|
91
97
|
* <p>Sends user input to Amazon Lex V2. You can send text or speech. Clients use
|
|
92
98
|
* this API to send text and audio requests to Amazon Lex V2 at runtime. Amazon Lex V2
|
|
93
99
|
* interprets the user input using the machine learning model built for
|
|
@@ -156,6 +162,7 @@ export declare class LexRuntimeV2 extends LexRuntimeV2Client {
|
|
|
156
162
|
recognizeUtterance(args: RecognizeUtteranceCommandInput, cb: (err: any, data?: RecognizeUtteranceCommandOutput) => void): void;
|
|
157
163
|
recognizeUtterance(args: RecognizeUtteranceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RecognizeUtteranceCommandOutput) => void): void;
|
|
158
164
|
/**
|
|
165
|
+
* @public
|
|
159
166
|
* <p>Starts an HTTP/2 bidirectional event stream that enables you to send
|
|
160
167
|
* audio, text, or DTMF input in real time. After your application starts
|
|
161
168
|
* a conversation, users send input to Amazon Lex V2 as a stream of events. Amazon Lex V2
|
|
@@ -16,15 +16,24 @@ import { RecognizeTextCommandInput, RecognizeTextCommandOutput } from "./command
|
|
|
16
16
|
import { RecognizeUtteranceCommandInput, RecognizeUtteranceCommandOutput } from "./commands/RecognizeUtteranceCommand";
|
|
17
17
|
import { StartConversationCommandInput, StartConversationCommandOutput } from "./commands/StartConversationCommand";
|
|
18
18
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
19
22
|
export type ServiceInputTypes = DeleteSessionCommandInput | GetSessionCommandInput | PutSessionCommandInput | RecognizeTextCommandInput | RecognizeUtteranceCommandInput | StartConversationCommandInput;
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
20
26
|
export type ServiceOutputTypes = DeleteSessionCommandOutput | GetSessionCommandOutput | PutSessionCommandOutput | RecognizeTextCommandOutput | RecognizeUtteranceCommandOutput | StartConversationCommandOutput;
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
21
30
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
22
31
|
/**
|
|
23
32
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
24
33
|
*/
|
|
25
34
|
requestHandler?: __HttpHandler;
|
|
26
35
|
/**
|
|
27
|
-
* A constructor for a class implementing the {@link
|
|
36
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
28
37
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
29
38
|
* @internal
|
|
30
39
|
*/
|
|
@@ -123,7 +132,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
123
132
|
*/
|
|
124
133
|
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
125
134
|
/**
|
|
126
|
-
* The {@link
|
|
135
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
127
136
|
*/
|
|
128
137
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
129
138
|
/**
|
|
@@ -132,19 +141,30 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
132
141
|
*/
|
|
133
142
|
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
134
143
|
}
|
|
144
|
+
/**
|
|
145
|
+
* @public
|
|
146
|
+
*/
|
|
135
147
|
type LexRuntimeV2ClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & EventStreamInputConfig & UserAgentInputConfig & EventStreamSerdeInputConfig & ClientInputEndpointParameters;
|
|
136
148
|
/**
|
|
137
|
-
*
|
|
149
|
+
* @public
|
|
150
|
+
*
|
|
151
|
+
* The configuration interface of LexRuntimeV2Client class constructor that set the region, credentials and other options.
|
|
138
152
|
*/
|
|
139
153
|
export interface LexRuntimeV2ClientConfig extends LexRuntimeV2ClientConfigType {
|
|
140
154
|
}
|
|
155
|
+
/**
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
141
158
|
type LexRuntimeV2ClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & EventStreamResolvedConfig & UserAgentResolvedConfig & EventStreamSerdeResolvedConfig & ClientResolvedEndpointParameters;
|
|
142
159
|
/**
|
|
143
|
-
*
|
|
160
|
+
* @public
|
|
161
|
+
*
|
|
162
|
+
* The resolved configuration interface of LexRuntimeV2Client class. This is resolved and normalized from the {@link LexRuntimeV2ClientConfig | constructor configuration interface}.
|
|
144
163
|
*/
|
|
145
164
|
export interface LexRuntimeV2ClientResolvedConfig extends LexRuntimeV2ClientResolvedConfigType {
|
|
146
165
|
}
|
|
147
166
|
/**
|
|
167
|
+
* @public
|
|
148
168
|
* <p>This section contains documentation for the Amazon Lex V2 Runtime V2 API operations.</p>
|
|
149
169
|
*/
|
|
150
170
|
export declare class LexRuntimeV2Client extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, LexRuntimeV2ClientResolvedConfig> {
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client";
|
|
5
5
|
import { DeleteSessionRequest, DeleteSessionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteSessionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteSessionCommandInput extends DeleteSessionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteSessionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteSessionCommandOutput extends DeleteSessionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes session information for a specified bot, alias, and user ID. </p>
|
|
18
23
|
* <p>You can use this operation to restart a conversation with a bot.
|
|
19
24
|
* When you remove a session, the entire history of the session is removed
|
|
@@ -38,6 +43,8 @@ export interface DeleteSessionCommandOutput extends DeleteSessionResponse, __Met
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param DeleteSessionCommandInput - {@link DeleteSessionCommandInput}
|
|
47
|
+
* @returns {@link DeleteSessionCommandOutput}
|
|
41
48
|
* @see {@link DeleteSessionCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link DeleteSessionCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link LexRuntimeV2ClientResolvedConfig | config} for LexRuntimeV2Client's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface DeleteSessionCommandOutput extends DeleteSessionResponse, __Met
|
|
|
65
72
|
export declare class DeleteSessionCommand extends $Command<DeleteSessionCommandInput, DeleteSessionCommandOutput, LexRuntimeV2ClientResolvedConfig> {
|
|
66
73
|
readonly input: DeleteSessionCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: DeleteSessionCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LexRuntimeV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSessionCommandInput, DeleteSessionCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client";
|
|
5
5
|
import { GetSessionRequest, GetSessionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSessionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSessionCommandInput extends GetSessionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSessionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns session information for a specified bot, alias, and
|
|
18
23
|
* user.</p>
|
|
19
24
|
* <p>For example, you can use this operation to retrieve session
|
|
@@ -33,6 +38,8 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param GetSessionCommandInput - {@link GetSessionCommandInput}
|
|
42
|
+
* @returns {@link GetSessionCommandOutput}
|
|
36
43
|
* @see {@link GetSessionCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link GetSessionCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link LexRuntimeV2ClientResolvedConfig | config} for LexRuntimeV2Client's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB
|
|
|
57
64
|
export declare class GetSessionCommand extends $Command<GetSessionCommandInput, GetSessionCommandOutput, LexRuntimeV2ClientResolvedConfig> {
|
|
58
65
|
readonly input: GetSessionCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: GetSessionCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LexRuntimeV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSessionCommandInput, GetSessionCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|