@aws-sdk/client-lex-runtime-v2 3.131.0 → 3.140.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/CHANGELOG.md +30 -0
- package/dist-cjs/commands/DeleteSessionCommand.js +2 -2
- package/dist-cjs/commands/GetSessionCommand.js +2 -2
- package/dist-cjs/commands/PutSessionCommand.js +2 -2
- package/dist-cjs/commands/RecognizeTextCommand.js +2 -2
- package/dist-cjs/commands/RecognizeUtteranceCommand.js +2 -2
- package/dist-cjs/commands/StartConversationCommand.js +2 -2
- package/dist-cjs/models/models_0.js +233 -315
- package/dist-cjs/protocols/Aws_restJson1.js +242 -409
- package/dist-cjs/runtimeConfig.js +1 -1
- package/dist-es/commands/DeleteSessionCommand.js +3 -3
- package/dist-es/commands/GetSessionCommand.js +3 -3
- package/dist-es/commands/PutSessionCommand.js +3 -3
- package/dist-es/commands/RecognizeTextCommand.js +3 -3
- package/dist-es/commands/RecognizeUtteranceCommand.js +3 -3
- package/dist-es/commands/StartConversationCommand.js +3 -3
- package/dist-es/models/models_0.js +93 -218
- package/dist-es/protocols/Aws_restJson1.js +257 -414
- package/dist-es/runtimeConfig.js +8 -1
- package/dist-types/models/models_0.d.ts +172 -254
- package/dist-types/ts3.4/models/models_0.d.ts +0 -76
- package/package.json +6 -6
|
@@ -29,12 +29,6 @@ export interface ActiveContextTimeToLive {
|
|
|
29
29
|
*/
|
|
30
30
|
turnsToLive: number | undefined;
|
|
31
31
|
}
|
|
32
|
-
export declare namespace ActiveContextTimeToLive {
|
|
33
|
-
/**
|
|
34
|
-
* @internal
|
|
35
|
-
*/
|
|
36
|
-
const filterSensitiveLog: (obj: ActiveContextTimeToLive) => any;
|
|
37
|
-
}
|
|
38
32
|
/**
|
|
39
33
|
* <p>Contains information about the contexts that a user is using in a
|
|
40
34
|
* session. You can configure Amazon Lex V2 to set a context when an intent is
|
|
@@ -66,12 +60,6 @@ export interface ActiveContext {
|
|
|
66
60
|
*/
|
|
67
61
|
contextAttributes: Record<string, string> | undefined;
|
|
68
62
|
}
|
|
69
|
-
export declare namespace ActiveContext {
|
|
70
|
-
/**
|
|
71
|
-
* @internal
|
|
72
|
-
*/
|
|
73
|
-
const filterSensitiveLog: (obj: ActiveContext) => any;
|
|
74
|
-
}
|
|
75
63
|
/**
|
|
76
64
|
* <p>Represents a chunk of audio sent from the client application to
|
|
77
65
|
* Amazon Lex V2. The audio is all or part of an utterance from the user.</p>
|
|
@@ -104,12 +92,6 @@ export interface AudioInputEvent {
|
|
|
104
92
|
*/
|
|
105
93
|
clientTimestampMillis?: number;
|
|
106
94
|
}
|
|
107
|
-
export declare namespace AudioInputEvent {
|
|
108
|
-
/**
|
|
109
|
-
* @internal
|
|
110
|
-
*/
|
|
111
|
-
const filterSensitiveLog: (obj: AudioInputEvent) => any;
|
|
112
|
-
}
|
|
113
95
|
/**
|
|
114
96
|
* <p>An event sent from Amazon Lex V2 to your client application containing audio
|
|
115
97
|
* to play to the user. </p>
|
|
@@ -133,12 +115,6 @@ export interface AudioResponseEvent {
|
|
|
133
115
|
*/
|
|
134
116
|
eventId?: string;
|
|
135
117
|
}
|
|
136
|
-
export declare namespace AudioResponseEvent {
|
|
137
|
-
/**
|
|
138
|
-
* @internal
|
|
139
|
-
*/
|
|
140
|
-
const filterSensitiveLog: (obj: AudioResponseEvent) => any;
|
|
141
|
-
}
|
|
142
118
|
/**
|
|
143
119
|
* <p></p>
|
|
144
120
|
*/
|
|
@@ -169,12 +145,6 @@ export interface DeleteSessionRequest {
|
|
|
169
145
|
*/
|
|
170
146
|
sessionId: string | undefined;
|
|
171
147
|
}
|
|
172
|
-
export declare namespace DeleteSessionRequest {
|
|
173
|
-
/**
|
|
174
|
-
* @internal
|
|
175
|
-
*/
|
|
176
|
-
const filterSensitiveLog: (obj: DeleteSessionRequest) => any;
|
|
177
|
-
}
|
|
178
148
|
export interface DeleteSessionResponse {
|
|
179
149
|
/**
|
|
180
150
|
* <p>The identifier of the bot that contained the session data.</p>
|
|
@@ -194,12 +164,6 @@ export interface DeleteSessionResponse {
|
|
|
194
164
|
*/
|
|
195
165
|
sessionId?: string;
|
|
196
166
|
}
|
|
197
|
-
export declare namespace DeleteSessionResponse {
|
|
198
|
-
/**
|
|
199
|
-
* @internal
|
|
200
|
-
*/
|
|
201
|
-
const filterSensitiveLog: (obj: DeleteSessionResponse) => any;
|
|
202
|
-
}
|
|
203
167
|
/**
|
|
204
168
|
* <p></p>
|
|
205
169
|
*/
|
|
@@ -263,12 +227,6 @@ export interface GetSessionRequest {
|
|
|
263
227
|
*/
|
|
264
228
|
sessionId: string | undefined;
|
|
265
229
|
}
|
|
266
|
-
export declare namespace GetSessionRequest {
|
|
267
|
-
/**
|
|
268
|
-
* @internal
|
|
269
|
-
*/
|
|
270
|
-
const filterSensitiveLog: (obj: GetSessionRequest) => any;
|
|
271
|
-
}
|
|
272
230
|
export declare enum ConfirmationState {
|
|
273
231
|
CONFIRMED = "Confirmed",
|
|
274
232
|
DENIED = "Denied",
|
|
@@ -300,12 +258,6 @@ export interface Value {
|
|
|
300
258
|
*/
|
|
301
259
|
resolvedValues?: string[];
|
|
302
260
|
}
|
|
303
|
-
export declare namespace Value {
|
|
304
|
-
/**
|
|
305
|
-
* @internal
|
|
306
|
-
*/
|
|
307
|
-
const filterSensitiveLog: (obj: Value) => any;
|
|
308
|
-
}
|
|
309
261
|
export declare enum IntentState {
|
|
310
262
|
FAILED = "Failed",
|
|
311
263
|
FULFILLED = "Fulfilled",
|
|
@@ -326,12 +278,6 @@ export interface ConfidenceScore {
|
|
|
326
278
|
*/
|
|
327
279
|
score?: number;
|
|
328
280
|
}
|
|
329
|
-
export declare namespace ConfidenceScore {
|
|
330
|
-
/**
|
|
331
|
-
* @internal
|
|
332
|
-
*/
|
|
333
|
-
const filterSensitiveLog: (obj: ConfidenceScore) => any;
|
|
334
|
-
}
|
|
335
281
|
export declare enum SentimentType {
|
|
336
282
|
MIXED = "MIXED",
|
|
337
283
|
NEGATIVE = "NEGATIVE",
|
|
@@ -363,12 +309,6 @@ export interface SentimentScore {
|
|
|
363
309
|
*/
|
|
364
310
|
mixed?: number;
|
|
365
311
|
}
|
|
366
|
-
export declare namespace SentimentScore {
|
|
367
|
-
/**
|
|
368
|
-
* @internal
|
|
369
|
-
*/
|
|
370
|
-
const filterSensitiveLog: (obj: SentimentScore) => any;
|
|
371
|
-
}
|
|
372
312
|
/**
|
|
373
313
|
* <p>Provides information about the sentiment expressed in a user's
|
|
374
314
|
* response in a conversation. Sentiments are determined using Amazon
|
|
@@ -390,12 +330,6 @@ export interface SentimentResponse {
|
|
|
390
330
|
*/
|
|
391
331
|
sentimentScore?: SentimentScore;
|
|
392
332
|
}
|
|
393
|
-
export declare namespace SentimentResponse {
|
|
394
|
-
/**
|
|
395
|
-
* @internal
|
|
396
|
-
*/
|
|
397
|
-
const filterSensitiveLog: (obj: SentimentResponse) => any;
|
|
398
|
-
}
|
|
399
333
|
export declare enum MessageContentType {
|
|
400
334
|
CUSTOM_PAYLOAD = "CustomPayload",
|
|
401
335
|
IMAGE_RESPONSE_CARD = "ImageResponseCard",
|
|
@@ -415,12 +349,6 @@ export interface Button {
|
|
|
415
349
|
*/
|
|
416
350
|
value: string | undefined;
|
|
417
351
|
}
|
|
418
|
-
export declare namespace Button {
|
|
419
|
-
/**
|
|
420
|
-
* @internal
|
|
421
|
-
*/
|
|
422
|
-
const filterSensitiveLog: (obj: Button) => any;
|
|
423
|
-
}
|
|
424
352
|
/**
|
|
425
353
|
* <p>A card that is shown to the user by a messaging platform. You define
|
|
426
354
|
* the contents of the card, the card is displayed by the platform. </p>
|
|
@@ -452,12 +380,6 @@ export interface ImageResponseCard {
|
|
|
452
380
|
*/
|
|
453
381
|
buttons?: Button[];
|
|
454
382
|
}
|
|
455
|
-
export declare namespace ImageResponseCard {
|
|
456
|
-
/**
|
|
457
|
-
* @internal
|
|
458
|
-
*/
|
|
459
|
-
const filterSensitiveLog: (obj: ImageResponseCard) => any;
|
|
460
|
-
}
|
|
461
383
|
/**
|
|
462
384
|
* <p>Container for text that is returned to the customer..</p>
|
|
463
385
|
*/
|
|
@@ -478,12 +400,6 @@ export interface Message {
|
|
|
478
400
|
*/
|
|
479
401
|
imageResponseCard?: ImageResponseCard;
|
|
480
402
|
}
|
|
481
|
-
export declare namespace Message {
|
|
482
|
-
/**
|
|
483
|
-
* @internal
|
|
484
|
-
*/
|
|
485
|
-
const filterSensitiveLog: (obj: Message) => any;
|
|
486
|
-
}
|
|
487
403
|
export declare enum StyleType {
|
|
488
404
|
DEFAULT = "Default",
|
|
489
405
|
SPELL_BY_LETTER = "SpellByLetter",
|
|
@@ -552,12 +468,6 @@ export interface DialogAction {
|
|
|
552
468
|
*/
|
|
553
469
|
slotElicitationStyle?: StyleType | string;
|
|
554
470
|
}
|
|
555
|
-
export declare namespace DialogAction {
|
|
556
|
-
/**
|
|
557
|
-
* @internal
|
|
558
|
-
*/
|
|
559
|
-
const filterSensitiveLog: (obj: DialogAction) => any;
|
|
560
|
-
}
|
|
561
471
|
/**
|
|
562
472
|
* <p>Provides the phrase that Amazon Lex V2 should look for in the user's input
|
|
563
473
|
* to the bot.</p>
|
|
@@ -569,12 +479,6 @@ export interface RuntimeHintValue {
|
|
|
569
479
|
*/
|
|
570
480
|
phrase: string | undefined;
|
|
571
481
|
}
|
|
572
|
-
export declare namespace RuntimeHintValue {
|
|
573
|
-
/**
|
|
574
|
-
* @internal
|
|
575
|
-
*/
|
|
576
|
-
const filterSensitiveLog: (obj: RuntimeHintValue) => any;
|
|
577
|
-
}
|
|
578
482
|
/**
|
|
579
483
|
* <p>Provides an array of phrases that should be given preference when
|
|
580
484
|
* resolving values for a slot.</p>
|
|
@@ -587,12 +491,6 @@ export interface RuntimeHintDetails {
|
|
|
587
491
|
*/
|
|
588
492
|
runtimeHintValues: RuntimeHintValue[] | undefined;
|
|
589
493
|
}
|
|
590
|
-
export declare namespace RuntimeHintDetails {
|
|
591
|
-
/**
|
|
592
|
-
* @internal
|
|
593
|
-
*/
|
|
594
|
-
const filterSensitiveLog: (obj: RuntimeHintDetails) => any;
|
|
595
|
-
}
|
|
596
494
|
/**
|
|
597
495
|
* <p>You can provide Amazon Lex V2 with hints to the phrases that a customer is
|
|
598
496
|
* likely to use for a slot. When a slot with hints is resolved, the
|
|
@@ -616,12 +514,6 @@ export interface RuntimeHints {
|
|
|
616
514
|
*/
|
|
617
515
|
slotHints?: Record<string, Record<string, RuntimeHintDetails>>;
|
|
618
516
|
}
|
|
619
|
-
export declare namespace RuntimeHints {
|
|
620
|
-
/**
|
|
621
|
-
* @internal
|
|
622
|
-
*/
|
|
623
|
-
const filterSensitiveLog: (obj: RuntimeHints) => any;
|
|
624
|
-
}
|
|
625
517
|
/**
|
|
626
518
|
* <p></p>
|
|
627
519
|
*/
|
|
@@ -679,12 +571,6 @@ export interface PutSessionResponse {
|
|
|
679
571
|
*/
|
|
680
572
|
audioStream?: Readable | ReadableStream | Blob;
|
|
681
573
|
}
|
|
682
|
-
export declare namespace PutSessionResponse {
|
|
683
|
-
/**
|
|
684
|
-
* @internal
|
|
685
|
-
*/
|
|
686
|
-
const filterSensitiveLog: (obj: PutSessionResponse) => any;
|
|
687
|
-
}
|
|
688
574
|
export interface RecognizeUtteranceRequest {
|
|
689
575
|
/**
|
|
690
576
|
* <p>The identifier of the bot that should receive the request.</p>
|
|
@@ -811,12 +697,6 @@ export interface RecognizeUtteranceRequest {
|
|
|
811
697
|
*/
|
|
812
698
|
inputStream?: Readable | ReadableStream | Blob;
|
|
813
699
|
}
|
|
814
|
-
export declare namespace RecognizeUtteranceRequest {
|
|
815
|
-
/**
|
|
816
|
-
* @internal
|
|
817
|
-
*/
|
|
818
|
-
const filterSensitiveLog: (obj: RecognizeUtteranceRequest) => any;
|
|
819
|
-
}
|
|
820
700
|
export interface RecognizeUtteranceResponse {
|
|
821
701
|
/**
|
|
822
702
|
* <p>Indicates whether the input mode to the operation was text or
|
|
@@ -901,12 +781,6 @@ export interface RecognizeUtteranceResponse {
|
|
|
901
781
|
*/
|
|
902
782
|
audioStream?: Readable | ReadableStream | Blob;
|
|
903
783
|
}
|
|
904
|
-
export declare namespace RecognizeUtteranceResponse {
|
|
905
|
-
/**
|
|
906
|
-
* @internal
|
|
907
|
-
*/
|
|
908
|
-
const filterSensitiveLog: (obj: RecognizeUtteranceResponse) => any;
|
|
909
|
-
}
|
|
910
784
|
export declare enum ConversationMode {
|
|
911
785
|
AUDIO = "AUDIO",
|
|
912
786
|
TEXT = "TEXT"
|
|
@@ -928,12 +802,6 @@ export interface DisconnectionEvent {
|
|
|
928
802
|
*/
|
|
929
803
|
clientTimestampMillis?: number;
|
|
930
804
|
}
|
|
931
|
-
export declare namespace DisconnectionEvent {
|
|
932
|
-
/**
|
|
933
|
-
* @internal
|
|
934
|
-
*/
|
|
935
|
-
const filterSensitiveLog: (obj: DisconnectionEvent) => any;
|
|
936
|
-
}
|
|
937
805
|
/**
|
|
938
806
|
* <p>A DTMF character sent from the client application. DTMF characters
|
|
939
807
|
* are typically sent from a phone keypad to represent numbers. For
|
|
@@ -957,12 +825,6 @@ export interface DTMFInputEvent {
|
|
|
957
825
|
*/
|
|
958
826
|
clientTimestampMillis?: number;
|
|
959
827
|
}
|
|
960
|
-
export declare namespace DTMFInputEvent {
|
|
961
|
-
/**
|
|
962
|
-
* @internal
|
|
963
|
-
*/
|
|
964
|
-
const filterSensitiveLog: (obj: DTMFInputEvent) => any;
|
|
965
|
-
}
|
|
966
828
|
/**
|
|
967
829
|
* <p>Event sent from the client application to Amazon Lex V2 to indicate that
|
|
968
830
|
* playback of audio is complete and that Amazon Lex V2 should start processing
|
|
@@ -980,12 +842,6 @@ export interface PlaybackCompletionEvent {
|
|
|
980
842
|
*/
|
|
981
843
|
clientTimestampMillis?: number;
|
|
982
844
|
}
|
|
983
|
-
export declare namespace PlaybackCompletionEvent {
|
|
984
|
-
/**
|
|
985
|
-
* @internal
|
|
986
|
-
*/
|
|
987
|
-
const filterSensitiveLog: (obj: PlaybackCompletionEvent) => any;
|
|
988
|
-
}
|
|
989
845
|
/**
|
|
990
846
|
* <p>The event sent from your client application to Amazon Lex V2 with text input
|
|
991
847
|
* from the user.</p>
|
|
@@ -1007,12 +863,6 @@ export interface TextInputEvent {
|
|
|
1007
863
|
*/
|
|
1008
864
|
clientTimestampMillis?: number;
|
|
1009
865
|
}
|
|
1010
|
-
export declare namespace TextInputEvent {
|
|
1011
|
-
/**
|
|
1012
|
-
* @internal
|
|
1013
|
-
*/
|
|
1014
|
-
const filterSensitiveLog: (obj: TextInputEvent) => any;
|
|
1015
|
-
}
|
|
1016
866
|
/**
|
|
1017
867
|
* <p>Event that Amazon Lex V2 sends to indicate that the stream is still open
|
|
1018
868
|
* between the client application and Amazon Lex V2 </p>
|
|
@@ -1026,12 +876,6 @@ export interface HeartbeatEvent {
|
|
|
1026
876
|
*/
|
|
1027
877
|
eventId?: string;
|
|
1028
878
|
}
|
|
1029
|
-
export declare namespace HeartbeatEvent {
|
|
1030
|
-
/**
|
|
1031
|
-
* @internal
|
|
1032
|
-
*/
|
|
1033
|
-
const filterSensitiveLog: (obj: HeartbeatEvent) => any;
|
|
1034
|
-
}
|
|
1035
879
|
export declare enum InputMode {
|
|
1036
880
|
DTMF = "DTMF",
|
|
1037
881
|
SPEECH = "Speech",
|
|
@@ -1068,12 +912,6 @@ export interface PlaybackInterruptionEvent {
|
|
|
1068
912
|
*/
|
|
1069
913
|
eventId?: string;
|
|
1070
914
|
}
|
|
1071
|
-
export declare namespace PlaybackInterruptionEvent {
|
|
1072
|
-
/**
|
|
1073
|
-
* @internal
|
|
1074
|
-
*/
|
|
1075
|
-
const filterSensitiveLog: (obj: PlaybackInterruptionEvent) => any;
|
|
1076
|
-
}
|
|
1077
915
|
/**
|
|
1078
916
|
* <p>The event sent from Amazon Lex V2 to your application with text to present
|
|
1079
917
|
* to the user.</p>
|
|
@@ -1093,12 +931,6 @@ export interface TextResponseEvent {
|
|
|
1093
931
|
*/
|
|
1094
932
|
eventId?: string;
|
|
1095
933
|
}
|
|
1096
|
-
export declare namespace TextResponseEvent {
|
|
1097
|
-
/**
|
|
1098
|
-
* @internal
|
|
1099
|
-
*/
|
|
1100
|
-
const filterSensitiveLog: (obj: TextResponseEvent) => any;
|
|
1101
|
-
}
|
|
1102
934
|
/**
|
|
1103
935
|
* <p>Event sent from Amazon Lex V2 to your client application that contains a
|
|
1104
936
|
* transcript of voice audio. </p>
|
|
@@ -1116,12 +948,6 @@ export interface TranscriptEvent {
|
|
|
1116
948
|
*/
|
|
1117
949
|
eventId?: string;
|
|
1118
950
|
}
|
|
1119
|
-
export declare namespace TranscriptEvent {
|
|
1120
|
-
/**
|
|
1121
|
-
* @internal
|
|
1122
|
-
*/
|
|
1123
|
-
const filterSensitiveLog: (obj: TranscriptEvent) => any;
|
|
1124
|
-
}
|
|
1125
951
|
/**
|
|
1126
952
|
* <p>A value that Amazon Lex V2 uses to fulfill an intent. </p>
|
|
1127
953
|
*/
|
|
@@ -1144,12 +970,6 @@ export interface Slot {
|
|
|
1144
970
|
*/
|
|
1145
971
|
values?: Slot[];
|
|
1146
972
|
}
|
|
1147
|
-
export declare namespace Slot {
|
|
1148
|
-
/**
|
|
1149
|
-
* @internal
|
|
1150
|
-
*/
|
|
1151
|
-
const filterSensitiveLog: (obj: Slot) => any;
|
|
1152
|
-
}
|
|
1153
973
|
/**
|
|
1154
974
|
* <p>The current intent that Amazon Lex V2 is attempting to fulfill.</p>
|
|
1155
975
|
*/
|
|
@@ -1174,12 +994,6 @@ export interface Intent {
|
|
|
1174
994
|
*/
|
|
1175
995
|
confirmationState?: ConfirmationState | string;
|
|
1176
996
|
}
|
|
1177
|
-
export declare namespace Intent {
|
|
1178
|
-
/**
|
|
1179
|
-
* @internal
|
|
1180
|
-
*/
|
|
1181
|
-
const filterSensitiveLog: (obj: Intent) => any;
|
|
1182
|
-
}
|
|
1183
997
|
/**
|
|
1184
998
|
* <p>An intent that Amazon Lex V2 determined might satisfy the user's utterance.
|
|
1185
999
|
* The intents are ordered by the confidence score. </p>
|
|
@@ -1207,12 +1021,6 @@ export interface Interpretation {
|
|
|
1207
1021
|
*/
|
|
1208
1022
|
intent?: Intent;
|
|
1209
1023
|
}
|
|
1210
|
-
export declare namespace Interpretation {
|
|
1211
|
-
/**
|
|
1212
|
-
* @internal
|
|
1213
|
-
*/
|
|
1214
|
-
const filterSensitiveLog: (obj: Interpretation) => any;
|
|
1215
|
-
}
|
|
1216
1024
|
/**
|
|
1217
1025
|
* <p>The state of the user's session with Amazon Lex V2.</p>
|
|
1218
1026
|
*/
|
|
@@ -1249,12 +1057,6 @@ export interface SessionState {
|
|
|
1249
1057
|
*/
|
|
1250
1058
|
runtimeHints?: RuntimeHints;
|
|
1251
1059
|
}
|
|
1252
|
-
export declare namespace SessionState {
|
|
1253
|
-
/**
|
|
1254
|
-
* @internal
|
|
1255
|
-
*/
|
|
1256
|
-
const filterSensitiveLog: (obj: SessionState) => any;
|
|
1257
|
-
}
|
|
1258
1060
|
/**
|
|
1259
1061
|
* <p>The initial event sent from the application to Amazon Lex V2 to configure
|
|
1260
1062
|
* the conversation, including session and request attributes and the
|
|
@@ -1342,12 +1144,6 @@ export interface ConfigurationEvent {
|
|
|
1342
1144
|
*/
|
|
1343
1145
|
clientTimestampMillis?: number;
|
|
1344
1146
|
}
|
|
1345
|
-
export declare namespace ConfigurationEvent {
|
|
1346
|
-
/**
|
|
1347
|
-
* @internal
|
|
1348
|
-
*/
|
|
1349
|
-
const filterSensitiveLog: (obj: ConfigurationEvent) => any;
|
|
1350
|
-
}
|
|
1351
1147
|
export interface PutSessionRequest {
|
|
1352
1148
|
/**
|
|
1353
1149
|
* <p>The identifier of the bot that receives the session data.</p>
|
|
@@ -1398,12 +1194,6 @@ export interface PutSessionRequest {
|
|
|
1398
1194
|
*/
|
|
1399
1195
|
responseContentType?: string;
|
|
1400
1196
|
}
|
|
1401
|
-
export declare namespace PutSessionRequest {
|
|
1402
|
-
/**
|
|
1403
|
-
* @internal
|
|
1404
|
-
*/
|
|
1405
|
-
const filterSensitiveLog: (obj: PutSessionRequest) => any;
|
|
1406
|
-
}
|
|
1407
1197
|
export interface RecognizeTextRequest {
|
|
1408
1198
|
/**
|
|
1409
1199
|
* <p>The identifier of the bot that processes the request.</p>
|
|
@@ -1440,12 +1230,6 @@ export interface RecognizeTextRequest {
|
|
|
1440
1230
|
*/
|
|
1441
1231
|
requestAttributes?: Record<string, string>;
|
|
1442
1232
|
}
|
|
1443
|
-
export declare namespace RecognizeTextRequest {
|
|
1444
|
-
/**
|
|
1445
|
-
* @internal
|
|
1446
|
-
*/
|
|
1447
|
-
const filterSensitiveLog: (obj: RecognizeTextRequest) => any;
|
|
1448
|
-
}
|
|
1449
1233
|
/**
|
|
1450
1234
|
* <p>Represents a stream of events between your application and
|
|
1451
1235
|
* Amazon Lex V2.</p>
|
|
@@ -1566,10 +1350,6 @@ export declare namespace StartConversationRequestEventStream {
|
|
|
1566
1350
|
_: (name: string, value: any) => T;
|
|
1567
1351
|
}
|
|
1568
1352
|
const visit: <T>(value: StartConversationRequestEventStream, visitor: Visitor<T>) => T;
|
|
1569
|
-
/**
|
|
1570
|
-
* @internal
|
|
1571
|
-
*/
|
|
1572
|
-
const filterSensitiveLog: (obj: StartConversationRequestEventStream) => any;
|
|
1573
1353
|
}
|
|
1574
1354
|
export interface StartConversationRequest {
|
|
1575
1355
|
/**
|
|
@@ -1603,12 +1383,6 @@ export interface StartConversationRequest {
|
|
|
1603
1383
|
*/
|
|
1604
1384
|
requestEventStream: AsyncIterable<StartConversationRequestEventStream> | undefined;
|
|
1605
1385
|
}
|
|
1606
|
-
export declare namespace StartConversationRequest {
|
|
1607
|
-
/**
|
|
1608
|
-
* @internal
|
|
1609
|
-
*/
|
|
1610
|
-
const filterSensitiveLog: (obj: StartConversationRequest) => any;
|
|
1611
|
-
}
|
|
1612
1386
|
export interface GetSessionResponse {
|
|
1613
1387
|
/**
|
|
1614
1388
|
* <p>The identifier of the returned session.</p>
|
|
@@ -1638,12 +1412,6 @@ export interface GetSessionResponse {
|
|
|
1638
1412
|
*/
|
|
1639
1413
|
sessionState?: SessionState;
|
|
1640
1414
|
}
|
|
1641
|
-
export declare namespace GetSessionResponse {
|
|
1642
|
-
/**
|
|
1643
|
-
* @internal
|
|
1644
|
-
*/
|
|
1645
|
-
const filterSensitiveLog: (obj: GetSessionResponse) => any;
|
|
1646
|
-
}
|
|
1647
1415
|
/**
|
|
1648
1416
|
* <p>Contains the current state of the conversation between the client
|
|
1649
1417
|
* application and Amazon Lex V2.</p>
|
|
@@ -1684,12 +1452,6 @@ export interface IntentResultEvent {
|
|
|
1684
1452
|
*/
|
|
1685
1453
|
eventId?: string;
|
|
1686
1454
|
}
|
|
1687
|
-
export declare namespace IntentResultEvent {
|
|
1688
|
-
/**
|
|
1689
|
-
* @internal
|
|
1690
|
-
*/
|
|
1691
|
-
const filterSensitiveLog: (obj: IntentResultEvent) => any;
|
|
1692
|
-
}
|
|
1693
1455
|
export interface RecognizeTextResponse {
|
|
1694
1456
|
/**
|
|
1695
1457
|
* <p>A list of messages last sent to the user. The messages are ordered
|
|
@@ -1722,12 +1484,6 @@ export interface RecognizeTextResponse {
|
|
|
1722
1484
|
*/
|
|
1723
1485
|
sessionId?: string;
|
|
1724
1486
|
}
|
|
1725
|
-
export declare namespace RecognizeTextResponse {
|
|
1726
|
-
/**
|
|
1727
|
-
* @internal
|
|
1728
|
-
*/
|
|
1729
|
-
const filterSensitiveLog: (obj: RecognizeTextResponse) => any;
|
|
1730
|
-
}
|
|
1731
1487
|
/**
|
|
1732
1488
|
* <p>Represents a stream of events between Amazon Lex V2 and your
|
|
1733
1489
|
* application.</p>
|
|
@@ -2068,10 +1824,6 @@ export declare namespace StartConversationResponseEventStream {
|
|
|
2068
1824
|
_: (name: string, value: any) => T;
|
|
2069
1825
|
}
|
|
2070
1826
|
const visit: <T>(value: StartConversationResponseEventStream, visitor: Visitor<T>) => T;
|
|
2071
|
-
/**
|
|
2072
|
-
* @internal
|
|
2073
|
-
*/
|
|
2074
|
-
const filterSensitiveLog: (obj: StartConversationResponseEventStream) => any;
|
|
2075
1827
|
}
|
|
2076
1828
|
export interface StartConversationResponse {
|
|
2077
1829
|
/**
|
|
@@ -2080,9 +1832,175 @@ export interface StartConversationResponse {
|
|
|
2080
1832
|
*/
|
|
2081
1833
|
responseEventStream?: AsyncIterable<StartConversationResponseEventStream>;
|
|
2082
1834
|
}
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
1835
|
+
/**
|
|
1836
|
+
* @internal
|
|
1837
|
+
*/
|
|
1838
|
+
export declare const ActiveContextTimeToLiveFilterSensitiveLog: (obj: ActiveContextTimeToLive) => any;
|
|
1839
|
+
/**
|
|
1840
|
+
* @internal
|
|
1841
|
+
*/
|
|
1842
|
+
export declare const ActiveContextFilterSensitiveLog: (obj: ActiveContext) => any;
|
|
1843
|
+
/**
|
|
1844
|
+
* @internal
|
|
1845
|
+
*/
|
|
1846
|
+
export declare const AudioInputEventFilterSensitiveLog: (obj: AudioInputEvent) => any;
|
|
1847
|
+
/**
|
|
1848
|
+
* @internal
|
|
1849
|
+
*/
|
|
1850
|
+
export declare const AudioResponseEventFilterSensitiveLog: (obj: AudioResponseEvent) => any;
|
|
1851
|
+
/**
|
|
1852
|
+
* @internal
|
|
1853
|
+
*/
|
|
1854
|
+
export declare const DeleteSessionRequestFilterSensitiveLog: (obj: DeleteSessionRequest) => any;
|
|
1855
|
+
/**
|
|
1856
|
+
* @internal
|
|
1857
|
+
*/
|
|
1858
|
+
export declare const DeleteSessionResponseFilterSensitiveLog: (obj: DeleteSessionResponse) => any;
|
|
1859
|
+
/**
|
|
1860
|
+
* @internal
|
|
1861
|
+
*/
|
|
1862
|
+
export declare const GetSessionRequestFilterSensitiveLog: (obj: GetSessionRequest) => any;
|
|
1863
|
+
/**
|
|
1864
|
+
* @internal
|
|
1865
|
+
*/
|
|
1866
|
+
export declare const ValueFilterSensitiveLog: (obj: Value) => any;
|
|
1867
|
+
/**
|
|
1868
|
+
* @internal
|
|
1869
|
+
*/
|
|
1870
|
+
export declare const ConfidenceScoreFilterSensitiveLog: (obj: ConfidenceScore) => any;
|
|
1871
|
+
/**
|
|
1872
|
+
* @internal
|
|
1873
|
+
*/
|
|
1874
|
+
export declare const SentimentScoreFilterSensitiveLog: (obj: SentimentScore) => any;
|
|
1875
|
+
/**
|
|
1876
|
+
* @internal
|
|
1877
|
+
*/
|
|
1878
|
+
export declare const SentimentResponseFilterSensitiveLog: (obj: SentimentResponse) => any;
|
|
1879
|
+
/**
|
|
1880
|
+
* @internal
|
|
1881
|
+
*/
|
|
1882
|
+
export declare const ButtonFilterSensitiveLog: (obj: Button) => any;
|
|
1883
|
+
/**
|
|
1884
|
+
* @internal
|
|
1885
|
+
*/
|
|
1886
|
+
export declare const ImageResponseCardFilterSensitiveLog: (obj: ImageResponseCard) => any;
|
|
1887
|
+
/**
|
|
1888
|
+
* @internal
|
|
1889
|
+
*/
|
|
1890
|
+
export declare const MessageFilterSensitiveLog: (obj: Message) => any;
|
|
1891
|
+
/**
|
|
1892
|
+
* @internal
|
|
1893
|
+
*/
|
|
1894
|
+
export declare const DialogActionFilterSensitiveLog: (obj: DialogAction) => any;
|
|
1895
|
+
/**
|
|
1896
|
+
* @internal
|
|
1897
|
+
*/
|
|
1898
|
+
export declare const RuntimeHintValueFilterSensitiveLog: (obj: RuntimeHintValue) => any;
|
|
1899
|
+
/**
|
|
1900
|
+
* @internal
|
|
1901
|
+
*/
|
|
1902
|
+
export declare const RuntimeHintDetailsFilterSensitiveLog: (obj: RuntimeHintDetails) => any;
|
|
1903
|
+
/**
|
|
1904
|
+
* @internal
|
|
1905
|
+
*/
|
|
1906
|
+
export declare const RuntimeHintsFilterSensitiveLog: (obj: RuntimeHints) => any;
|
|
1907
|
+
/**
|
|
1908
|
+
* @internal
|
|
1909
|
+
*/
|
|
1910
|
+
export declare const PutSessionResponseFilterSensitiveLog: (obj: PutSessionResponse) => any;
|
|
1911
|
+
/**
|
|
1912
|
+
* @internal
|
|
1913
|
+
*/
|
|
1914
|
+
export declare const RecognizeUtteranceRequestFilterSensitiveLog: (obj: RecognizeUtteranceRequest) => any;
|
|
1915
|
+
/**
|
|
1916
|
+
* @internal
|
|
1917
|
+
*/
|
|
1918
|
+
export declare const RecognizeUtteranceResponseFilterSensitiveLog: (obj: RecognizeUtteranceResponse) => any;
|
|
1919
|
+
/**
|
|
1920
|
+
* @internal
|
|
1921
|
+
*/
|
|
1922
|
+
export declare const DisconnectionEventFilterSensitiveLog: (obj: DisconnectionEvent) => any;
|
|
1923
|
+
/**
|
|
1924
|
+
* @internal
|
|
1925
|
+
*/
|
|
1926
|
+
export declare const DTMFInputEventFilterSensitiveLog: (obj: DTMFInputEvent) => any;
|
|
1927
|
+
/**
|
|
1928
|
+
* @internal
|
|
1929
|
+
*/
|
|
1930
|
+
export declare const PlaybackCompletionEventFilterSensitiveLog: (obj: PlaybackCompletionEvent) => any;
|
|
1931
|
+
/**
|
|
1932
|
+
* @internal
|
|
1933
|
+
*/
|
|
1934
|
+
export declare const TextInputEventFilterSensitiveLog: (obj: TextInputEvent) => any;
|
|
1935
|
+
/**
|
|
1936
|
+
* @internal
|
|
1937
|
+
*/
|
|
1938
|
+
export declare const HeartbeatEventFilterSensitiveLog: (obj: HeartbeatEvent) => any;
|
|
1939
|
+
/**
|
|
1940
|
+
* @internal
|
|
1941
|
+
*/
|
|
1942
|
+
export declare const PlaybackInterruptionEventFilterSensitiveLog: (obj: PlaybackInterruptionEvent) => any;
|
|
1943
|
+
/**
|
|
1944
|
+
* @internal
|
|
1945
|
+
*/
|
|
1946
|
+
export declare const TextResponseEventFilterSensitiveLog: (obj: TextResponseEvent) => any;
|
|
1947
|
+
/**
|
|
1948
|
+
* @internal
|
|
1949
|
+
*/
|
|
1950
|
+
export declare const TranscriptEventFilterSensitiveLog: (obj: TranscriptEvent) => any;
|
|
1951
|
+
/**
|
|
1952
|
+
* @internal
|
|
1953
|
+
*/
|
|
1954
|
+
export declare const SlotFilterSensitiveLog: (obj: Slot) => any;
|
|
1955
|
+
/**
|
|
1956
|
+
* @internal
|
|
1957
|
+
*/
|
|
1958
|
+
export declare const IntentFilterSensitiveLog: (obj: Intent) => any;
|
|
1959
|
+
/**
|
|
1960
|
+
* @internal
|
|
1961
|
+
*/
|
|
1962
|
+
export declare const InterpretationFilterSensitiveLog: (obj: Interpretation) => any;
|
|
1963
|
+
/**
|
|
1964
|
+
* @internal
|
|
1965
|
+
*/
|
|
1966
|
+
export declare const SessionStateFilterSensitiveLog: (obj: SessionState) => any;
|
|
1967
|
+
/**
|
|
1968
|
+
* @internal
|
|
1969
|
+
*/
|
|
1970
|
+
export declare const ConfigurationEventFilterSensitiveLog: (obj: ConfigurationEvent) => any;
|
|
1971
|
+
/**
|
|
1972
|
+
* @internal
|
|
1973
|
+
*/
|
|
1974
|
+
export declare const PutSessionRequestFilterSensitiveLog: (obj: PutSessionRequest) => any;
|
|
1975
|
+
/**
|
|
1976
|
+
* @internal
|
|
1977
|
+
*/
|
|
1978
|
+
export declare const RecognizeTextRequestFilterSensitiveLog: (obj: RecognizeTextRequest) => any;
|
|
1979
|
+
/**
|
|
1980
|
+
* @internal
|
|
1981
|
+
*/
|
|
1982
|
+
export declare const StartConversationRequestEventStreamFilterSensitiveLog: (obj: StartConversationRequestEventStream) => any;
|
|
1983
|
+
/**
|
|
1984
|
+
* @internal
|
|
1985
|
+
*/
|
|
1986
|
+
export declare const StartConversationRequestFilterSensitiveLog: (obj: StartConversationRequest) => any;
|
|
1987
|
+
/**
|
|
1988
|
+
* @internal
|
|
1989
|
+
*/
|
|
1990
|
+
export declare const GetSessionResponseFilterSensitiveLog: (obj: GetSessionResponse) => any;
|
|
1991
|
+
/**
|
|
1992
|
+
* @internal
|
|
1993
|
+
*/
|
|
1994
|
+
export declare const IntentResultEventFilterSensitiveLog: (obj: IntentResultEvent) => any;
|
|
1995
|
+
/**
|
|
1996
|
+
* @internal
|
|
1997
|
+
*/
|
|
1998
|
+
export declare const RecognizeTextResponseFilterSensitiveLog: (obj: RecognizeTextResponse) => any;
|
|
1999
|
+
/**
|
|
2000
|
+
* @internal
|
|
2001
|
+
*/
|
|
2002
|
+
export declare const StartConversationResponseEventStreamFilterSensitiveLog: (obj: StartConversationResponseEventStream) => any;
|
|
2003
|
+
/**
|
|
2004
|
+
* @internal
|
|
2005
|
+
*/
|
|
2006
|
+
export declare const StartConversationResponseFilterSensitiveLog: (obj: StartConversationResponse) => any;
|