@aws-sdk/client-lex-models-v2 3.301.0 → 3.306.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
|
@@ -2,10 +2,15 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { LexModelsV2ServiceException as __BaseException } from "./LexModelsV2ServiceException";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
|
+
* @enum
|
|
5
6
|
*/
|
|
6
|
-
export declare
|
|
7
|
-
UseSlotValuesAsCustomVocabulary
|
|
8
|
-
}
|
|
7
|
+
export declare const AudioRecognitionStrategy: {
|
|
8
|
+
readonly UseSlotValuesAsCustomVocabulary: "UseSlotValuesAsCustomVocabulary";
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
export type AudioRecognitionStrategy = (typeof AudioRecognitionStrategy)[keyof typeof AudioRecognitionStrategy];
|
|
9
14
|
/**
|
|
10
15
|
* @public
|
|
11
16
|
* <p>Provides settings that enable advanced recognition settings for slot values.</p>
|
|
@@ -18,17 +23,27 @@ export interface AdvancedRecognitionSetting {
|
|
|
18
23
|
}
|
|
19
24
|
/**
|
|
20
25
|
* @public
|
|
26
|
+
* @enum
|
|
21
27
|
*/
|
|
22
|
-
export declare
|
|
23
|
-
Utterance
|
|
24
|
-
}
|
|
28
|
+
export declare const AggregatedUtterancesFilterName: {
|
|
29
|
+
readonly Utterance: "Utterance";
|
|
30
|
+
};
|
|
25
31
|
/**
|
|
26
32
|
* @public
|
|
27
33
|
*/
|
|
28
|
-
export
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
34
|
+
export type AggregatedUtterancesFilterName = (typeof AggregatedUtterancesFilterName)[keyof typeof AggregatedUtterancesFilterName];
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
* @enum
|
|
38
|
+
*/
|
|
39
|
+
export declare const AggregatedUtterancesFilterOperator: {
|
|
40
|
+
readonly Contains: "CO";
|
|
41
|
+
readonly Equals: "EQ";
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export type AggregatedUtterancesFilterOperator = (typeof AggregatedUtterancesFilterOperator)[keyof typeof AggregatedUtterancesFilterOperator];
|
|
32
47
|
/**
|
|
33
48
|
* @public
|
|
34
49
|
* <p>Filters responses returned by the
|
|
@@ -54,18 +69,28 @@ export interface AggregatedUtterancesFilter {
|
|
|
54
69
|
}
|
|
55
70
|
/**
|
|
56
71
|
* @public
|
|
72
|
+
* @enum
|
|
57
73
|
*/
|
|
58
|
-
export declare
|
|
59
|
-
HitCount
|
|
60
|
-
MissedCount
|
|
61
|
-
}
|
|
74
|
+
export declare const AggregatedUtterancesSortAttribute: {
|
|
75
|
+
readonly HitCount: "HitCount";
|
|
76
|
+
readonly MissedCount: "MissedCount";
|
|
77
|
+
};
|
|
62
78
|
/**
|
|
63
79
|
* @public
|
|
64
80
|
*/
|
|
65
|
-
export
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
81
|
+
export type AggregatedUtterancesSortAttribute = (typeof AggregatedUtterancesSortAttribute)[keyof typeof AggregatedUtterancesSortAttribute];
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
* @enum
|
|
85
|
+
*/
|
|
86
|
+
export declare const SortOrder: {
|
|
87
|
+
readonly Ascending: "Ascending";
|
|
88
|
+
readonly Descending: "Descending";
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
69
94
|
/**
|
|
70
95
|
* @public
|
|
71
96
|
* <p>Specifies attributes for sorting a list of utterances.</p>
|
|
@@ -155,11 +180,16 @@ export interface AssociatedTranscript {
|
|
|
155
180
|
}
|
|
156
181
|
/**
|
|
157
182
|
* @public
|
|
183
|
+
* @enum
|
|
158
184
|
*/
|
|
159
|
-
export declare
|
|
160
|
-
IntentId
|
|
161
|
-
SlotTypeId
|
|
162
|
-
}
|
|
185
|
+
export declare const AssociatedTranscriptFilterName: {
|
|
186
|
+
readonly IntentId: "IntentId";
|
|
187
|
+
readonly SlotTypeId: "SlotTypeId";
|
|
188
|
+
};
|
|
189
|
+
/**
|
|
190
|
+
* @public
|
|
191
|
+
*/
|
|
192
|
+
export type AssociatedTranscriptFilterName = (typeof AssociatedTranscriptFilterName)[keyof typeof AssociatedTranscriptFilterName];
|
|
163
193
|
/**
|
|
164
194
|
* @public
|
|
165
195
|
* <p>Filters to search for the associated transcript.</p>
|
|
@@ -334,13 +364,18 @@ export interface BatchCreateCustomVocabularyItemRequest {
|
|
|
334
364
|
}
|
|
335
365
|
/**
|
|
336
366
|
* @public
|
|
367
|
+
* @enum
|
|
337
368
|
*/
|
|
338
|
-
export declare
|
|
339
|
-
DUPLICATE_INPUT
|
|
340
|
-
INTERNAL_SERVER_FAILURE
|
|
341
|
-
RESOURCE_ALREADY_EXISTS
|
|
342
|
-
RESOURCE_DOES_NOT_EXIST
|
|
343
|
-
}
|
|
369
|
+
export declare const ErrorCode: {
|
|
370
|
+
readonly DUPLICATE_INPUT: "DUPLICATE_INPUT";
|
|
371
|
+
readonly INTERNAL_SERVER_FAILURE: "INTERNAL_SERVER_FAILURE";
|
|
372
|
+
readonly RESOURCE_ALREADY_EXISTS: "RESOURCE_ALREADY_EXISTS";
|
|
373
|
+
readonly RESOURCE_DOES_NOT_EXIST: "RESOURCE_DOES_NOT_EXIST";
|
|
374
|
+
};
|
|
375
|
+
/**
|
|
376
|
+
* @public
|
|
377
|
+
*/
|
|
378
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
344
379
|
/**
|
|
345
380
|
* @public
|
|
346
381
|
* <p>The unique failed custom vocabulary item from the custom
|
|
@@ -677,13 +712,18 @@ export interface BotAliasLocaleSettings {
|
|
|
677
712
|
}
|
|
678
713
|
/**
|
|
679
714
|
* @public
|
|
715
|
+
* @enum
|
|
680
716
|
*/
|
|
681
|
-
export declare
|
|
682
|
-
Available
|
|
683
|
-
Creating
|
|
684
|
-
Deleting
|
|
685
|
-
Failed
|
|
686
|
-
}
|
|
717
|
+
export declare const BotAliasStatus: {
|
|
718
|
+
readonly Available: "Available";
|
|
719
|
+
readonly Creating: "Creating";
|
|
720
|
+
readonly Deleting: "Deleting";
|
|
721
|
+
readonly Failed: "Failed";
|
|
722
|
+
};
|
|
723
|
+
/**
|
|
724
|
+
* @public
|
|
725
|
+
*/
|
|
726
|
+
export type BotAliasStatus = (typeof BotAliasStatus)[keyof typeof BotAliasStatus];
|
|
687
727
|
/**
|
|
688
728
|
* @public
|
|
689
729
|
* <p>Summary information about bot aliases returned from the <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_ListBotAliases.html">ListBotAliases</a> operation.</p>
|
|
@@ -739,19 +779,29 @@ export interface BotExportSpecification {
|
|
|
739
779
|
}
|
|
740
780
|
/**
|
|
741
781
|
* @public
|
|
782
|
+
* @enum
|
|
742
783
|
*/
|
|
743
|
-
export declare
|
|
744
|
-
BotName
|
|
745
|
-
BotType
|
|
746
|
-
}
|
|
784
|
+
export declare const BotFilterName: {
|
|
785
|
+
readonly BotName: "BotName";
|
|
786
|
+
readonly BotType: "BotType";
|
|
787
|
+
};
|
|
747
788
|
/**
|
|
748
789
|
* @public
|
|
749
790
|
*/
|
|
750
|
-
export
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
791
|
+
export type BotFilterName = (typeof BotFilterName)[keyof typeof BotFilterName];
|
|
792
|
+
/**
|
|
793
|
+
* @public
|
|
794
|
+
* @enum
|
|
795
|
+
*/
|
|
796
|
+
export declare const BotFilterOperator: {
|
|
797
|
+
readonly Contains: "CO";
|
|
798
|
+
readonly Equals: "EQ";
|
|
799
|
+
readonly NotEquals: "NE";
|
|
800
|
+
};
|
|
801
|
+
/**
|
|
802
|
+
* @public
|
|
803
|
+
*/
|
|
804
|
+
export type BotFilterOperator = (typeof BotFilterOperator)[keyof typeof BotFilterOperator];
|
|
755
805
|
/**
|
|
756
806
|
* @public
|
|
757
807
|
* <p>Filters the responses returned by the <code>ListBots</code>
|
|
@@ -881,17 +931,27 @@ export interface BotLocaleExportSpecification {
|
|
|
881
931
|
}
|
|
882
932
|
/**
|
|
883
933
|
* @public
|
|
934
|
+
* @enum
|
|
884
935
|
*/
|
|
885
|
-
export declare
|
|
886
|
-
BotLocaleName
|
|
887
|
-
}
|
|
936
|
+
export declare const BotLocaleFilterName: {
|
|
937
|
+
readonly BotLocaleName: "BotLocaleName";
|
|
938
|
+
};
|
|
888
939
|
/**
|
|
889
940
|
* @public
|
|
890
941
|
*/
|
|
891
|
-
export
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
942
|
+
export type BotLocaleFilterName = (typeof BotLocaleFilterName)[keyof typeof BotLocaleFilterName];
|
|
943
|
+
/**
|
|
944
|
+
* @public
|
|
945
|
+
* @enum
|
|
946
|
+
*/
|
|
947
|
+
export declare const BotLocaleFilterOperator: {
|
|
948
|
+
readonly Contains: "CO";
|
|
949
|
+
readonly Equals: "EQ";
|
|
950
|
+
};
|
|
951
|
+
/**
|
|
952
|
+
* @public
|
|
953
|
+
*/
|
|
954
|
+
export type BotLocaleFilterOperator = (typeof BotLocaleFilterOperator)[keyof typeof BotLocaleFilterOperator];
|
|
895
955
|
/**
|
|
896
956
|
* @public
|
|
897
957
|
* <p>Filters responses returned by the <code>ListBotLocales</code>
|
|
@@ -932,11 +992,16 @@ export interface BotLocaleHistoryEvent {
|
|
|
932
992
|
}
|
|
933
993
|
/**
|
|
934
994
|
* @public
|
|
995
|
+
* @enum
|
|
935
996
|
*/
|
|
936
|
-
export declare
|
|
937
|
-
Neural
|
|
938
|
-
Standard
|
|
939
|
-
}
|
|
997
|
+
export declare const VoiceEngine: {
|
|
998
|
+
readonly Neural: "neural";
|
|
999
|
+
readonly Standard: "standard";
|
|
1000
|
+
};
|
|
1001
|
+
/**
|
|
1002
|
+
* @public
|
|
1003
|
+
*/
|
|
1004
|
+
export type VoiceEngine = (typeof VoiceEngine)[keyof typeof VoiceEngine];
|
|
940
1005
|
/**
|
|
941
1006
|
* @public
|
|
942
1007
|
* <p>Defines settings for using an Amazon Polly voice to communicate with a
|
|
@@ -1025,10 +1090,15 @@ export interface BotLocaleImportSpecification {
|
|
|
1025
1090
|
}
|
|
1026
1091
|
/**
|
|
1027
1092
|
* @public
|
|
1093
|
+
* @enum
|
|
1028
1094
|
*/
|
|
1029
|
-
export declare
|
|
1030
|
-
BotLocaleName
|
|
1031
|
-
}
|
|
1095
|
+
export declare const BotLocaleSortAttribute: {
|
|
1096
|
+
readonly BotLocaleName: "BotLocaleName";
|
|
1097
|
+
};
|
|
1098
|
+
/**
|
|
1099
|
+
* @public
|
|
1100
|
+
*/
|
|
1101
|
+
export type BotLocaleSortAttribute = (typeof BotLocaleSortAttribute)[keyof typeof BotLocaleSortAttribute];
|
|
1032
1102
|
/**
|
|
1033
1103
|
* @public
|
|
1034
1104
|
* <p>Specifies attributes for sorting a list of bot locales.</p>
|
|
@@ -1046,18 +1116,23 @@ export interface BotLocaleSortBy {
|
|
|
1046
1116
|
}
|
|
1047
1117
|
/**
|
|
1048
1118
|
* @public
|
|
1119
|
+
* @enum
|
|
1049
1120
|
*/
|
|
1050
|
-
export declare
|
|
1051
|
-
Building
|
|
1052
|
-
Built
|
|
1053
|
-
Creating
|
|
1054
|
-
Deleting
|
|
1055
|
-
Failed
|
|
1056
|
-
Importing
|
|
1057
|
-
NotBuilt
|
|
1058
|
-
Processing
|
|
1059
|
-
ReadyExpressTesting
|
|
1060
|
-
}
|
|
1121
|
+
export declare const BotLocaleStatus: {
|
|
1122
|
+
readonly Building: "Building";
|
|
1123
|
+
readonly Built: "Built";
|
|
1124
|
+
readonly Creating: "Creating";
|
|
1125
|
+
readonly Deleting: "Deleting";
|
|
1126
|
+
readonly Failed: "Failed";
|
|
1127
|
+
readonly Importing: "Importing";
|
|
1128
|
+
readonly NotBuilt: "NotBuilt";
|
|
1129
|
+
readonly Processing: "Processing";
|
|
1130
|
+
readonly ReadyExpressTesting: "ReadyExpressTesting";
|
|
1131
|
+
};
|
|
1132
|
+
/**
|
|
1133
|
+
* @public
|
|
1134
|
+
*/
|
|
1135
|
+
export type BotLocaleStatus = (typeof BotLocaleStatus)[keyof typeof BotLocaleStatus];
|
|
1061
1136
|
/**
|
|
1062
1137
|
* @public
|
|
1063
1138
|
* <p>Summary information about bot locales returned by the <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_ListBotLocales.html">ListBotLocales</a> operation.</p>
|
|
@@ -1179,18 +1254,23 @@ export interface BotRecommendationResults {
|
|
|
1179
1254
|
}
|
|
1180
1255
|
/**
|
|
1181
1256
|
* @public
|
|
1257
|
+
* @enum
|
|
1182
1258
|
*/
|
|
1183
|
-
export declare
|
|
1184
|
-
Available
|
|
1185
|
-
Deleted
|
|
1186
|
-
Deleting
|
|
1187
|
-
Downloading
|
|
1188
|
-
Failed
|
|
1189
|
-
Processing
|
|
1190
|
-
Stopped
|
|
1191
|
-
Stopping
|
|
1192
|
-
Updating
|
|
1193
|
-
}
|
|
1259
|
+
export declare const BotRecommendationStatus: {
|
|
1260
|
+
readonly Available: "Available";
|
|
1261
|
+
readonly Deleted: "Deleted";
|
|
1262
|
+
readonly Deleting: "Deleting";
|
|
1263
|
+
readonly Downloading: "Downloading";
|
|
1264
|
+
readonly Failed: "Failed";
|
|
1265
|
+
readonly Processing: "Processing";
|
|
1266
|
+
readonly Stopped: "Stopped";
|
|
1267
|
+
readonly Stopping: "Stopping";
|
|
1268
|
+
readonly Updating: "Updating";
|
|
1269
|
+
};
|
|
1270
|
+
/**
|
|
1271
|
+
* @public
|
|
1272
|
+
*/
|
|
1273
|
+
export type BotRecommendationStatus = (typeof BotRecommendationStatus)[keyof typeof BotRecommendationStatus];
|
|
1194
1274
|
/**
|
|
1195
1275
|
* @public
|
|
1196
1276
|
* <p>A summary of the bot recommendation.</p>
|
|
@@ -1220,10 +1300,15 @@ export interface BotRecommendationSummary {
|
|
|
1220
1300
|
}
|
|
1221
1301
|
/**
|
|
1222
1302
|
* @public
|
|
1303
|
+
* @enum
|
|
1223
1304
|
*/
|
|
1224
|
-
export declare
|
|
1225
|
-
BotName
|
|
1226
|
-
}
|
|
1305
|
+
export declare const BotSortAttribute: {
|
|
1306
|
+
readonly BotName: "BotName";
|
|
1307
|
+
};
|
|
1308
|
+
/**
|
|
1309
|
+
* @public
|
|
1310
|
+
*/
|
|
1311
|
+
export type BotSortAttribute = (typeof BotSortAttribute)[keyof typeof BotSortAttribute];
|
|
1227
1312
|
/**
|
|
1228
1313
|
* @public
|
|
1229
1314
|
* <p>Specifies attributes for sorting a list of bots.</p>
|
|
@@ -1241,24 +1326,34 @@ export interface BotSortBy {
|
|
|
1241
1326
|
}
|
|
1242
1327
|
/**
|
|
1243
1328
|
* @public
|
|
1329
|
+
* @enum
|
|
1244
1330
|
*/
|
|
1245
|
-
export declare
|
|
1246
|
-
Available
|
|
1247
|
-
Creating
|
|
1248
|
-
Deleting
|
|
1249
|
-
Failed
|
|
1250
|
-
Importing
|
|
1251
|
-
Inactive
|
|
1252
|
-
Updating
|
|
1253
|
-
Versioning
|
|
1254
|
-
}
|
|
1331
|
+
export declare const BotStatus: {
|
|
1332
|
+
readonly Available: "Available";
|
|
1333
|
+
readonly Creating: "Creating";
|
|
1334
|
+
readonly Deleting: "Deleting";
|
|
1335
|
+
readonly Failed: "Failed";
|
|
1336
|
+
readonly Importing: "Importing";
|
|
1337
|
+
readonly Inactive: "Inactive";
|
|
1338
|
+
readonly Updating: "Updating";
|
|
1339
|
+
readonly Versioning: "Versioning";
|
|
1340
|
+
};
|
|
1255
1341
|
/**
|
|
1256
1342
|
* @public
|
|
1257
1343
|
*/
|
|
1258
|
-
export
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1344
|
+
export type BotStatus = (typeof BotStatus)[keyof typeof BotStatus];
|
|
1345
|
+
/**
|
|
1346
|
+
* @public
|
|
1347
|
+
* @enum
|
|
1348
|
+
*/
|
|
1349
|
+
export declare const BotType: {
|
|
1350
|
+
readonly Bot: "Bot";
|
|
1351
|
+
readonly BotNetwork: "BotNetwork";
|
|
1352
|
+
};
|
|
1353
|
+
/**
|
|
1354
|
+
* @public
|
|
1355
|
+
*/
|
|
1356
|
+
export type BotType = (typeof BotType)[keyof typeof BotType];
|
|
1262
1357
|
/**
|
|
1263
1358
|
* @public
|
|
1264
1359
|
* <p>Summary information about a bot returned by the <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_ListBots.html">ListBots</a> operation.</p>
|
|
@@ -1307,10 +1402,15 @@ export interface BotVersionLocaleDetails {
|
|
|
1307
1402
|
}
|
|
1308
1403
|
/**
|
|
1309
1404
|
* @public
|
|
1405
|
+
* @enum
|
|
1310
1406
|
*/
|
|
1311
|
-
export declare
|
|
1312
|
-
BotVersion
|
|
1313
|
-
}
|
|
1407
|
+
export declare const BotVersionSortAttribute: {
|
|
1408
|
+
readonly BotVersion: "BotVersion";
|
|
1409
|
+
};
|
|
1410
|
+
/**
|
|
1411
|
+
* @public
|
|
1412
|
+
*/
|
|
1413
|
+
export type BotVersionSortAttribute = (typeof BotVersionSortAttribute)[keyof typeof BotVersionSortAttribute];
|
|
1314
1414
|
/**
|
|
1315
1415
|
* @public
|
|
1316
1416
|
* <p>Specifies attributes for sorting a list of bot versions.</p>
|
|
@@ -1439,10 +1539,15 @@ export declare class PreconditionFailedException extends __BaseException {
|
|
|
1439
1539
|
}
|
|
1440
1540
|
/**
|
|
1441
1541
|
* @public
|
|
1542
|
+
* @enum
|
|
1442
1543
|
*/
|
|
1443
|
-
export declare
|
|
1444
|
-
IntentSignature
|
|
1445
|
-
}
|
|
1544
|
+
export declare const BuiltInIntentSortAttribute: {
|
|
1545
|
+
readonly IntentSignature: "IntentSignature";
|
|
1546
|
+
};
|
|
1547
|
+
/**
|
|
1548
|
+
* @public
|
|
1549
|
+
*/
|
|
1550
|
+
export type BuiltInIntentSortAttribute = (typeof BuiltInIntentSortAttribute)[keyof typeof BuiltInIntentSortAttribute];
|
|
1446
1551
|
/**
|
|
1447
1552
|
* @public
|
|
1448
1553
|
* <p>Specifies attributes for sorting a list of built-in intents.</p>
|
|
@@ -1475,10 +1580,15 @@ export interface BuiltInIntentSummary {
|
|
|
1475
1580
|
}
|
|
1476
1581
|
/**
|
|
1477
1582
|
* @public
|
|
1583
|
+
* @enum
|
|
1478
1584
|
*/
|
|
1479
|
-
export declare
|
|
1480
|
-
SlotTypeSignature
|
|
1481
|
-
}
|
|
1585
|
+
export declare const BuiltInSlotTypeSortAttribute: {
|
|
1586
|
+
readonly SlotTypeSignature: "SlotTypeSignature";
|
|
1587
|
+
};
|
|
1588
|
+
/**
|
|
1589
|
+
* @public
|
|
1590
|
+
*/
|
|
1591
|
+
export type BuiltInSlotTypeSortAttribute = (typeof BuiltInSlotTypeSortAttribute)[keyof typeof BuiltInSlotTypeSortAttribute];
|
|
1482
1592
|
/**
|
|
1483
1593
|
* @public
|
|
1484
1594
|
* <p>Specifies attributes for sorting a list of built-in slot
|
|
@@ -1584,18 +1694,23 @@ export interface Condition {
|
|
|
1584
1694
|
}
|
|
1585
1695
|
/**
|
|
1586
1696
|
* @public
|
|
1697
|
+
* @enum
|
|
1587
1698
|
*/
|
|
1588
|
-
export declare
|
|
1589
|
-
CloseIntent
|
|
1590
|
-
ConfirmIntent
|
|
1591
|
-
ElicitIntent
|
|
1592
|
-
ElicitSlot
|
|
1593
|
-
EndConversation
|
|
1594
|
-
EvaluateConditional
|
|
1595
|
-
FulfillIntent
|
|
1596
|
-
InvokeDialogCodeHook
|
|
1597
|
-
StartIntent
|
|
1598
|
-
}
|
|
1699
|
+
export declare const DialogActionType: {
|
|
1700
|
+
readonly CloseIntent: "CloseIntent";
|
|
1701
|
+
readonly ConfirmIntent: "ConfirmIntent";
|
|
1702
|
+
readonly ElicitIntent: "ElicitIntent";
|
|
1703
|
+
readonly ElicitSlot: "ElicitSlot";
|
|
1704
|
+
readonly EndConversation: "EndConversation";
|
|
1705
|
+
readonly EvaluateConditional: "EvaluateConditional";
|
|
1706
|
+
readonly FulfillIntent: "FulfillIntent";
|
|
1707
|
+
readonly InvokeDialogCodeHook: "InvokeDialogCodeHook";
|
|
1708
|
+
readonly StartIntent: "StartIntent";
|
|
1709
|
+
};
|
|
1710
|
+
/**
|
|
1711
|
+
* @public
|
|
1712
|
+
*/
|
|
1713
|
+
export type DialogActionType = (typeof DialogActionType)[keyof typeof DialogActionType];
|
|
1599
1714
|
/**
|
|
1600
1715
|
* @public
|
|
1601
1716
|
* <p> Defines the action that the bot executes at runtime when the
|
|
@@ -1618,11 +1733,16 @@ export interface DialogAction {
|
|
|
1618
1733
|
}
|
|
1619
1734
|
/**
|
|
1620
1735
|
* @public
|
|
1736
|
+
* @enum
|
|
1621
1737
|
*/
|
|
1622
|
-
export declare
|
|
1623
|
-
List
|
|
1624
|
-
Scalar
|
|
1625
|
-
}
|
|
1738
|
+
export declare const SlotShape: {
|
|
1739
|
+
readonly List: "List";
|
|
1740
|
+
readonly Scalar: "Scalar";
|
|
1741
|
+
};
|
|
1742
|
+
/**
|
|
1743
|
+
* @public
|
|
1744
|
+
*/
|
|
1745
|
+
export type SlotShape = (typeof SlotShape)[keyof typeof SlotShape];
|
|
1626
1746
|
/**
|
|
1627
1747
|
* @public
|
|
1628
1748
|
* <p>The value to set in a slot.</p>
|
|
@@ -2202,11 +2322,16 @@ export interface CreateBotVersionResponse {
|
|
|
2202
2322
|
}
|
|
2203
2323
|
/**
|
|
2204
2324
|
* @public
|
|
2325
|
+
* @enum
|
|
2205
2326
|
*/
|
|
2206
|
-
export declare
|
|
2207
|
-
LexJson
|
|
2208
|
-
TSV
|
|
2209
|
-
}
|
|
2327
|
+
export declare const ImportExportFileFormat: {
|
|
2328
|
+
readonly LexJson: "LexJson";
|
|
2329
|
+
readonly TSV: "TSV";
|
|
2330
|
+
};
|
|
2331
|
+
/**
|
|
2332
|
+
* @public
|
|
2333
|
+
*/
|
|
2334
|
+
export type ImportExportFileFormat = (typeof ImportExportFileFormat)[keyof typeof ImportExportFileFormat];
|
|
2210
2335
|
/**
|
|
2211
2336
|
* @public
|
|
2212
2337
|
* <p>Provides the parameters required for exporting a custom vocabulary.</p>
|
|
@@ -2267,13 +2392,18 @@ export interface CreateExportRequest {
|
|
|
2267
2392
|
}
|
|
2268
2393
|
/**
|
|
2269
2394
|
* @public
|
|
2395
|
+
* @enum
|
|
2270
2396
|
*/
|
|
2271
|
-
export declare
|
|
2272
|
-
Completed
|
|
2273
|
-
Deleting
|
|
2274
|
-
Failed
|
|
2275
|
-
InProgress
|
|
2276
|
-
}
|
|
2397
|
+
export declare const ExportStatus: {
|
|
2398
|
+
readonly Completed: "Completed";
|
|
2399
|
+
readonly Deleting: "Deleting";
|
|
2400
|
+
readonly Failed: "Failed";
|
|
2401
|
+
readonly InProgress: "InProgress";
|
|
2402
|
+
};
|
|
2403
|
+
/**
|
|
2404
|
+
* @public
|
|
2405
|
+
*/
|
|
2406
|
+
export type ExportStatus = (typeof ExportStatus)[keyof typeof ExportStatus];
|
|
2277
2407
|
/**
|
|
2278
2408
|
* @public
|
|
2279
2409
|
*/
|
|
@@ -2422,22 +2552,32 @@ export interface ElicitationCodeHookInvocationSetting {
|
|
|
2422
2552
|
}
|
|
2423
2553
|
/**
|
|
2424
2554
|
* @public
|
|
2555
|
+
* @enum
|
|
2425
2556
|
*/
|
|
2426
|
-
export declare
|
|
2427
|
-
Ordered
|
|
2428
|
-
Random
|
|
2429
|
-
}
|
|
2557
|
+
export declare const MessageSelectionStrategy: {
|
|
2558
|
+
readonly Ordered: "Ordered";
|
|
2559
|
+
readonly Random: "Random";
|
|
2560
|
+
};
|
|
2430
2561
|
/**
|
|
2431
2562
|
* @public
|
|
2432
2563
|
*/
|
|
2433
|
-
export
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2564
|
+
export type MessageSelectionStrategy = (typeof MessageSelectionStrategy)[keyof typeof MessageSelectionStrategy];
|
|
2565
|
+
/**
|
|
2566
|
+
* @public
|
|
2567
|
+
* @enum
|
|
2568
|
+
*/
|
|
2569
|
+
export declare const PromptAttempt: {
|
|
2570
|
+
readonly Initial: "Initial";
|
|
2571
|
+
readonly Retry1: "Retry1";
|
|
2572
|
+
readonly Retry2: "Retry2";
|
|
2573
|
+
readonly Retry3: "Retry3";
|
|
2574
|
+
readonly Retry4: "Retry4";
|
|
2575
|
+
readonly Retry5: "Retry5";
|
|
2576
|
+
};
|
|
2577
|
+
/**
|
|
2578
|
+
* @public
|
|
2579
|
+
*/
|
|
2580
|
+
export type PromptAttempt = (typeof PromptAttempt)[keyof typeof PromptAttempt];
|
|
2441
2581
|
/**
|
|
2442
2582
|
* @public
|
|
2443
2583
|
* <p>Specifies the text input specifications.</p>
|
|
@@ -2601,11 +2741,16 @@ export interface CreateResourcePolicyResponse {
|
|
|
2601
2741
|
}
|
|
2602
2742
|
/**
|
|
2603
2743
|
* @public
|
|
2744
|
+
* @enum
|
|
2604
2745
|
*/
|
|
2605
|
-
export declare
|
|
2606
|
-
Allow
|
|
2607
|
-
Deny
|
|
2608
|
-
}
|
|
2746
|
+
export declare const Effect: {
|
|
2747
|
+
readonly Allow: "Allow";
|
|
2748
|
+
readonly Deny: "Deny";
|
|
2749
|
+
};
|
|
2750
|
+
/**
|
|
2751
|
+
* @public
|
|
2752
|
+
*/
|
|
2753
|
+
export type Effect = (typeof Effect)[keyof typeof Effect];
|
|
2609
2754
|
/**
|
|
2610
2755
|
* @public
|
|
2611
2756
|
* <p>The IAM principal that you allowing or denying access to an Amazon Lex
|
|
@@ -2711,11 +2856,16 @@ export interface MultipleValuesSetting {
|
|
|
2711
2856
|
}
|
|
2712
2857
|
/**
|
|
2713
2858
|
* @public
|
|
2859
|
+
* @enum
|
|
2714
2860
|
*/
|
|
2715
|
-
export declare
|
|
2716
|
-
DefaultObfuscation
|
|
2717
|
-
None
|
|
2718
|
-
}
|
|
2861
|
+
export declare const ObfuscationSettingType: {
|
|
2862
|
+
readonly DefaultObfuscation: "DefaultObfuscation";
|
|
2863
|
+
readonly None: "None";
|
|
2864
|
+
};
|
|
2865
|
+
/**
|
|
2866
|
+
* @public
|
|
2867
|
+
*/
|
|
2868
|
+
export type ObfuscationSettingType = (typeof ObfuscationSettingType)[keyof typeof ObfuscationSettingType];
|
|
2719
2869
|
/**
|
|
2720
2870
|
* @public
|
|
2721
2871
|
* <p>Determines whether Amazon Lex obscures slot values in conversation logs.
|
|
@@ -2873,11 +3023,16 @@ export interface SubSlotSetting {
|
|
|
2873
3023
|
}
|
|
2874
3024
|
/**
|
|
2875
3025
|
* @public
|
|
3026
|
+
* @enum
|
|
2876
3027
|
*/
|
|
2877
|
-
export declare
|
|
2878
|
-
Optional
|
|
2879
|
-
Required
|
|
2880
|
-
}
|
|
3028
|
+
export declare const SlotConstraint: {
|
|
3029
|
+
readonly Optional: "Optional";
|
|
3030
|
+
readonly Required: "Required";
|
|
3031
|
+
};
|
|
3032
|
+
/**
|
|
3033
|
+
* @public
|
|
3034
|
+
*/
|
|
3035
|
+
export type SlotConstraint = (typeof SlotConstraint)[keyof typeof SlotConstraint];
|
|
2881
3036
|
/**
|
|
2882
3037
|
* @public
|
|
2883
3038
|
* <p>Describes the Amazon S3 bucket name and location for the grammar
|
|
@@ -2984,12 +3139,17 @@ export interface SlotValueRegexFilter {
|
|
|
2984
3139
|
}
|
|
2985
3140
|
/**
|
|
2986
3141
|
* @public
|
|
3142
|
+
* @enum
|
|
2987
3143
|
*/
|
|
2988
|
-
export declare
|
|
2989
|
-
Concatenation
|
|
2990
|
-
OriginalValue
|
|
2991
|
-
TopResolution
|
|
2992
|
-
}
|
|
3144
|
+
export declare const SlotValueResolutionStrategy: {
|
|
3145
|
+
readonly Concatenation: "Concatenation";
|
|
3146
|
+
readonly OriginalValue: "OriginalValue";
|
|
3147
|
+
readonly TopResolution: "TopResolution";
|
|
3148
|
+
};
|
|
3149
|
+
/**
|
|
3150
|
+
* @public
|
|
3151
|
+
*/
|
|
3152
|
+
export type SlotValueResolutionStrategy = (typeof SlotValueResolutionStrategy)[keyof typeof SlotValueResolutionStrategy];
|
|
2993
3153
|
/**
|
|
2994
3154
|
* @public
|
|
2995
3155
|
* <p>Contains settings used by Amazon Lex to select a slot value.</p>
|
|
@@ -3199,14 +3359,19 @@ export interface CustomVocabularyImportSpecification {
|
|
|
3199
3359
|
}
|
|
3200
3360
|
/**
|
|
3201
3361
|
* @public
|
|
3362
|
+
* @enum
|
|
3202
3363
|
*/
|
|
3203
|
-
export declare
|
|
3204
|
-
Creating
|
|
3205
|
-
Deleting
|
|
3206
|
-
Exporting
|
|
3207
|
-
Importing
|
|
3208
|
-
Ready
|
|
3209
|
-
}
|
|
3364
|
+
export declare const CustomVocabularyStatus: {
|
|
3365
|
+
readonly Creating: "Creating";
|
|
3366
|
+
readonly Deleting: "Deleting";
|
|
3367
|
+
readonly Exporting: "Exporting";
|
|
3368
|
+
readonly Importing: "Importing";
|
|
3369
|
+
readonly Ready: "Ready";
|
|
3370
|
+
};
|
|
3371
|
+
/**
|
|
3372
|
+
* @public
|
|
3373
|
+
*/
|
|
3374
|
+
export type CustomVocabularyStatus = (typeof CustomVocabularyStatus)[keyof typeof CustomVocabularyStatus];
|
|
3210
3375
|
/**
|
|
3211
3376
|
* @public
|
|
3212
3377
|
* <p>The object used for specifying the data range that the customer
|
|
@@ -3461,13 +3626,18 @@ export interface DeleteImportRequest {
|
|
|
3461
3626
|
}
|
|
3462
3627
|
/**
|
|
3463
3628
|
* @public
|
|
3629
|
+
* @enum
|
|
3464
3630
|
*/
|
|
3465
|
-
export declare
|
|
3466
|
-
Completed
|
|
3467
|
-
Deleting
|
|
3468
|
-
Failed
|
|
3469
|
-
InProgress
|
|
3470
|
-
}
|
|
3631
|
+
export declare const ImportStatus: {
|
|
3632
|
+
readonly Completed: "Completed";
|
|
3633
|
+
readonly Deleting: "Deleting";
|
|
3634
|
+
readonly Failed: "Failed";
|
|
3635
|
+
readonly InProgress: "InProgress";
|
|
3636
|
+
};
|
|
3637
|
+
/**
|
|
3638
|
+
* @public
|
|
3639
|
+
*/
|
|
3640
|
+
export type ImportStatus = (typeof ImportStatus)[keyof typeof ImportStatus];
|
|
3471
3641
|
/**
|
|
3472
3642
|
* @public
|
|
3473
3643
|
*/
|
|
@@ -4013,10 +4183,15 @@ export interface TranscriptFilter {
|
|
|
4013
4183
|
}
|
|
4014
4184
|
/**
|
|
4015
4185
|
* @public
|
|
4186
|
+
* @enum
|
|
4016
4187
|
*/
|
|
4017
|
-
export declare
|
|
4018
|
-
Lex
|
|
4019
|
-
}
|
|
4188
|
+
export declare const TranscriptFormat: {
|
|
4189
|
+
readonly Lex: "Lex";
|
|
4190
|
+
};
|
|
4191
|
+
/**
|
|
4192
|
+
* @public
|
|
4193
|
+
*/
|
|
4194
|
+
export type TranscriptFormat = (typeof TranscriptFormat)[keyof typeof TranscriptFormat];
|
|
4020
4195
|
/**
|
|
4021
4196
|
* @public
|
|
4022
4197
|
* <p>The object representing the Amazon S3 bucket containing the transcript,
|
|
@@ -4313,12 +4488,17 @@ export interface DescribeImportRequest {
|
|
|
4313
4488
|
}
|
|
4314
4489
|
/**
|
|
4315
4490
|
* @public
|
|
4491
|
+
* @enum
|
|
4316
4492
|
*/
|
|
4317
|
-
export declare
|
|
4318
|
-
Append
|
|
4319
|
-
FailOnConflict
|
|
4320
|
-
Overwrite
|
|
4321
|
-
}
|
|
4493
|
+
export declare const MergeStrategy: {
|
|
4494
|
+
readonly Append: "Append";
|
|
4495
|
+
readonly FailOnConflict: "FailOnConflict";
|
|
4496
|
+
readonly Overwrite: "Overwrite";
|
|
4497
|
+
};
|
|
4498
|
+
/**
|
|
4499
|
+
* @public
|
|
4500
|
+
*/
|
|
4501
|
+
export type MergeStrategy = (typeof MergeStrategy)[keyof typeof MergeStrategy];
|
|
4322
4502
|
/**
|
|
4323
4503
|
* @public
|
|
4324
4504
|
* <p>Provides information about the bot or bot locale that you want to
|
|
@@ -4573,17 +4753,27 @@ export interface DescribeSlotTypeResponse {
|
|
|
4573
4753
|
}
|
|
4574
4754
|
/**
|
|
4575
4755
|
* @public
|
|
4756
|
+
* @enum
|
|
4576
4757
|
*/
|
|
4577
|
-
export declare
|
|
4578
|
-
ExportResourceType
|
|
4579
|
-
}
|
|
4758
|
+
export declare const ExportFilterName: {
|
|
4759
|
+
readonly ExportResourceType: "ExportResourceType";
|
|
4760
|
+
};
|
|
4580
4761
|
/**
|
|
4581
4762
|
* @public
|
|
4582
4763
|
*/
|
|
4583
|
-
export
|
|
4584
|
-
|
|
4585
|
-
|
|
4586
|
-
|
|
4764
|
+
export type ExportFilterName = (typeof ExportFilterName)[keyof typeof ExportFilterName];
|
|
4765
|
+
/**
|
|
4766
|
+
* @public
|
|
4767
|
+
* @enum
|
|
4768
|
+
*/
|
|
4769
|
+
export declare const ExportFilterOperator: {
|
|
4770
|
+
readonly Contains: "CO";
|
|
4771
|
+
readonly Equals: "EQ";
|
|
4772
|
+
};
|
|
4773
|
+
/**
|
|
4774
|
+
* @public
|
|
4775
|
+
*/
|
|
4776
|
+
export type ExportFilterOperator = (typeof ExportFilterOperator)[keyof typeof ExportFilterOperator];
|
|
4587
4777
|
/**
|
|
4588
4778
|
* @public
|
|
4589
4779
|
* <p>Filters the response form the <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_ListExports.html">ListExports</a> operation</p>
|
|
@@ -4610,10 +4800,15 @@ export interface ExportFilter {
|
|
|
4610
4800
|
}
|
|
4611
4801
|
/**
|
|
4612
4802
|
* @public
|
|
4803
|
+
* @enum
|
|
4613
4804
|
*/
|
|
4614
|
-
export declare
|
|
4615
|
-
LastUpdatedDateTime
|
|
4616
|
-
}
|
|
4805
|
+
export declare const ExportSortAttribute: {
|
|
4806
|
+
readonly LastUpdatedDateTime: "LastUpdatedDateTime";
|
|
4807
|
+
};
|
|
4808
|
+
/**
|
|
4809
|
+
* @public
|
|
4810
|
+
*/
|
|
4811
|
+
export type ExportSortAttribute = (typeof ExportSortAttribute)[keyof typeof ExportSortAttribute];
|
|
4617
4812
|
/**
|
|
4618
4813
|
* @public
|
|
4619
4814
|
* <p>Provides information about sorting a list of exports.</p>
|
|
@@ -4662,17 +4857,27 @@ export interface ExportSummary {
|
|
|
4662
4857
|
}
|
|
4663
4858
|
/**
|
|
4664
4859
|
* @public
|
|
4860
|
+
* @enum
|
|
4665
4861
|
*/
|
|
4666
|
-
export declare
|
|
4667
|
-
ImportResourceType
|
|
4668
|
-
}
|
|
4862
|
+
export declare const ImportFilterName: {
|
|
4863
|
+
readonly ImportResourceType: "ImportResourceType";
|
|
4864
|
+
};
|
|
4669
4865
|
/**
|
|
4670
4866
|
* @public
|
|
4671
4867
|
*/
|
|
4672
|
-
export
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4868
|
+
export type ImportFilterName = (typeof ImportFilterName)[keyof typeof ImportFilterName];
|
|
4869
|
+
/**
|
|
4870
|
+
* @public
|
|
4871
|
+
* @enum
|
|
4872
|
+
*/
|
|
4873
|
+
export declare const ImportFilterOperator: {
|
|
4874
|
+
readonly Contains: "CO";
|
|
4875
|
+
readonly Equals: "EQ";
|
|
4876
|
+
};
|
|
4877
|
+
/**
|
|
4878
|
+
* @public
|
|
4879
|
+
*/
|
|
4880
|
+
export type ImportFilterOperator = (typeof ImportFilterOperator)[keyof typeof ImportFilterOperator];
|
|
4676
4881
|
/**
|
|
4677
4882
|
* @public
|
|
4678
4883
|
* <p>Filters the response from the <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_ListImports.html">ListImports</a> operation.</p>
|
|
@@ -4699,18 +4904,28 @@ export interface ImportFilter {
|
|
|
4699
4904
|
}
|
|
4700
4905
|
/**
|
|
4701
4906
|
* @public
|
|
4907
|
+
* @enum
|
|
4702
4908
|
*/
|
|
4703
|
-
export declare
|
|
4704
|
-
Bot
|
|
4705
|
-
BotLocale
|
|
4706
|
-
CustomVocabulary
|
|
4707
|
-
}
|
|
4909
|
+
export declare const ImportResourceType: {
|
|
4910
|
+
readonly Bot: "Bot";
|
|
4911
|
+
readonly BotLocale: "BotLocale";
|
|
4912
|
+
readonly CustomVocabulary: "CustomVocabulary";
|
|
4913
|
+
};
|
|
4708
4914
|
/**
|
|
4709
4915
|
* @public
|
|
4710
4916
|
*/
|
|
4711
|
-
export
|
|
4712
|
-
|
|
4713
|
-
|
|
4917
|
+
export type ImportResourceType = (typeof ImportResourceType)[keyof typeof ImportResourceType];
|
|
4918
|
+
/**
|
|
4919
|
+
* @public
|
|
4920
|
+
* @enum
|
|
4921
|
+
*/
|
|
4922
|
+
export declare const ImportSortAttribute: {
|
|
4923
|
+
readonly LastUpdatedDateTime: "LastUpdatedDateTime";
|
|
4924
|
+
};
|
|
4925
|
+
/**
|
|
4926
|
+
* @public
|
|
4927
|
+
*/
|
|
4928
|
+
export type ImportSortAttribute = (typeof ImportSortAttribute)[keyof typeof ImportSortAttribute];
|
|
4714
4929
|
/**
|
|
4715
4930
|
* @public
|
|
4716
4931
|
* <p>Provides information for sorting a list of imports.</p>
|
|
@@ -4769,17 +4984,27 @@ export interface ImportSummary {
|
|
|
4769
4984
|
}
|
|
4770
4985
|
/**
|
|
4771
4986
|
* @public
|
|
4987
|
+
* @enum
|
|
4772
4988
|
*/
|
|
4773
|
-
export declare
|
|
4774
|
-
IntentName
|
|
4775
|
-
}
|
|
4989
|
+
export declare const IntentFilterName: {
|
|
4990
|
+
readonly IntentName: "IntentName";
|
|
4991
|
+
};
|
|
4776
4992
|
/**
|
|
4777
4993
|
* @public
|
|
4778
4994
|
*/
|
|
4779
|
-
export
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4995
|
+
export type IntentFilterName = (typeof IntentFilterName)[keyof typeof IntentFilterName];
|
|
4996
|
+
/**
|
|
4997
|
+
* @public
|
|
4998
|
+
* @enum
|
|
4999
|
+
*/
|
|
5000
|
+
export declare const IntentFilterOperator: {
|
|
5001
|
+
readonly Contains: "CO";
|
|
5002
|
+
readonly Equals: "EQ";
|
|
5003
|
+
};
|
|
5004
|
+
/**
|
|
5005
|
+
* @public
|
|
5006
|
+
*/
|
|
5007
|
+
export type IntentFilterOperator = (typeof IntentFilterOperator)[keyof typeof IntentFilterOperator];
|
|
4783
5008
|
/**
|
|
4784
5009
|
* @public
|
|
4785
5010
|
* <p>Filters the response from the <code>ListIntents</code>
|
|
@@ -4805,11 +5030,16 @@ export interface IntentFilter {
|
|
|
4805
5030
|
}
|
|
4806
5031
|
/**
|
|
4807
5032
|
* @public
|
|
5033
|
+
* @enum
|
|
4808
5034
|
*/
|
|
4809
|
-
export declare
|
|
4810
|
-
IntentName
|
|
4811
|
-
LastUpdatedDateTime
|
|
4812
|
-
}
|
|
5035
|
+
export declare const IntentSortAttribute: {
|
|
5036
|
+
readonly IntentName: "IntentName";
|
|
5037
|
+
readonly LastUpdatedDateTime: "LastUpdatedDateTime";
|
|
5038
|
+
};
|
|
5039
|
+
/**
|
|
5040
|
+
* @public
|
|
5041
|
+
*/
|
|
5042
|
+
export type IntentSortAttribute = (typeof IntentSortAttribute)[keyof typeof IntentSortAttribute];
|
|
4813
5043
|
/**
|
|
4814
5044
|
* @public
|
|
4815
5045
|
* <p>Specifies attributes for sorting a list of intents.</p>
|
|
@@ -4868,12 +5098,17 @@ export interface IntentSummary {
|
|
|
4868
5098
|
}
|
|
4869
5099
|
/**
|
|
4870
5100
|
* @public
|
|
5101
|
+
* @enum
|
|
4871
5102
|
*/
|
|
4872
|
-
export declare
|
|
4873
|
-
Days
|
|
4874
|
-
Hours
|
|
4875
|
-
Weeks
|
|
4876
|
-
}
|
|
5103
|
+
export declare const TimeDimension: {
|
|
5104
|
+
readonly Days: "Days";
|
|
5105
|
+
readonly Hours: "Hours";
|
|
5106
|
+
readonly Weeks: "Weeks";
|
|
5107
|
+
};
|
|
5108
|
+
/**
|
|
5109
|
+
* @public
|
|
5110
|
+
*/
|
|
5111
|
+
export type TimeDimension = (typeof TimeDimension)[keyof typeof TimeDimension];
|
|
4877
5112
|
/**
|
|
4878
5113
|
* @public
|
|
4879
5114
|
* <p>Specifies the time window that utterance statistics are returned
|
|
@@ -5894,17 +6129,27 @@ export interface ListRecommendedIntentsResponse {
|
|
|
5894
6129
|
}
|
|
5895
6130
|
/**
|
|
5896
6131
|
* @public
|
|
6132
|
+
* @enum
|
|
5897
6133
|
*/
|
|
5898
|
-
export declare
|
|
5899
|
-
SlotName
|
|
5900
|
-
}
|
|
6134
|
+
export declare const SlotFilterName: {
|
|
6135
|
+
readonly SlotName: "SlotName";
|
|
6136
|
+
};
|
|
5901
6137
|
/**
|
|
5902
6138
|
* @public
|
|
5903
6139
|
*/
|
|
5904
|
-
export
|
|
5905
|
-
|
|
5906
|
-
|
|
5907
|
-
|
|
6140
|
+
export type SlotFilterName = (typeof SlotFilterName)[keyof typeof SlotFilterName];
|
|
6141
|
+
/**
|
|
6142
|
+
* @public
|
|
6143
|
+
* @enum
|
|
6144
|
+
*/
|
|
6145
|
+
export declare const SlotFilterOperator: {
|
|
6146
|
+
readonly Contains: "CO";
|
|
6147
|
+
readonly Equals: "EQ";
|
|
6148
|
+
};
|
|
6149
|
+
/**
|
|
6150
|
+
* @public
|
|
6151
|
+
*/
|
|
6152
|
+
export type SlotFilterOperator = (typeof SlotFilterOperator)[keyof typeof SlotFilterOperator];
|
|
5908
6153
|
/**
|
|
5909
6154
|
* @public
|
|
5910
6155
|
* <p>Filters the response from the <code>ListSlots</code>
|
|
@@ -5930,11 +6175,16 @@ export interface SlotFilter {
|
|
|
5930
6175
|
}
|
|
5931
6176
|
/**
|
|
5932
6177
|
* @public
|
|
6178
|
+
* @enum
|
|
5933
6179
|
*/
|
|
5934
|
-
export declare
|
|
5935
|
-
LastUpdatedDateTime
|
|
5936
|
-
SlotName
|
|
5937
|
-
}
|
|
6180
|
+
export declare const SlotSortAttribute: {
|
|
6181
|
+
readonly LastUpdatedDateTime: "LastUpdatedDateTime";
|
|
6182
|
+
readonly SlotName: "SlotName";
|
|
6183
|
+
};
|
|
6184
|
+
/**
|
|
6185
|
+
* @public
|
|
6186
|
+
*/
|
|
6187
|
+
export type SlotSortAttribute = (typeof SlotSortAttribute)[keyof typeof SlotSortAttribute];
|
|
5938
6188
|
/**
|
|
5939
6189
|
* @public
|
|
5940
6190
|
* <p>Specifies attributes for sorting a list of bots.</p>
|
|
@@ -6078,18 +6328,28 @@ export interface ListSlotsResponse {
|
|
|
6078
6328
|
}
|
|
6079
6329
|
/**
|
|
6080
6330
|
* @public
|
|
6331
|
+
* @enum
|
|
6081
6332
|
*/
|
|
6082
|
-
export declare
|
|
6083
|
-
ExternalSourceType
|
|
6084
|
-
SlotTypeName
|
|
6085
|
-
}
|
|
6333
|
+
export declare const SlotTypeFilterName: {
|
|
6334
|
+
readonly ExternalSourceType: "ExternalSourceType";
|
|
6335
|
+
readonly SlotTypeName: "SlotTypeName";
|
|
6336
|
+
};
|
|
6086
6337
|
/**
|
|
6087
6338
|
* @public
|
|
6088
6339
|
*/
|
|
6089
|
-
export
|
|
6090
|
-
|
|
6091
|
-
|
|
6092
|
-
|
|
6340
|
+
export type SlotTypeFilterName = (typeof SlotTypeFilterName)[keyof typeof SlotTypeFilterName];
|
|
6341
|
+
/**
|
|
6342
|
+
* @public
|
|
6343
|
+
* @enum
|
|
6344
|
+
*/
|
|
6345
|
+
export declare const SlotTypeFilterOperator: {
|
|
6346
|
+
readonly Contains: "CO";
|
|
6347
|
+
readonly Equals: "EQ";
|
|
6348
|
+
};
|
|
6349
|
+
/**
|
|
6350
|
+
* @public
|
|
6351
|
+
*/
|
|
6352
|
+
export type SlotTypeFilterOperator = (typeof SlotTypeFilterOperator)[keyof typeof SlotTypeFilterOperator];
|
|
6093
6353
|
/**
|
|
6094
6354
|
* @public
|
|
6095
6355
|
* <p>Filters the response from the <code>ListSlotTypes</code>
|
|
@@ -6115,11 +6375,16 @@ export interface SlotTypeFilter {
|
|
|
6115
6375
|
}
|
|
6116
6376
|
/**
|
|
6117
6377
|
* @public
|
|
6378
|
+
* @enum
|
|
6118
6379
|
*/
|
|
6119
|
-
export declare
|
|
6120
|
-
LastUpdatedDateTime
|
|
6121
|
-
SlotTypeName
|
|
6122
|
-
}
|
|
6380
|
+
export declare const SlotTypeSortAttribute: {
|
|
6381
|
+
readonly LastUpdatedDateTime: "LastUpdatedDateTime";
|
|
6382
|
+
readonly SlotTypeName: "SlotTypeName";
|
|
6383
|
+
};
|
|
6384
|
+
/**
|
|
6385
|
+
* @public
|
|
6386
|
+
*/
|
|
6387
|
+
export type SlotTypeSortAttribute = (typeof SlotTypeSortAttribute)[keyof typeof SlotTypeSortAttribute];
|
|
6123
6388
|
/**
|
|
6124
6389
|
* @public
|
|
6125
6390
|
* <p>Specifies attributes for sorting a list of slot types.</p>
|
|
@@ -6184,13 +6449,18 @@ export interface ListSlotTypesRequest {
|
|
|
6184
6449
|
}
|
|
6185
6450
|
/**
|
|
6186
6451
|
* @public
|
|
6452
|
+
* @enum
|
|
6187
6453
|
*/
|
|
6188
|
-
export declare
|
|
6189
|
-
Composite
|
|
6190
|
-
Custom
|
|
6191
|
-
Extended
|
|
6192
|
-
ExternalGrammar
|
|
6193
|
-
}
|
|
6454
|
+
export declare const SlotTypeCategory: {
|
|
6455
|
+
readonly Composite: "Composite";
|
|
6456
|
+
readonly Custom: "Custom";
|
|
6457
|
+
readonly Extended: "Extended";
|
|
6458
|
+
readonly ExternalGrammar: "ExternalGrammar";
|
|
6459
|
+
};
|
|
6460
|
+
/**
|
|
6461
|
+
* @public
|
|
6462
|
+
*/
|
|
6463
|
+
export type SlotTypeCategory = (typeof SlotTypeCategory)[keyof typeof SlotTypeCategory];
|
|
6194
6464
|
/**
|
|
6195
6465
|
* @public
|
|
6196
6466
|
* <p>Provides summary information about a slot type.</p>
|
|
@@ -6296,11 +6566,16 @@ export interface ListTagsForResourceResponse {
|
|
|
6296
6566
|
}
|
|
6297
6567
|
/**
|
|
6298
6568
|
* @public
|
|
6569
|
+
* @enum
|
|
6299
6570
|
*/
|
|
6300
|
-
export declare
|
|
6301
|
-
Ascending
|
|
6302
|
-
Descending
|
|
6303
|
-
}
|
|
6571
|
+
export declare const SearchOrder: {
|
|
6572
|
+
readonly Ascending: "Ascending";
|
|
6573
|
+
readonly Descending: "Descending";
|
|
6574
|
+
};
|
|
6575
|
+
/**
|
|
6576
|
+
* @public
|
|
6577
|
+
*/
|
|
6578
|
+
export type SearchOrder = (typeof SearchOrder)[keyof typeof SearchOrder];
|
|
6304
6579
|
/**
|
|
6305
6580
|
* @public
|
|
6306
6581
|
*/
|