@aws-sdk/client-lex-runtime-service 3.131.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/DeleteSessionCommand.js +2 -2
- package/dist-cjs/commands/GetSessionCommand.js +2 -2
- package/dist-cjs/commands/PostContentCommand.js +2 -2
- package/dist-cjs/commands/PostTextCommand.js +2 -2
- package/dist-cjs/commands/PutSessionCommand.js +2 -2
- package/dist-cjs/models/models_0.js +119 -159
- package/dist-cjs/protocols/Aws_restJson1.js +177 -416
- package/dist-es/commands/DeleteSessionCommand.js +3 -3
- package/dist-es/commands/GetSessionCommand.js +3 -3
- package/dist-es/commands/PostContentCommand.js +3 -3
- package/dist-es/commands/PostTextCommand.js +3 -3
- package/dist-es/commands/PutSessionCommand.js +3 -3
- package/dist-es/models/models_0.js +26 -86
- package/dist-es/protocols/Aws_restJson1.js +216 -411
- package/dist-types/models/models_0.d.ts +80 -120
- package/dist-types/ts3.4/models/models_0.d.ts +0 -32
- package/package.json +6 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteSessionRequestFilterSensitiveLog, DeleteSessionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteSessionCommand, serializeAws_restJson1DeleteSessionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteSessionCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteSessionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteSessionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteSessionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteSessionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetSessionRequestFilterSensitiveLog, GetSessionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetSessionCommand, serializeAws_restJson1GetSessionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetSessionCommand = (function (_super) {
|
|
7
7
|
__extends(GetSessionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetSessionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetSessionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetSessionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { PostContentRequestFilterSensitiveLog, PostContentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1PostContentCommand, serializeAws_restJson1PostContentCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var PostContentCommand = (function (_super) {
|
|
7
7
|
__extends(PostContentCommand, _super);
|
|
@@ -20,8 +20,8 @@ var PostContentCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: PostContentRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: PostContentResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { PostTextRequestFilterSensitiveLog, PostTextResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1PostTextCommand, serializeAws_restJson1PostTextCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var PostTextCommand = (function (_super) {
|
|
7
7
|
__extends(PostTextCommand, _super);
|
|
@@ -20,8 +20,8 @@ var PostTextCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: PostTextRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: PostTextResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { PutSessionRequestFilterSensitiveLog, PutSessionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1PutSessionCommand, serializeAws_restJson1PutSessionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var PutSessionCommand = (function (_super) {
|
|
7
7
|
__extends(PutSessionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var PutSessionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: PutSessionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: PutSessionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING, } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { LexRuntimeServiceServiceException as __BaseException } from "./LexRuntimeServiceServiceException";
|
|
4
|
-
export var ActiveContextTimeToLive;
|
|
5
|
-
(function (ActiveContextTimeToLive) {
|
|
6
|
-
ActiveContextTimeToLive.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
7
|
-
})(ActiveContextTimeToLive || (ActiveContextTimeToLive = {}));
|
|
8
|
-
export var ActiveContext;
|
|
9
|
-
(function (ActiveContext) {
|
|
10
|
-
ActiveContext.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.parameters && { parameters: SENSITIVE_STRING }))); };
|
|
11
|
-
})(ActiveContext || (ActiveContext = {}));
|
|
12
4
|
var BadRequestException = (function (_super) {
|
|
13
5
|
__extends(BadRequestException, _super);
|
|
14
6
|
function BadRequestException(opts) {
|
|
@@ -33,14 +25,6 @@ var ConflictException = (function (_super) {
|
|
|
33
25
|
return ConflictException;
|
|
34
26
|
}(__BaseException));
|
|
35
27
|
export { ConflictException };
|
|
36
|
-
export var DeleteSessionRequest;
|
|
37
|
-
(function (DeleteSessionRequest) {
|
|
38
|
-
DeleteSessionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
39
|
-
})(DeleteSessionRequest || (DeleteSessionRequest = {}));
|
|
40
|
-
export var DeleteSessionResponse;
|
|
41
|
-
(function (DeleteSessionResponse) {
|
|
42
|
-
DeleteSessionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
43
|
-
})(DeleteSessionResponse || (DeleteSessionResponse = {}));
|
|
44
28
|
var InternalFailureException = (function (_super) {
|
|
45
29
|
__extends(InternalFailureException, _super);
|
|
46
30
|
function InternalFailureException(opts) {
|
|
@@ -78,10 +62,6 @@ var NotFoundException = (function (_super) {
|
|
|
78
62
|
return NotFoundException;
|
|
79
63
|
}(__BaseException));
|
|
80
64
|
export { NotFoundException };
|
|
81
|
-
export var GetSessionRequest;
|
|
82
|
-
(function (GetSessionRequest) {
|
|
83
|
-
GetSessionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
84
|
-
})(GetSessionRequest || (GetSessionRequest = {}));
|
|
85
65
|
export var FulfillmentState;
|
|
86
66
|
(function (FulfillmentState) {
|
|
87
67
|
FulfillmentState["FAILED"] = "Failed";
|
|
@@ -103,26 +83,12 @@ export var DialogActionType;
|
|
|
103
83
|
DialogActionType["ELICIT_INTENT"] = "ElicitIntent";
|
|
104
84
|
DialogActionType["ELICIT_SLOT"] = "ElicitSlot";
|
|
105
85
|
})(DialogActionType || (DialogActionType = {}));
|
|
106
|
-
export var DialogAction;
|
|
107
|
-
(function (DialogAction) {
|
|
108
|
-
DialogAction.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.slots && { slots: SENSITIVE_STRING })), (obj.message && { message: SENSITIVE_STRING }))); };
|
|
109
|
-
})(DialogAction || (DialogAction = {}));
|
|
110
86
|
export var ConfirmationStatus;
|
|
111
87
|
(function (ConfirmationStatus) {
|
|
112
88
|
ConfirmationStatus["CONFIRMED"] = "Confirmed";
|
|
113
89
|
ConfirmationStatus["DENIED"] = "Denied";
|
|
114
90
|
ConfirmationStatus["NONE"] = "None";
|
|
115
91
|
})(ConfirmationStatus || (ConfirmationStatus = {}));
|
|
116
|
-
export var IntentSummary;
|
|
117
|
-
(function (IntentSummary) {
|
|
118
|
-
IntentSummary.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.slots && { slots: SENSITIVE_STRING }))); };
|
|
119
|
-
})(IntentSummary || (IntentSummary = {}));
|
|
120
|
-
export var GetSessionResponse;
|
|
121
|
-
(function (GetSessionResponse) {
|
|
122
|
-
GetSessionResponse.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.recentIntentSummaryView && {
|
|
123
|
-
recentIntentSummaryView: obj.recentIntentSummaryView.map(function (item) { return IntentSummary.filterSensitiveLog(item); }),
|
|
124
|
-
})), (obj.sessionAttributes && { sessionAttributes: SENSITIVE_STRING })), (obj.dialogAction && { dialogAction: DialogAction.filterSensitiveLog(obj.dialogAction) })), (obj.activeContexts && { activeContexts: SENSITIVE_STRING }))); };
|
|
125
|
-
})(GetSessionResponse || (GetSessionResponse = {}));
|
|
126
92
|
var BadGatewayException = (function (_super) {
|
|
127
93
|
__extends(BadGatewayException, _super);
|
|
128
94
|
function BadGatewayException(opts) {
|
|
@@ -174,10 +140,6 @@ var NotAcceptableException = (function (_super) {
|
|
|
174
140
|
return NotAcceptableException;
|
|
175
141
|
}(__BaseException));
|
|
176
142
|
export { NotAcceptableException };
|
|
177
|
-
export var PostContentRequest;
|
|
178
|
-
(function (PostContentRequest) {
|
|
179
|
-
PostContentRequest.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.sessionAttributes && { sessionAttributes: SENSITIVE_STRING })), (obj.requestAttributes && { requestAttributes: SENSITIVE_STRING })), (obj.activeContexts && { activeContexts: SENSITIVE_STRING }))); };
|
|
180
|
-
})(PostContentRequest || (PostContentRequest = {}));
|
|
181
143
|
export var DialogState;
|
|
182
144
|
(function (DialogState) {
|
|
183
145
|
DialogState["CONFIRM_INTENT"] = "ConfirmIntent";
|
|
@@ -187,10 +149,6 @@ export var DialogState;
|
|
|
187
149
|
DialogState["FULFILLED"] = "Fulfilled";
|
|
188
150
|
DialogState["READY_FOR_FULFILLMENT"] = "ReadyForFulfillment";
|
|
189
151
|
})(DialogState || (DialogState = {}));
|
|
190
|
-
export var PostContentResponse;
|
|
191
|
-
(function (PostContentResponse) {
|
|
192
|
-
PostContentResponse.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.message && { message: SENSITIVE_STRING })), (obj.encodedMessage && { encodedMessage: SENSITIVE_STRING })), (obj.encodedInputTranscript && { encodedInputTranscript: SENSITIVE_STRING })), (obj.activeContexts && { activeContexts: SENSITIVE_STRING }))); };
|
|
193
|
-
})(PostContentResponse || (PostContentResponse = {}));
|
|
194
152
|
var RequestTimeoutException = (function (_super) {
|
|
195
153
|
__extends(RequestTimeoutException, _super);
|
|
196
154
|
function RequestTimeoutException(opts) {
|
|
@@ -215,51 +173,33 @@ var UnsupportedMediaTypeException = (function (_super) {
|
|
|
215
173
|
return UnsupportedMediaTypeException;
|
|
216
174
|
}(__BaseException));
|
|
217
175
|
export { UnsupportedMediaTypeException };
|
|
218
|
-
export var PostTextRequest;
|
|
219
|
-
(function (PostTextRequest) {
|
|
220
|
-
PostTextRequest.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.sessionAttributes && { sessionAttributes: SENSITIVE_STRING })), (obj.requestAttributes && { requestAttributes: SENSITIVE_STRING })), (obj.inputText && { inputText: SENSITIVE_STRING })), (obj.activeContexts && { activeContexts: SENSITIVE_STRING }))); };
|
|
221
|
-
})(PostTextRequest || (PostTextRequest = {}));
|
|
222
|
-
export var IntentConfidence;
|
|
223
|
-
(function (IntentConfidence) {
|
|
224
|
-
IntentConfidence.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
225
|
-
})(IntentConfidence || (IntentConfidence = {}));
|
|
226
|
-
export var PredictedIntent;
|
|
227
|
-
(function (PredictedIntent) {
|
|
228
|
-
PredictedIntent.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.slots && { slots: SENSITIVE_STRING }))); };
|
|
229
|
-
})(PredictedIntent || (PredictedIntent = {}));
|
|
230
176
|
export var ContentType;
|
|
231
177
|
(function (ContentType) {
|
|
232
178
|
ContentType["GENERIC"] = "application/vnd.amazonaws.card.generic";
|
|
233
179
|
})(ContentType || (ContentType = {}));
|
|
234
|
-
export var
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
export var
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
(
|
|
244
|
-
|
|
245
|
-
})(
|
|
246
|
-
export var
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
export var
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
})(
|
|
256
|
-
export var
|
|
257
|
-
(function (
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
})), (obj.activeContexts && { activeContexts: SENSITIVE_STRING }))); };
|
|
261
|
-
})(PutSessionRequest || (PutSessionRequest = {}));
|
|
262
|
-
export var PutSessionResponse;
|
|
263
|
-
(function (PutSessionResponse) {
|
|
264
|
-
PutSessionResponse.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.message && { message: SENSITIVE_STRING })), (obj.encodedMessage && { encodedMessage: SENSITIVE_STRING })), (obj.activeContexts && { activeContexts: SENSITIVE_STRING }))); };
|
|
265
|
-
})(PutSessionResponse || (PutSessionResponse = {}));
|
|
180
|
+
export var ActiveContextTimeToLiveFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
181
|
+
export var ActiveContextFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.parameters && { parameters: SENSITIVE_STRING }))); };
|
|
182
|
+
export var DeleteSessionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
183
|
+
export var DeleteSessionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
184
|
+
export var GetSessionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
185
|
+
export var DialogActionFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.slots && { slots: SENSITIVE_STRING })), (obj.message && { message: SENSITIVE_STRING }))); };
|
|
186
|
+
export var IntentSummaryFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.slots && { slots: SENSITIVE_STRING }))); };
|
|
187
|
+
export var GetSessionResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.recentIntentSummaryView && {
|
|
188
|
+
recentIntentSummaryView: obj.recentIntentSummaryView.map(function (item) { return IntentSummaryFilterSensitiveLog(item); }),
|
|
189
|
+
})), (obj.sessionAttributes && { sessionAttributes: SENSITIVE_STRING })), (obj.dialogAction && { dialogAction: DialogActionFilterSensitiveLog(obj.dialogAction) })), (obj.activeContexts && { activeContexts: SENSITIVE_STRING }))); };
|
|
190
|
+
export var PostContentRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.sessionAttributes && { sessionAttributes: SENSITIVE_STRING })), (obj.requestAttributes && { requestAttributes: SENSITIVE_STRING })), (obj.activeContexts && { activeContexts: SENSITIVE_STRING }))); };
|
|
191
|
+
export var PostContentResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.message && { message: SENSITIVE_STRING })), (obj.encodedMessage && { encodedMessage: SENSITIVE_STRING })), (obj.encodedInputTranscript && { encodedInputTranscript: SENSITIVE_STRING })), (obj.activeContexts && { activeContexts: SENSITIVE_STRING }))); };
|
|
192
|
+
export var PostTextRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.sessionAttributes && { sessionAttributes: SENSITIVE_STRING })), (obj.requestAttributes && { requestAttributes: SENSITIVE_STRING })), (obj.inputText && { inputText: SENSITIVE_STRING })), (obj.activeContexts && { activeContexts: SENSITIVE_STRING }))); };
|
|
193
|
+
export var IntentConfidenceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
194
|
+
export var PredictedIntentFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.slots && { slots: SENSITIVE_STRING }))); };
|
|
195
|
+
export var ButtonFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
196
|
+
export var GenericAttachmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
197
|
+
export var ResponseCardFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
198
|
+
export var SentimentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
199
|
+
export var PostTextResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.alternativeIntents && {
|
|
200
|
+
alternativeIntents: obj.alternativeIntents.map(function (item) { return PredictedIntentFilterSensitiveLog(item); }),
|
|
201
|
+
})), (obj.slots && { slots: SENSITIVE_STRING })), (obj.sessionAttributes && { sessionAttributes: SENSITIVE_STRING })), (obj.message && { message: SENSITIVE_STRING })), (obj.activeContexts && { activeContexts: SENSITIVE_STRING }))); };
|
|
202
|
+
export var PutSessionRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.sessionAttributes && { sessionAttributes: SENSITIVE_STRING })), (obj.dialogAction && { dialogAction: DialogActionFilterSensitiveLog(obj.dialogAction) })), (obj.recentIntentSummaryView && {
|
|
203
|
+
recentIntentSummaryView: obj.recentIntentSummaryView.map(function (item) { return IntentSummaryFilterSensitiveLog(item); }),
|
|
204
|
+
})), (obj.activeContexts && { activeContexts: SENSITIVE_STRING }))); };
|
|
205
|
+
export var PutSessionResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.message && { message: SENSITIVE_STRING })), (obj.encodedMessage && { encodedMessage: SENSITIVE_STRING })), (obj.activeContexts && { activeContexts: SENSITIVE_STRING }))); };
|