@aws-sdk/client-lex-runtime-service 3.169.0 → 3.171.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.
@@ -1,5 +1,5 @@
1
- export * from "./LexRuntimeService";
2
- export * from "./LexRuntimeServiceClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export { LexRuntimeServiceServiceException } from "./models/LexRuntimeServiceServiceException";
1
+ export * from "./LexRuntimeService";
2
+ export * from "./LexRuntimeServiceClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export { LexRuntimeServiceServiceException } from "./models/LexRuntimeServiceServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class LexRuntimeServiceServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class LexRuntimeServiceServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";
@@ -1,198 +1,330 @@
1
-
2
- import { ExceptionOptionType as __ExceptionOptionType, LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
3
- import { Readable } from "stream";
4
- import { LexRuntimeServiceServiceException as __BaseException } from "./LexRuntimeServiceServiceException";
5
-
6
- export interface ActiveContextTimeToLive {
7
-
8
- timeToLiveInSeconds?: number;
9
-
10
- turnsToLive?: number;
11
- }
12
-
13
- export interface ActiveContext {
14
-
15
- name: string | undefined;
16
-
17
- timeToLive: ActiveContextTimeToLive | undefined;
18
-
19
- parameters: Record<string, string> | undefined;
20
- }
21
-
22
- export declare class BadRequestException extends __BaseException {
23
- readonly name: "BadRequestException";
24
- readonly $fault: "client";
25
-
26
- constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
27
- }
28
-
29
- export declare class ConflictException extends __BaseException {
30
- readonly name: "ConflictException";
31
- readonly $fault: "client";
32
-
33
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
34
- }
35
- export interface DeleteSessionRequest {
36
-
37
- botName: string | undefined;
38
-
39
- botAlias: string | undefined;
40
-
41
- userId: string | undefined;
42
- }
43
- export interface DeleteSessionResponse {
44
-
45
- botName?: string;
46
-
47
- botAlias?: string;
48
-
49
- userId?: string;
50
-
51
- sessionId?: string;
52
- }
53
-
54
- export declare class InternalFailureException extends __BaseException {
55
- readonly name: "InternalFailureException";
56
- readonly $fault: "server";
57
-
58
- constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
59
- }
60
-
61
- export declare class LimitExceededException extends __BaseException {
62
- readonly name: "LimitExceededException";
63
- readonly $fault: "client";
64
- retryAfterSeconds?: string;
65
-
66
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
67
- }
68
-
69
- export declare class NotFoundException extends __BaseException {
70
- readonly name: "NotFoundException";
71
- readonly $fault: "client";
72
-
73
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
74
- }
75
- export interface GetSessionRequest {
76
-
77
- botName: string | undefined;
78
-
79
- botAlias: string | undefined;
80
-
81
- userId: string | undefined;
82
-
83
- checkpointLabelFilter?: string;
84
- }
85
- export declare enum FulfillmentState {
86
- FAILED = "Failed",
87
- FULFILLED = "Fulfilled",
88
- READY_FOR_FULFILLMENT = "ReadyForFulfillment"
89
- }
90
- export declare enum MessageFormatType {
91
- COMPOSITE = "Composite",
92
- CUSTOM_PAYLOAD = "CustomPayload",
93
- PLAIN_TEXT = "PlainText",
94
- SSML = "SSML"
95
- }
96
- export declare enum DialogActionType {
97
- CLOSE = "Close",
98
- CONFIRM_INTENT = "ConfirmIntent",
99
- DELEGATE = "Delegate",
100
- ELICIT_INTENT = "ElicitIntent",
101
- ELICIT_SLOT = "ElicitSlot"
102
- }
103
-
104
- export interface DialogAction {
105
-
106
- type: DialogActionType | string | undefined;
107
-
108
- intentName?: string;
109
-
110
- slots?: Record<string, string>;
111
-
112
- slotToElicit?: string;
113
-
114
- fulfillmentState?: FulfillmentState | string;
115
-
116
- message?: string;
117
-
118
- messageFormat?: MessageFormatType | string;
119
- }
120
- export declare enum ConfirmationStatus {
121
- CONFIRMED = "Confirmed",
122
- DENIED = "Denied",
123
- NONE = "None"
124
- }
125
-
126
- export interface IntentSummary {
127
-
128
- intentName?: string;
129
-
130
- checkpointLabel?: string;
131
-
132
- slots?: Record<string, string>;
133
-
134
- confirmationStatus?: ConfirmationStatus | string;
135
-
136
- dialogActionType: DialogActionType | string | undefined;
137
-
138
- fulfillmentState?: FulfillmentState | string;
139
-
140
- slotToElicit?: string;
141
- }
142
- export interface GetSessionResponse {
143
-
144
- recentIntentSummaryView?: IntentSummary[];
145
-
146
- sessionAttributes?: Record<string, string>;
147
-
148
- sessionId?: string;
149
-
150
- dialogAction?: DialogAction;
151
-
152
- activeContexts?: ActiveContext[];
153
- }
154
-
155
- export declare class BadGatewayException extends __BaseException {
156
- readonly name: "BadGatewayException";
157
- readonly $fault: "server";
158
- Message?: string;
159
-
160
- constructor(opts: __ExceptionOptionType<BadGatewayException, __BaseException>);
161
- }
162
-
163
- export declare class DependencyFailedException extends __BaseException {
164
- readonly name: "DependencyFailedException";
165
- readonly $fault: "client";
166
- Message?: string;
167
-
168
- constructor(opts: __ExceptionOptionType<DependencyFailedException, __BaseException>);
169
- }
170
-
171
- export declare class LoopDetectedException extends __BaseException {
172
- readonly name: "LoopDetectedException";
173
- readonly $fault: "server";
174
- Message?: string;
175
-
176
- constructor(opts: __ExceptionOptionType<LoopDetectedException, __BaseException>);
177
- }
178
-
179
- export declare class NotAcceptableException extends __BaseException {
180
- readonly name: "NotAcceptableException";
181
- readonly $fault: "client";
182
-
183
- constructor(opts: __ExceptionOptionType<NotAcceptableException, __BaseException>);
184
- }
185
- export interface PostContentRequest {
186
-
187
- botName: string | undefined;
188
-
189
- botAlias: string | undefined;
190
-
191
- userId: string | undefined;
192
-
193
- sessionAttributes?: __LazyJsonString | string;
194
-
195
- requestAttributes?: __LazyJsonString | string;
196
-
197
- contentType: string | undefined;
198
-
1
+ import {
2
+ ExceptionOptionType as __ExceptionOptionType,
3
+ LazyJsonString as __LazyJsonString,
4
+ } from "@aws-sdk/smithy-client";
5
+ import { Readable } from "stream";
6
+ import { LexRuntimeServiceServiceException as __BaseException } from "./LexRuntimeServiceServiceException";
7
+ export interface ActiveContextTimeToLive {
8
+ timeToLiveInSeconds?: number;
9
+ turnsToLive?: number;
10
+ }
11
+ export interface ActiveContext {
12
+ name: string | undefined;
13
+ timeToLive: ActiveContextTimeToLive | undefined;
14
+ parameters: Record<string, string> | undefined;
15
+ }
16
+ export declare class BadRequestException extends __BaseException {
17
+ readonly name: "BadRequestException";
18
+ readonly $fault: "client";
19
+ constructor(
20
+ opts: __ExceptionOptionType<BadRequestException, __BaseException>
21
+ );
22
+ }
23
+ export declare class ConflictException extends __BaseException {
24
+ readonly name: "ConflictException";
25
+ readonly $fault: "client";
26
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
27
+ }
28
+ export interface DeleteSessionRequest {
29
+ botName: string | undefined;
30
+ botAlias: string | undefined;
31
+ userId: string | undefined;
32
+ }
33
+ export interface DeleteSessionResponse {
34
+ botName?: string;
35
+ botAlias?: string;
36
+ userId?: string;
37
+ sessionId?: string;
38
+ }
39
+ export declare class InternalFailureException extends __BaseException {
40
+ readonly name: "InternalFailureException";
41
+ readonly $fault: "server";
42
+ constructor(
43
+ opts: __ExceptionOptionType<InternalFailureException, __BaseException>
44
+ );
45
+ }
46
+ export declare class LimitExceededException extends __BaseException {
47
+ readonly name: "LimitExceededException";
48
+ readonly $fault: "client";
49
+ retryAfterSeconds?: string;
50
+ constructor(
51
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
52
+ );
53
+ }
54
+ export declare class NotFoundException extends __BaseException {
55
+ readonly name: "NotFoundException";
56
+ readonly $fault: "client";
57
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
58
+ }
59
+ export interface GetSessionRequest {
60
+ botName: string | undefined;
61
+ botAlias: string | undefined;
62
+ userId: string | undefined;
63
+ checkpointLabelFilter?: string;
64
+ }
65
+ export declare enum FulfillmentState {
66
+ FAILED = "Failed",
67
+ FULFILLED = "Fulfilled",
68
+ READY_FOR_FULFILLMENT = "ReadyForFulfillment",
69
+ }
70
+ export declare enum MessageFormatType {
71
+ COMPOSITE = "Composite",
72
+ CUSTOM_PAYLOAD = "CustomPayload",
73
+ PLAIN_TEXT = "PlainText",
74
+ SSML = "SSML",
75
+ }
76
+ export declare enum DialogActionType {
77
+ CLOSE = "Close",
78
+ CONFIRM_INTENT = "ConfirmIntent",
79
+ DELEGATE = "Delegate",
80
+ ELICIT_INTENT = "ElicitIntent",
81
+ ELICIT_SLOT = "ElicitSlot",
82
+ }
83
+ export interface DialogAction {
84
+ type: DialogActionType | string | undefined;
85
+ intentName?: string;
86
+ slots?: Record<string, string>;
87
+ slotToElicit?: string;
88
+ fulfillmentState?: FulfillmentState | string;
89
+ message?: string;
90
+ messageFormat?: MessageFormatType | string;
91
+ }
92
+ export declare enum ConfirmationStatus {
93
+ CONFIRMED = "Confirmed",
94
+ DENIED = "Denied",
95
+ NONE = "None",
96
+ }
97
+ export interface IntentSummary {
98
+ intentName?: string;
99
+ checkpointLabel?: string;
100
+ slots?: Record<string, string>;
101
+ confirmationStatus?: ConfirmationStatus | string;
102
+ dialogActionType: DialogActionType | string | undefined;
103
+ fulfillmentState?: FulfillmentState | string;
104
+ slotToElicit?: string;
105
+ }
106
+ export interface GetSessionResponse {
107
+ recentIntentSummaryView?: IntentSummary[];
108
+ sessionAttributes?: Record<string, string>;
109
+ sessionId?: string;
110
+ dialogAction?: DialogAction;
111
+ activeContexts?: ActiveContext[];
112
+ }
113
+ export declare class BadGatewayException extends __BaseException {
114
+ readonly name: "BadGatewayException";
115
+ readonly $fault: "server";
116
+ Message?: string;
117
+ constructor(
118
+ opts: __ExceptionOptionType<BadGatewayException, __BaseException>
119
+ );
120
+ }
121
+ export declare class DependencyFailedException extends __BaseException {
122
+ readonly name: "DependencyFailedException";
123
+ readonly $fault: "client";
124
+ Message?: string;
125
+ constructor(
126
+ opts: __ExceptionOptionType<DependencyFailedException, __BaseException>
127
+ );
128
+ }
129
+ export declare class LoopDetectedException extends __BaseException {
130
+ readonly name: "LoopDetectedException";
131
+ readonly $fault: "server";
132
+ Message?: string;
133
+ constructor(
134
+ opts: __ExceptionOptionType<LoopDetectedException, __BaseException>
135
+ );
136
+ }
137
+ export declare class NotAcceptableException extends __BaseException {
138
+ readonly name: "NotAcceptableException";
139
+ readonly $fault: "client";
140
+ constructor(
141
+ opts: __ExceptionOptionType<NotAcceptableException, __BaseException>
142
+ );
143
+ }
144
+ export interface PostContentRequest {
145
+ botName: string | undefined;
146
+ botAlias: string | undefined;
147
+ userId: string | undefined;
148
+ sessionAttributes?: __LazyJsonString | string;
149
+ requestAttributes?: __LazyJsonString | string;
150
+ contentType: string | undefined;
151
+ accept?: string;
152
+ inputStream: Readable | ReadableStream | Blob | undefined;
153
+ activeContexts?: __LazyJsonString | string;
154
+ }
155
+ export declare enum DialogState {
156
+ CONFIRM_INTENT = "ConfirmIntent",
157
+ ELICIT_INTENT = "ElicitIntent",
158
+ ELICIT_SLOT = "ElicitSlot",
159
+ FAILED = "Failed",
160
+ FULFILLED = "Fulfilled",
161
+ READY_FOR_FULFILLMENT = "ReadyForFulfillment",
162
+ }
163
+ export interface PostContentResponse {
164
+ contentType?: string;
165
+ intentName?: string;
166
+ nluIntentConfidence?: __LazyJsonString | string;
167
+ alternativeIntents?: __LazyJsonString | string;
168
+ slots?: __LazyJsonString | string;
169
+ sessionAttributes?: __LazyJsonString | string;
170
+ sentimentResponse?: string;
171
+ message?: string;
172
+ encodedMessage?: string;
173
+ messageFormat?: MessageFormatType | string;
174
+ dialogState?: DialogState | string;
175
+ slotToElicit?: string;
176
+ inputTranscript?: string;
177
+ encodedInputTranscript?: string;
178
+ audioStream?: Readable | ReadableStream | Blob;
179
+ botVersion?: string;
180
+ sessionId?: string;
181
+ activeContexts?: __LazyJsonString | string;
182
+ }
183
+ export declare class RequestTimeoutException extends __BaseException {
184
+ readonly name: "RequestTimeoutException";
185
+ readonly $fault: "client";
186
+ constructor(
187
+ opts: __ExceptionOptionType<RequestTimeoutException, __BaseException>
188
+ );
189
+ }
190
+ export declare class UnsupportedMediaTypeException extends __BaseException {
191
+ readonly name: "UnsupportedMediaTypeException";
192
+ readonly $fault: "client";
193
+ constructor(
194
+ opts: __ExceptionOptionType<UnsupportedMediaTypeException, __BaseException>
195
+ );
196
+ }
197
+ export interface PostTextRequest {
198
+ botName: string | undefined;
199
+ botAlias: string | undefined;
200
+ userId: string | undefined;
201
+ sessionAttributes?: Record<string, string>;
202
+ requestAttributes?: Record<string, string>;
203
+ inputText: string | undefined;
204
+ activeContexts?: ActiveContext[];
205
+ }
206
+ export interface IntentConfidence {
207
+ score?: number;
208
+ }
209
+ export interface PredictedIntent {
210
+ intentName?: string;
211
+ nluIntentConfidence?: IntentConfidence;
212
+ slots?: Record<string, string>;
213
+ }
214
+ export declare enum ContentType {
215
+ GENERIC = "application/vnd.amazonaws.card.generic",
216
+ }
217
+ export interface Button {
218
+ text: string | undefined;
219
+ value: string | undefined;
220
+ }
221
+ export interface GenericAttachment {
222
+ title?: string;
223
+ subTitle?: string;
224
+ attachmentLinkUrl?: string;
225
+ imageUrl?: string;
226
+ buttons?: Button[];
227
+ }
228
+ export interface ResponseCard {
229
+ version?: string;
230
+ contentType?: ContentType | string;
231
+ genericAttachments?: GenericAttachment[];
232
+ }
233
+ export interface SentimentResponse {
234
+ sentimentLabel?: string;
235
+ sentimentScore?: string;
236
+ }
237
+ export interface PostTextResponse {
238
+ intentName?: string;
239
+ nluIntentConfidence?: IntentConfidence;
240
+ alternativeIntents?: PredictedIntent[];
241
+ slots?: Record<string, string>;
242
+ sessionAttributes?: Record<string, string>;
243
+ message?: string;
244
+ sentimentResponse?: SentimentResponse;
245
+ messageFormat?: MessageFormatType | string;
246
+ dialogState?: DialogState | string;
247
+ slotToElicit?: string;
248
+ responseCard?: ResponseCard;
249
+ sessionId?: string;
250
+ botVersion?: string;
251
+ activeContexts?: ActiveContext[];
252
+ }
253
+ export interface PutSessionRequest {
254
+ botName: string | undefined;
255
+ botAlias: string | undefined;
256
+ userId: string | undefined;
257
+ sessionAttributes?: Record<string, string>;
258
+ dialogAction?: DialogAction;
259
+ recentIntentSummaryView?: IntentSummary[];
260
+ accept?: string;
261
+ activeContexts?: ActiveContext[];
262
+ }
263
+ export interface PutSessionResponse {
264
+ contentType?: string;
265
+ intentName?: string;
266
+ slots?: __LazyJsonString | string;
267
+ sessionAttributes?: __LazyJsonString | string;
268
+ message?: string;
269
+ encodedMessage?: string;
270
+ messageFormat?: MessageFormatType | string;
271
+ dialogState?: DialogState | string;
272
+ slotToElicit?: string;
273
+ audioStream?: Readable | ReadableStream | Blob;
274
+ sessionId?: string;
275
+ activeContexts?: __LazyJsonString | string;
276
+ }
277
+ export declare const ActiveContextTimeToLiveFilterSensitiveLog: (
278
+ obj: ActiveContextTimeToLive
279
+ ) => any;
280
+ export declare const ActiveContextFilterSensitiveLog: (
281
+ obj: ActiveContext
282
+ ) => any;
283
+ export declare const DeleteSessionRequestFilterSensitiveLog: (
284
+ obj: DeleteSessionRequest
285
+ ) => any;
286
+ export declare const DeleteSessionResponseFilterSensitiveLog: (
287
+ obj: DeleteSessionResponse
288
+ ) => any;
289
+ export declare const GetSessionRequestFilterSensitiveLog: (
290
+ obj: GetSessionRequest
291
+ ) => any;
292
+ export declare const DialogActionFilterSensitiveLog: (obj: DialogAction) => any;
293
+ export declare const IntentSummaryFilterSensitiveLog: (
294
+ obj: IntentSummary
295
+ ) => any;
296
+ export declare const GetSessionResponseFilterSensitiveLog: (
297
+ obj: GetSessionResponse
298
+ ) => any;
299
+ export declare const PostContentRequestFilterSensitiveLog: (
300
+ obj: PostContentRequest
301
+ ) => any;
302
+ export declare const PostContentResponseFilterSensitiveLog: (
303
+ obj: PostContentResponse
304
+ ) => any;
305
+ export declare const PostTextRequestFilterSensitiveLog: (
306
+ obj: PostTextRequest
307
+ ) => any;
308
+ export declare const IntentConfidenceFilterSensitiveLog: (
309
+ obj: IntentConfidence
310
+ ) => any;
311
+ export declare const PredictedIntentFilterSensitiveLog: (
312
+ obj: PredictedIntent
313
+ ) => any;
314
+ export declare const ButtonFilterSensitiveLog: (obj: Button) => any;
315
+ export declare const GenericAttachmentFilterSensitiveLog: (
316
+ obj: GenericAttachment
317
+ ) => any;
318
+ export declare const ResponseCardFilterSensitiveLog: (obj: ResponseCard) => any;
319
+ export declare const SentimentResponseFilterSensitiveLog: (
320
+ obj: SentimentResponse
321
+ ) => any;
322
+ export declare const PostTextResponseFilterSensitiveLog: (
323
+ obj: PostTextResponse
324
+ ) => any;
325
+ export declare const PutSessionRequestFilterSensitiveLog: (
326
+ obj: PutSessionRequest
327
+ ) => any;
328
+ export declare const PutSessionResponseFilterSensitiveLog: (
329
+ obj: PutSessionResponse
330
+ ) => any;
@@ -1,17 +1,65 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { DeleteSessionCommandInput, DeleteSessionCommandOutput } from "../commands/DeleteSessionCommand";
4
- import { GetSessionCommandInput, GetSessionCommandOutput } from "../commands/GetSessionCommand";
5
- import { PostContentCommandInput, PostContentCommandOutput } from "../commands/PostContentCommand";
6
- import { PostTextCommandInput, PostTextCommandOutput } from "../commands/PostTextCommand";
7
- import { PutSessionCommandInput, PutSessionCommandOutput } from "../commands/PutSessionCommand";
8
- export declare const serializeAws_restJson1DeleteSessionCommand: (input: DeleteSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
9
- export declare const serializeAws_restJson1GetSessionCommand: (input: GetSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
10
- export declare const serializeAws_restJson1PostContentCommand: (input: PostContentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
11
- export declare const serializeAws_restJson1PostTextCommand: (input: PostTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
12
- export declare const serializeAws_restJson1PutSessionCommand: (input: PutSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
13
- export declare const deserializeAws_restJson1DeleteSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSessionCommandOutput>;
14
- export declare const deserializeAws_restJson1GetSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSessionCommandOutput>;
15
- export declare const deserializeAws_restJson1PostContentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PostContentCommandOutput>;
16
- export declare const deserializeAws_restJson1PostTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PostTextCommandOutput>;
17
- export declare const deserializeAws_restJson1PutSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutSessionCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ DeleteSessionCommandInput,
8
+ DeleteSessionCommandOutput,
9
+ } from "../commands/DeleteSessionCommand";
10
+ import {
11
+ GetSessionCommandInput,
12
+ GetSessionCommandOutput,
13
+ } from "../commands/GetSessionCommand";
14
+ import {
15
+ PostContentCommandInput,
16
+ PostContentCommandOutput,
17
+ } from "../commands/PostContentCommand";
18
+ import {
19
+ PostTextCommandInput,
20
+ PostTextCommandOutput,
21
+ } from "../commands/PostTextCommand";
22
+ import {
23
+ PutSessionCommandInput,
24
+ PutSessionCommandOutput,
25
+ } from "../commands/PutSessionCommand";
26
+ export declare const serializeAws_restJson1DeleteSessionCommand: (
27
+ input: DeleteSessionCommandInput,
28
+ context: __SerdeContext
29
+ ) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_restJson1GetSessionCommand: (
31
+ input: GetSessionCommandInput,
32
+ context: __SerdeContext
33
+ ) => Promise<__HttpRequest>;
34
+ export declare const serializeAws_restJson1PostContentCommand: (
35
+ input: PostContentCommandInput,
36
+ context: __SerdeContext
37
+ ) => Promise<__HttpRequest>;
38
+ export declare const serializeAws_restJson1PostTextCommand: (
39
+ input: PostTextCommandInput,
40
+ context: __SerdeContext
41
+ ) => Promise<__HttpRequest>;
42
+ export declare const serializeAws_restJson1PutSessionCommand: (
43
+ input: PutSessionCommandInput,
44
+ context: __SerdeContext
45
+ ) => Promise<__HttpRequest>;
46
+ export declare const deserializeAws_restJson1DeleteSessionCommand: (
47
+ output: __HttpResponse,
48
+ context: __SerdeContext
49
+ ) => Promise<DeleteSessionCommandOutput>;
50
+ export declare const deserializeAws_restJson1GetSessionCommand: (
51
+ output: __HttpResponse,
52
+ context: __SerdeContext
53
+ ) => Promise<GetSessionCommandOutput>;
54
+ export declare const deserializeAws_restJson1PostContentCommand: (
55
+ output: __HttpResponse,
56
+ context: __SerdeContext
57
+ ) => Promise<PostContentCommandOutput>;
58
+ export declare const deserializeAws_restJson1PostTextCommand: (
59
+ output: __HttpResponse,
60
+ context: __SerdeContext
61
+ ) => Promise<PostTextCommandOutput>;
62
+ export declare const deserializeAws_restJson1PutSessionCommand: (
63
+ output: __HttpResponse,
64
+ context: __SerdeContext
65
+ ) => Promise<PutSessionCommandOutput>;