@aws-sdk/client-lex-models-v2 3.301.0 → 3.303.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/models/models_0.js +254 -309
- package/dist-es/models/models_0.js +254 -309
- package/dist-types/models/models_0.d.ts +529 -254
- package/dist-types/ts3.4/models/models_0.d.ts +350 -254
- package/package.json +35 -35
|
@@ -1,40 +1,33 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { LexModelsV2ServiceException as __BaseException } from "./LexModelsV2ServiceException";
|
|
3
|
-
export
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
export
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
export var ErrorCode;
|
|
32
|
-
(function (ErrorCode) {
|
|
33
|
-
ErrorCode["DUPLICATE_INPUT"] = "DUPLICATE_INPUT";
|
|
34
|
-
ErrorCode["INTERNAL_SERVER_FAILURE"] = "INTERNAL_SERVER_FAILURE";
|
|
35
|
-
ErrorCode["RESOURCE_ALREADY_EXISTS"] = "RESOURCE_ALREADY_EXISTS";
|
|
36
|
-
ErrorCode["RESOURCE_DOES_NOT_EXIST"] = "RESOURCE_DOES_NOT_EXIST";
|
|
37
|
-
})(ErrorCode || (ErrorCode = {}));
|
|
3
|
+
export const AudioRecognitionStrategy = {
|
|
4
|
+
UseSlotValuesAsCustomVocabulary: "UseSlotValuesAsCustomVocabulary",
|
|
5
|
+
};
|
|
6
|
+
export const AggregatedUtterancesFilterName = {
|
|
7
|
+
Utterance: "Utterance",
|
|
8
|
+
};
|
|
9
|
+
export const AggregatedUtterancesFilterOperator = {
|
|
10
|
+
Contains: "CO",
|
|
11
|
+
Equals: "EQ",
|
|
12
|
+
};
|
|
13
|
+
export const AggregatedUtterancesSortAttribute = {
|
|
14
|
+
HitCount: "HitCount",
|
|
15
|
+
MissedCount: "MissedCount",
|
|
16
|
+
};
|
|
17
|
+
export const SortOrder = {
|
|
18
|
+
Ascending: "Ascending",
|
|
19
|
+
Descending: "Descending",
|
|
20
|
+
};
|
|
21
|
+
export const AssociatedTranscriptFilterName = {
|
|
22
|
+
IntentId: "IntentId",
|
|
23
|
+
SlotTypeId: "SlotTypeId",
|
|
24
|
+
};
|
|
25
|
+
export const ErrorCode = {
|
|
26
|
+
DUPLICATE_INPUT: "DUPLICATE_INPUT",
|
|
27
|
+
INTERNAL_SERVER_FAILURE: "INTERNAL_SERVER_FAILURE",
|
|
28
|
+
RESOURCE_ALREADY_EXISTS: "RESOURCE_ALREADY_EXISTS",
|
|
29
|
+
RESOURCE_DOES_NOT_EXIST: "RESOURCE_DOES_NOT_EXIST",
|
|
30
|
+
};
|
|
38
31
|
export class InternalServerException extends __BaseException {
|
|
39
32
|
constructor(opts) {
|
|
40
33
|
super({
|
|
@@ -96,90 +89,77 @@ export class ValidationException extends __BaseException {
|
|
|
96
89
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
97
90
|
}
|
|
98
91
|
}
|
|
99
|
-
export
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
}
|
|
117
|
-
export
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
}
|
|
121
|
-
export
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
}
|
|
163
|
-
export
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
BotStatus["Inactive"] = "Inactive";
|
|
171
|
-
BotStatus["Updating"] = "Updating";
|
|
172
|
-
BotStatus["Versioning"] = "Versioning";
|
|
173
|
-
})(BotStatus || (BotStatus = {}));
|
|
174
|
-
export var BotType;
|
|
175
|
-
(function (BotType) {
|
|
176
|
-
BotType["Bot"] = "Bot";
|
|
177
|
-
BotType["BotNetwork"] = "BotNetwork";
|
|
178
|
-
})(BotType || (BotType = {}));
|
|
179
|
-
export var BotVersionSortAttribute;
|
|
180
|
-
(function (BotVersionSortAttribute) {
|
|
181
|
-
BotVersionSortAttribute["BotVersion"] = "BotVersion";
|
|
182
|
-
})(BotVersionSortAttribute || (BotVersionSortAttribute = {}));
|
|
92
|
+
export const BotAliasStatus = {
|
|
93
|
+
Available: "Available",
|
|
94
|
+
Creating: "Creating",
|
|
95
|
+
Deleting: "Deleting",
|
|
96
|
+
Failed: "Failed",
|
|
97
|
+
};
|
|
98
|
+
export const BotFilterName = {
|
|
99
|
+
BotName: "BotName",
|
|
100
|
+
BotType: "BotType",
|
|
101
|
+
};
|
|
102
|
+
export const BotFilterOperator = {
|
|
103
|
+
Contains: "CO",
|
|
104
|
+
Equals: "EQ",
|
|
105
|
+
NotEquals: "NE",
|
|
106
|
+
};
|
|
107
|
+
export const BotLocaleFilterName = {
|
|
108
|
+
BotLocaleName: "BotLocaleName",
|
|
109
|
+
};
|
|
110
|
+
export const BotLocaleFilterOperator = {
|
|
111
|
+
Contains: "CO",
|
|
112
|
+
Equals: "EQ",
|
|
113
|
+
};
|
|
114
|
+
export const VoiceEngine = {
|
|
115
|
+
Neural: "neural",
|
|
116
|
+
Standard: "standard",
|
|
117
|
+
};
|
|
118
|
+
export const BotLocaleSortAttribute = {
|
|
119
|
+
BotLocaleName: "BotLocaleName",
|
|
120
|
+
};
|
|
121
|
+
export const BotLocaleStatus = {
|
|
122
|
+
Building: "Building",
|
|
123
|
+
Built: "Built",
|
|
124
|
+
Creating: "Creating",
|
|
125
|
+
Deleting: "Deleting",
|
|
126
|
+
Failed: "Failed",
|
|
127
|
+
Importing: "Importing",
|
|
128
|
+
NotBuilt: "NotBuilt",
|
|
129
|
+
Processing: "Processing",
|
|
130
|
+
ReadyExpressTesting: "ReadyExpressTesting",
|
|
131
|
+
};
|
|
132
|
+
export const BotRecommendationStatus = {
|
|
133
|
+
Available: "Available",
|
|
134
|
+
Deleted: "Deleted",
|
|
135
|
+
Deleting: "Deleting",
|
|
136
|
+
Downloading: "Downloading",
|
|
137
|
+
Failed: "Failed",
|
|
138
|
+
Processing: "Processing",
|
|
139
|
+
Stopped: "Stopped",
|
|
140
|
+
Stopping: "Stopping",
|
|
141
|
+
Updating: "Updating",
|
|
142
|
+
};
|
|
143
|
+
export const BotSortAttribute = {
|
|
144
|
+
BotName: "BotName",
|
|
145
|
+
};
|
|
146
|
+
export const BotStatus = {
|
|
147
|
+
Available: "Available",
|
|
148
|
+
Creating: "Creating",
|
|
149
|
+
Deleting: "Deleting",
|
|
150
|
+
Failed: "Failed",
|
|
151
|
+
Importing: "Importing",
|
|
152
|
+
Inactive: "Inactive",
|
|
153
|
+
Updating: "Updating",
|
|
154
|
+
Versioning: "Versioning",
|
|
155
|
+
};
|
|
156
|
+
export const BotType = {
|
|
157
|
+
Bot: "Bot",
|
|
158
|
+
BotNetwork: "BotNetwork",
|
|
159
|
+
};
|
|
160
|
+
export const BotVersionSortAttribute = {
|
|
161
|
+
BotVersion: "BotVersion",
|
|
162
|
+
};
|
|
183
163
|
export class ConflictException extends __BaseException {
|
|
184
164
|
constructor(opts) {
|
|
185
165
|
super({
|
|
@@ -204,196 +184,161 @@ export class PreconditionFailedException extends __BaseException {
|
|
|
204
184
|
Object.setPrototypeOf(this, PreconditionFailedException.prototype);
|
|
205
185
|
}
|
|
206
186
|
}
|
|
207
|
-
export
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
}
|
|
232
|
-
export
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
}
|
|
258
|
-
export
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
}
|
|
298
|
-
export
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
}
|
|
313
|
-
export
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
}
|
|
332
|
-
export
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
}
|
|
336
|
-
export
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
}
|
|
340
|
-
export
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
SlotFilterOperator["Contains"] = "CO";
|
|
363
|
-
SlotFilterOperator["Equals"] = "EQ";
|
|
364
|
-
})(SlotFilterOperator || (SlotFilterOperator = {}));
|
|
365
|
-
export var SlotSortAttribute;
|
|
366
|
-
(function (SlotSortAttribute) {
|
|
367
|
-
SlotSortAttribute["LastUpdatedDateTime"] = "LastUpdatedDateTime";
|
|
368
|
-
SlotSortAttribute["SlotName"] = "SlotName";
|
|
369
|
-
})(SlotSortAttribute || (SlotSortAttribute = {}));
|
|
370
|
-
export var SlotTypeFilterName;
|
|
371
|
-
(function (SlotTypeFilterName) {
|
|
372
|
-
SlotTypeFilterName["ExternalSourceType"] = "ExternalSourceType";
|
|
373
|
-
SlotTypeFilterName["SlotTypeName"] = "SlotTypeName";
|
|
374
|
-
})(SlotTypeFilterName || (SlotTypeFilterName = {}));
|
|
375
|
-
export var SlotTypeFilterOperator;
|
|
376
|
-
(function (SlotTypeFilterOperator) {
|
|
377
|
-
SlotTypeFilterOperator["Contains"] = "CO";
|
|
378
|
-
SlotTypeFilterOperator["Equals"] = "EQ";
|
|
379
|
-
})(SlotTypeFilterOperator || (SlotTypeFilterOperator = {}));
|
|
380
|
-
export var SlotTypeSortAttribute;
|
|
381
|
-
(function (SlotTypeSortAttribute) {
|
|
382
|
-
SlotTypeSortAttribute["LastUpdatedDateTime"] = "LastUpdatedDateTime";
|
|
383
|
-
SlotTypeSortAttribute["SlotTypeName"] = "SlotTypeName";
|
|
384
|
-
})(SlotTypeSortAttribute || (SlotTypeSortAttribute = {}));
|
|
385
|
-
export var SlotTypeCategory;
|
|
386
|
-
(function (SlotTypeCategory) {
|
|
387
|
-
SlotTypeCategory["Composite"] = "Composite";
|
|
388
|
-
SlotTypeCategory["Custom"] = "Custom";
|
|
389
|
-
SlotTypeCategory["Extended"] = "Extended";
|
|
390
|
-
SlotTypeCategory["ExternalGrammar"] = "ExternalGrammar";
|
|
391
|
-
})(SlotTypeCategory || (SlotTypeCategory = {}));
|
|
392
|
-
export var SearchOrder;
|
|
393
|
-
(function (SearchOrder) {
|
|
394
|
-
SearchOrder["Ascending"] = "Ascending";
|
|
395
|
-
SearchOrder["Descending"] = "Descending";
|
|
396
|
-
})(SearchOrder || (SearchOrder = {}));
|
|
187
|
+
export const BuiltInIntentSortAttribute = {
|
|
188
|
+
IntentSignature: "IntentSignature",
|
|
189
|
+
};
|
|
190
|
+
export const BuiltInSlotTypeSortAttribute = {
|
|
191
|
+
SlotTypeSignature: "SlotTypeSignature",
|
|
192
|
+
};
|
|
193
|
+
export const DialogActionType = {
|
|
194
|
+
CloseIntent: "CloseIntent",
|
|
195
|
+
ConfirmIntent: "ConfirmIntent",
|
|
196
|
+
ElicitIntent: "ElicitIntent",
|
|
197
|
+
ElicitSlot: "ElicitSlot",
|
|
198
|
+
EndConversation: "EndConversation",
|
|
199
|
+
EvaluateConditional: "EvaluateConditional",
|
|
200
|
+
FulfillIntent: "FulfillIntent",
|
|
201
|
+
InvokeDialogCodeHook: "InvokeDialogCodeHook",
|
|
202
|
+
StartIntent: "StartIntent",
|
|
203
|
+
};
|
|
204
|
+
export const SlotShape = {
|
|
205
|
+
List: "List",
|
|
206
|
+
Scalar: "Scalar",
|
|
207
|
+
};
|
|
208
|
+
export const ImportExportFileFormat = {
|
|
209
|
+
LexJson: "LexJson",
|
|
210
|
+
TSV: "TSV",
|
|
211
|
+
};
|
|
212
|
+
export const ExportStatus = {
|
|
213
|
+
Completed: "Completed",
|
|
214
|
+
Deleting: "Deleting",
|
|
215
|
+
Failed: "Failed",
|
|
216
|
+
InProgress: "InProgress",
|
|
217
|
+
};
|
|
218
|
+
export const MessageSelectionStrategy = {
|
|
219
|
+
Ordered: "Ordered",
|
|
220
|
+
Random: "Random",
|
|
221
|
+
};
|
|
222
|
+
export const PromptAttempt = {
|
|
223
|
+
Initial: "Initial",
|
|
224
|
+
Retry1: "Retry1",
|
|
225
|
+
Retry2: "Retry2",
|
|
226
|
+
Retry3: "Retry3",
|
|
227
|
+
Retry4: "Retry4",
|
|
228
|
+
Retry5: "Retry5",
|
|
229
|
+
};
|
|
230
|
+
export const Effect = {
|
|
231
|
+
Allow: "Allow",
|
|
232
|
+
Deny: "Deny",
|
|
233
|
+
};
|
|
234
|
+
export const ObfuscationSettingType = {
|
|
235
|
+
DefaultObfuscation: "DefaultObfuscation",
|
|
236
|
+
None: "None",
|
|
237
|
+
};
|
|
238
|
+
export const SlotConstraint = {
|
|
239
|
+
Optional: "Optional",
|
|
240
|
+
Required: "Required",
|
|
241
|
+
};
|
|
242
|
+
export const SlotValueResolutionStrategy = {
|
|
243
|
+
Concatenation: "Concatenation",
|
|
244
|
+
OriginalValue: "OriginalValue",
|
|
245
|
+
TopResolution: "TopResolution",
|
|
246
|
+
};
|
|
247
|
+
export const CustomVocabularyStatus = {
|
|
248
|
+
Creating: "Creating",
|
|
249
|
+
Deleting: "Deleting",
|
|
250
|
+
Exporting: "Exporting",
|
|
251
|
+
Importing: "Importing",
|
|
252
|
+
Ready: "Ready",
|
|
253
|
+
};
|
|
254
|
+
export const ImportStatus = {
|
|
255
|
+
Completed: "Completed",
|
|
256
|
+
Deleting: "Deleting",
|
|
257
|
+
Failed: "Failed",
|
|
258
|
+
InProgress: "InProgress",
|
|
259
|
+
};
|
|
260
|
+
export const TranscriptFormat = {
|
|
261
|
+
Lex: "Lex",
|
|
262
|
+
};
|
|
263
|
+
export const MergeStrategy = {
|
|
264
|
+
Append: "Append",
|
|
265
|
+
FailOnConflict: "FailOnConflict",
|
|
266
|
+
Overwrite: "Overwrite",
|
|
267
|
+
};
|
|
268
|
+
export const ExportFilterName = {
|
|
269
|
+
ExportResourceType: "ExportResourceType",
|
|
270
|
+
};
|
|
271
|
+
export const ExportFilterOperator = {
|
|
272
|
+
Contains: "CO",
|
|
273
|
+
Equals: "EQ",
|
|
274
|
+
};
|
|
275
|
+
export const ExportSortAttribute = {
|
|
276
|
+
LastUpdatedDateTime: "LastUpdatedDateTime",
|
|
277
|
+
};
|
|
278
|
+
export const ImportFilterName = {
|
|
279
|
+
ImportResourceType: "ImportResourceType",
|
|
280
|
+
};
|
|
281
|
+
export const ImportFilterOperator = {
|
|
282
|
+
Contains: "CO",
|
|
283
|
+
Equals: "EQ",
|
|
284
|
+
};
|
|
285
|
+
export const ImportResourceType = {
|
|
286
|
+
Bot: "Bot",
|
|
287
|
+
BotLocale: "BotLocale",
|
|
288
|
+
CustomVocabulary: "CustomVocabulary",
|
|
289
|
+
};
|
|
290
|
+
export const ImportSortAttribute = {
|
|
291
|
+
LastUpdatedDateTime: "LastUpdatedDateTime",
|
|
292
|
+
};
|
|
293
|
+
export const IntentFilterName = {
|
|
294
|
+
IntentName: "IntentName",
|
|
295
|
+
};
|
|
296
|
+
export const IntentFilterOperator = {
|
|
297
|
+
Contains: "CO",
|
|
298
|
+
Equals: "EQ",
|
|
299
|
+
};
|
|
300
|
+
export const IntentSortAttribute = {
|
|
301
|
+
IntentName: "IntentName",
|
|
302
|
+
LastUpdatedDateTime: "LastUpdatedDateTime",
|
|
303
|
+
};
|
|
304
|
+
export const TimeDimension = {
|
|
305
|
+
Days: "Days",
|
|
306
|
+
Hours: "Hours",
|
|
307
|
+
Weeks: "Weeks",
|
|
308
|
+
};
|
|
309
|
+
export const SlotFilterName = {
|
|
310
|
+
SlotName: "SlotName",
|
|
311
|
+
};
|
|
312
|
+
export const SlotFilterOperator = {
|
|
313
|
+
Contains: "CO",
|
|
314
|
+
Equals: "EQ",
|
|
315
|
+
};
|
|
316
|
+
export const SlotSortAttribute = {
|
|
317
|
+
LastUpdatedDateTime: "LastUpdatedDateTime",
|
|
318
|
+
SlotName: "SlotName",
|
|
319
|
+
};
|
|
320
|
+
export const SlotTypeFilterName = {
|
|
321
|
+
ExternalSourceType: "ExternalSourceType",
|
|
322
|
+
SlotTypeName: "SlotTypeName",
|
|
323
|
+
};
|
|
324
|
+
export const SlotTypeFilterOperator = {
|
|
325
|
+
Contains: "CO",
|
|
326
|
+
Equals: "EQ",
|
|
327
|
+
};
|
|
328
|
+
export const SlotTypeSortAttribute = {
|
|
329
|
+
LastUpdatedDateTime: "LastUpdatedDateTime",
|
|
330
|
+
SlotTypeName: "SlotTypeName",
|
|
331
|
+
};
|
|
332
|
+
export const SlotTypeCategory = {
|
|
333
|
+
Composite: "Composite",
|
|
334
|
+
Custom: "Custom",
|
|
335
|
+
Extended: "Extended",
|
|
336
|
+
ExternalGrammar: "ExternalGrammar",
|
|
337
|
+
};
|
|
338
|
+
export const SearchOrder = {
|
|
339
|
+
Ascending: "Ascending",
|
|
340
|
+
Descending: "Descending",
|
|
341
|
+
};
|
|
397
342
|
export const CreateExportRequestFilterSensitiveLog = (obj) => ({
|
|
398
343
|
...obj,
|
|
399
344
|
...(obj.filePassword && { filePassword: SENSITIVE_STRING }),
|