@aws-sdk/client-lex-model-building-service 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 +120 -144
- package/dist-es/models/models_0.js +120 -144
- package/dist-types/models/models_0.d.ts +240 -120
- package/dist-types/ts3.4/models/models_0.d.ts +153 -120
- package/package.json +34 -34
|
@@ -61,12 +61,17 @@ export interface CreateBotVersionRequest {
|
|
|
61
61
|
}
|
|
62
62
|
/**
|
|
63
63
|
* @public
|
|
64
|
+
* @enum
|
|
64
65
|
*/
|
|
65
|
-
export declare
|
|
66
|
-
CUSTOM_PAYLOAD
|
|
67
|
-
PLAIN_TEXT
|
|
68
|
-
SSML
|
|
69
|
-
}
|
|
66
|
+
export declare const ContentType: {
|
|
67
|
+
readonly CUSTOM_PAYLOAD: "CustomPayload";
|
|
68
|
+
readonly PLAIN_TEXT: "PlainText";
|
|
69
|
+
readonly SSML: "SSML";
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export type ContentType = (typeof ContentType)[keyof typeof ContentType];
|
|
70
75
|
/**
|
|
71
76
|
* @public
|
|
72
77
|
* <p>The message object that provides the message text and its
|
|
@@ -147,32 +152,42 @@ export interface Intent {
|
|
|
147
152
|
}
|
|
148
153
|
/**
|
|
149
154
|
* @public
|
|
155
|
+
* @enum
|
|
150
156
|
*/
|
|
151
|
-
export declare
|
|
152
|
-
DE_DE
|
|
153
|
-
EN_AU
|
|
154
|
-
EN_GB
|
|
155
|
-
EN_IN
|
|
156
|
-
EN_US
|
|
157
|
-
ES_419
|
|
158
|
-
ES_ES
|
|
159
|
-
ES_US
|
|
160
|
-
FR_CA
|
|
161
|
-
FR_FR
|
|
162
|
-
IT_IT
|
|
163
|
-
JA_JP
|
|
164
|
-
KO_KR
|
|
165
|
-
}
|
|
157
|
+
export declare const Locale: {
|
|
158
|
+
readonly DE_DE: "de-DE";
|
|
159
|
+
readonly EN_AU: "en-AU";
|
|
160
|
+
readonly EN_GB: "en-GB";
|
|
161
|
+
readonly EN_IN: "en-IN";
|
|
162
|
+
readonly EN_US: "en-US";
|
|
163
|
+
readonly ES_419: "es-419";
|
|
164
|
+
readonly ES_ES: "es-ES";
|
|
165
|
+
readonly ES_US: "es-US";
|
|
166
|
+
readonly FR_CA: "fr-CA";
|
|
167
|
+
readonly FR_FR: "fr-FR";
|
|
168
|
+
readonly IT_IT: "it-IT";
|
|
169
|
+
readonly JA_JP: "ja-JP";
|
|
170
|
+
readonly KO_KR: "ko-KR";
|
|
171
|
+
};
|
|
166
172
|
/**
|
|
167
173
|
* @public
|
|
168
174
|
*/
|
|
169
|
-
export
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
175
|
+
export type Locale = (typeof Locale)[keyof typeof Locale];
|
|
176
|
+
/**
|
|
177
|
+
* @public
|
|
178
|
+
* @enum
|
|
179
|
+
*/
|
|
180
|
+
export declare const Status: {
|
|
181
|
+
readonly BUILDING: "BUILDING";
|
|
182
|
+
readonly FAILED: "FAILED";
|
|
183
|
+
readonly NOT_BUILT: "NOT_BUILT";
|
|
184
|
+
readonly READY: "READY";
|
|
185
|
+
readonly READY_BASIC_TESTING: "READY_BASIC_TESTING";
|
|
186
|
+
};
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
176
191
|
/**
|
|
177
192
|
* @public
|
|
178
193
|
*/
|
|
@@ -395,11 +410,16 @@ export interface FollowUpPrompt {
|
|
|
395
410
|
}
|
|
396
411
|
/**
|
|
397
412
|
* @public
|
|
413
|
+
* @enum
|
|
398
414
|
*/
|
|
399
|
-
export declare
|
|
400
|
-
CODE_HOOK
|
|
401
|
-
RETURN_INTENT
|
|
402
|
-
}
|
|
415
|
+
export declare const FulfillmentActivityType: {
|
|
416
|
+
readonly CODE_HOOK: "CodeHook";
|
|
417
|
+
readonly RETURN_INTENT: "ReturnIntent";
|
|
418
|
+
};
|
|
419
|
+
/**
|
|
420
|
+
* @public
|
|
421
|
+
*/
|
|
422
|
+
export type FulfillmentActivityType = (typeof FulfillmentActivityType)[keyof typeof FulfillmentActivityType];
|
|
403
423
|
/**
|
|
404
424
|
* @public
|
|
405
425
|
* <p> Describes how the intent is fulfilled after the user provides all
|
|
@@ -555,18 +575,28 @@ export interface SlotDefaultValueSpec {
|
|
|
555
575
|
}
|
|
556
576
|
/**
|
|
557
577
|
* @public
|
|
578
|
+
* @enum
|
|
558
579
|
*/
|
|
559
|
-
export declare
|
|
560
|
-
DEFAULT_OBFUSCATION
|
|
561
|
-
NONE
|
|
562
|
-
}
|
|
580
|
+
export declare const ObfuscationSetting: {
|
|
581
|
+
readonly DEFAULT_OBFUSCATION: "DEFAULT_OBFUSCATION";
|
|
582
|
+
readonly NONE: "NONE";
|
|
583
|
+
};
|
|
563
584
|
/**
|
|
564
585
|
* @public
|
|
565
586
|
*/
|
|
566
|
-
export
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
587
|
+
export type ObfuscationSetting = (typeof ObfuscationSetting)[keyof typeof ObfuscationSetting];
|
|
588
|
+
/**
|
|
589
|
+
* @public
|
|
590
|
+
* @enum
|
|
591
|
+
*/
|
|
592
|
+
export declare const SlotConstraint: {
|
|
593
|
+
readonly OPTIONAL: "Optional";
|
|
594
|
+
readonly REQUIRED: "Required";
|
|
595
|
+
};
|
|
596
|
+
/**
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
export type SlotConstraint = (typeof SlotConstraint)[keyof typeof SlotConstraint];
|
|
570
600
|
/**
|
|
571
601
|
* @public
|
|
572
602
|
* <p>Identifies the version of a specific slot.</p>
|
|
@@ -820,11 +850,16 @@ export interface SlotTypeConfiguration {
|
|
|
820
850
|
}
|
|
821
851
|
/**
|
|
822
852
|
* @public
|
|
853
|
+
* @enum
|
|
823
854
|
*/
|
|
824
|
-
export declare
|
|
825
|
-
ORIGINAL_VALUE
|
|
826
|
-
TOP_RESOLUTION
|
|
827
|
-
}
|
|
855
|
+
export declare const SlotValueSelectionStrategy: {
|
|
856
|
+
readonly ORIGINAL_VALUE: "ORIGINAL_VALUE";
|
|
857
|
+
readonly TOP_RESOLUTION: "TOP_RESOLUTION";
|
|
858
|
+
};
|
|
859
|
+
/**
|
|
860
|
+
* @public
|
|
861
|
+
*/
|
|
862
|
+
export type SlotValueSelectionStrategy = (typeof SlotValueSelectionStrategy)[keyof typeof SlotValueSelectionStrategy];
|
|
828
863
|
/**
|
|
829
864
|
* @public
|
|
830
865
|
*/
|
|
@@ -904,13 +939,18 @@ export interface ResourceReference {
|
|
|
904
939
|
}
|
|
905
940
|
/**
|
|
906
941
|
* @public
|
|
942
|
+
* @enum
|
|
907
943
|
*/
|
|
908
|
-
export declare
|
|
909
|
-
BOT
|
|
910
|
-
BOTALIAS
|
|
911
|
-
BOTCHANNEL
|
|
912
|
-
INTENT
|
|
913
|
-
}
|
|
944
|
+
export declare const ReferenceType: {
|
|
945
|
+
readonly BOT: "Bot";
|
|
946
|
+
readonly BOTALIAS: "BotAlias";
|
|
947
|
+
readonly BOTCHANNEL: "BotChannel";
|
|
948
|
+
readonly INTENT: "Intent";
|
|
949
|
+
};
|
|
950
|
+
/**
|
|
951
|
+
* @public
|
|
952
|
+
*/
|
|
953
|
+
export type ReferenceType = (typeof ReferenceType)[keyof typeof ReferenceType];
|
|
914
954
|
/**
|
|
915
955
|
* @public
|
|
916
956
|
* <p>The resource that you are attempting to delete is referred to by
|
|
@@ -1219,18 +1259,28 @@ export interface GetBotAliasRequest {
|
|
|
1219
1259
|
}
|
|
1220
1260
|
/**
|
|
1221
1261
|
* @public
|
|
1262
|
+
* @enum
|
|
1222
1263
|
*/
|
|
1223
|
-
export declare
|
|
1224
|
-
CLOUDWATCH_LOGS
|
|
1225
|
-
S3
|
|
1226
|
-
}
|
|
1264
|
+
export declare const Destination: {
|
|
1265
|
+
readonly CLOUDWATCH_LOGS: "CLOUDWATCH_LOGS";
|
|
1266
|
+
readonly S3: "S3";
|
|
1267
|
+
};
|
|
1227
1268
|
/**
|
|
1228
1269
|
* @public
|
|
1229
1270
|
*/
|
|
1230
|
-
export
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1271
|
+
export type Destination = (typeof Destination)[keyof typeof Destination];
|
|
1272
|
+
/**
|
|
1273
|
+
* @public
|
|
1274
|
+
* @enum
|
|
1275
|
+
*/
|
|
1276
|
+
export declare const LogType: {
|
|
1277
|
+
readonly AUDIO: "AUDIO";
|
|
1278
|
+
readonly TEXT: "TEXT";
|
|
1279
|
+
};
|
|
1280
|
+
/**
|
|
1281
|
+
* @public
|
|
1282
|
+
*/
|
|
1283
|
+
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
1234
1284
|
/**
|
|
1235
1285
|
* @public
|
|
1236
1286
|
* <p>The settings for conversation logs.</p>
|
|
@@ -1423,21 +1473,31 @@ export interface GetBotChannelAssociationRequest {
|
|
|
1423
1473
|
}
|
|
1424
1474
|
/**
|
|
1425
1475
|
* @public
|
|
1476
|
+
* @enum
|
|
1426
1477
|
*/
|
|
1427
|
-
export declare
|
|
1428
|
-
CREATED
|
|
1429
|
-
FAILED
|
|
1430
|
-
IN_PROGRESS
|
|
1431
|
-
}
|
|
1478
|
+
export declare const ChannelStatus: {
|
|
1479
|
+
readonly CREATED: "CREATED";
|
|
1480
|
+
readonly FAILED: "FAILED";
|
|
1481
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1482
|
+
};
|
|
1432
1483
|
/**
|
|
1433
1484
|
* @public
|
|
1434
1485
|
*/
|
|
1435
|
-
export
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1486
|
+
export type ChannelStatus = (typeof ChannelStatus)[keyof typeof ChannelStatus];
|
|
1487
|
+
/**
|
|
1488
|
+
* @public
|
|
1489
|
+
* @enum
|
|
1490
|
+
*/
|
|
1491
|
+
export declare const ChannelType: {
|
|
1492
|
+
readonly FACEBOOK: "Facebook";
|
|
1493
|
+
readonly KIK: "Kik";
|
|
1494
|
+
readonly SLACK: "Slack";
|
|
1495
|
+
readonly TWILIO_SMS: "Twilio-Sms";
|
|
1496
|
+
};
|
|
1497
|
+
/**
|
|
1498
|
+
* @public
|
|
1499
|
+
*/
|
|
1500
|
+
export type ChannelType = (typeof ChannelType)[keyof typeof ChannelType];
|
|
1441
1501
|
/**
|
|
1442
1502
|
* @public
|
|
1443
1503
|
*/
|
|
@@ -1903,19 +1963,29 @@ export interface GetBuiltinSlotTypesResponse {
|
|
|
1903
1963
|
}
|
|
1904
1964
|
/**
|
|
1905
1965
|
* @public
|
|
1966
|
+
* @enum
|
|
1906
1967
|
*/
|
|
1907
|
-
export declare
|
|
1908
|
-
ALEXA_SKILLS_KIT
|
|
1909
|
-
LEX
|
|
1910
|
-
}
|
|
1968
|
+
export declare const ExportType: {
|
|
1969
|
+
readonly ALEXA_SKILLS_KIT: "ALEXA_SKILLS_KIT";
|
|
1970
|
+
readonly LEX: "LEX";
|
|
1971
|
+
};
|
|
1911
1972
|
/**
|
|
1912
1973
|
* @public
|
|
1913
1974
|
*/
|
|
1914
|
-
export
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1975
|
+
export type ExportType = (typeof ExportType)[keyof typeof ExportType];
|
|
1976
|
+
/**
|
|
1977
|
+
* @public
|
|
1978
|
+
* @enum
|
|
1979
|
+
*/
|
|
1980
|
+
export declare const ResourceType: {
|
|
1981
|
+
readonly BOT: "BOT";
|
|
1982
|
+
readonly INTENT: "INTENT";
|
|
1983
|
+
readonly SLOT_TYPE: "SLOT_TYPE";
|
|
1984
|
+
};
|
|
1985
|
+
/**
|
|
1986
|
+
* @public
|
|
1987
|
+
*/
|
|
1988
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
1919
1989
|
/**
|
|
1920
1990
|
* @public
|
|
1921
1991
|
*/
|
|
@@ -1939,12 +2009,17 @@ export interface GetExportRequest {
|
|
|
1939
2009
|
}
|
|
1940
2010
|
/**
|
|
1941
2011
|
* @public
|
|
2012
|
+
* @enum
|
|
1942
2013
|
*/
|
|
1943
|
-
export declare
|
|
1944
|
-
FAILED
|
|
1945
|
-
IN_PROGRESS
|
|
1946
|
-
READY
|
|
1947
|
-
}
|
|
2014
|
+
export declare const ExportStatus: {
|
|
2015
|
+
readonly FAILED: "FAILED";
|
|
2016
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2017
|
+
readonly READY: "READY";
|
|
2018
|
+
};
|
|
2019
|
+
/**
|
|
2020
|
+
* @public
|
|
2021
|
+
*/
|
|
2022
|
+
export type ExportStatus = (typeof ExportStatus)[keyof typeof ExportStatus];
|
|
1948
2023
|
/**
|
|
1949
2024
|
* @public
|
|
1950
2025
|
*/
|
|
@@ -2008,19 +2083,29 @@ export interface GetImportRequest {
|
|
|
2008
2083
|
}
|
|
2009
2084
|
/**
|
|
2010
2085
|
* @public
|
|
2086
|
+
* @enum
|
|
2011
2087
|
*/
|
|
2012
|
-
export declare
|
|
2013
|
-
COMPLETE
|
|
2014
|
-
FAILED
|
|
2015
|
-
IN_PROGRESS
|
|
2016
|
-
}
|
|
2088
|
+
export declare const ImportStatus: {
|
|
2089
|
+
readonly COMPLETE: "COMPLETE";
|
|
2090
|
+
readonly FAILED: "FAILED";
|
|
2091
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2092
|
+
};
|
|
2017
2093
|
/**
|
|
2018
2094
|
* @public
|
|
2019
2095
|
*/
|
|
2020
|
-
export
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2096
|
+
export type ImportStatus = (typeof ImportStatus)[keyof typeof ImportStatus];
|
|
2097
|
+
/**
|
|
2098
|
+
* @public
|
|
2099
|
+
* @enum
|
|
2100
|
+
*/
|
|
2101
|
+
export declare const MergeStrategy: {
|
|
2102
|
+
readonly FAIL_ON_CONFLICT: "FAIL_ON_CONFLICT";
|
|
2103
|
+
readonly OVERWRITE_LATEST: "OVERWRITE_LATEST";
|
|
2104
|
+
};
|
|
2105
|
+
/**
|
|
2106
|
+
* @public
|
|
2107
|
+
*/
|
|
2108
|
+
export type MergeStrategy = (typeof MergeStrategy)[keyof typeof MergeStrategy];
|
|
2024
2109
|
/**
|
|
2025
2110
|
* @public
|
|
2026
2111
|
*/
|
|
@@ -2281,11 +2366,16 @@ export interface GetMigrationRequest {
|
|
|
2281
2366
|
}
|
|
2282
2367
|
/**
|
|
2283
2368
|
* @public
|
|
2369
|
+
* @enum
|
|
2284
2370
|
*/
|
|
2285
|
-
export declare
|
|
2286
|
-
ERROR
|
|
2287
|
-
WARN
|
|
2288
|
-
}
|
|
2371
|
+
export declare const MigrationAlertType: {
|
|
2372
|
+
readonly ERROR: "ERROR";
|
|
2373
|
+
readonly WARN: "WARN";
|
|
2374
|
+
};
|
|
2375
|
+
/**
|
|
2376
|
+
* @public
|
|
2377
|
+
*/
|
|
2378
|
+
export type MigrationAlertType = (typeof MigrationAlertType)[keyof typeof MigrationAlertType];
|
|
2289
2379
|
/**
|
|
2290
2380
|
* @public
|
|
2291
2381
|
* <p>Provides information about alerts and warnings that Amazon Lex sends during
|
|
@@ -2326,19 +2416,29 @@ export interface MigrationAlert {
|
|
|
2326
2416
|
}
|
|
2327
2417
|
/**
|
|
2328
2418
|
* @public
|
|
2419
|
+
* @enum
|
|
2329
2420
|
*/
|
|
2330
|
-
export declare
|
|
2331
|
-
COMPLETED
|
|
2332
|
-
FAILED
|
|
2333
|
-
IN_PROGRESS
|
|
2334
|
-
}
|
|
2421
|
+
export declare const MigrationStatus: {
|
|
2422
|
+
readonly COMPLETED: "COMPLETED";
|
|
2423
|
+
readonly FAILED: "FAILED";
|
|
2424
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2425
|
+
};
|
|
2335
2426
|
/**
|
|
2336
2427
|
* @public
|
|
2337
2428
|
*/
|
|
2338
|
-
export
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2429
|
+
export type MigrationStatus = (typeof MigrationStatus)[keyof typeof MigrationStatus];
|
|
2430
|
+
/**
|
|
2431
|
+
* @public
|
|
2432
|
+
* @enum
|
|
2433
|
+
*/
|
|
2434
|
+
export declare const MigrationStrategy: {
|
|
2435
|
+
readonly CREATE_NEW: "CREATE_NEW";
|
|
2436
|
+
readonly UPDATE_EXISTING: "UPDATE_EXISTING";
|
|
2437
|
+
};
|
|
2438
|
+
/**
|
|
2439
|
+
* @public
|
|
2440
|
+
*/
|
|
2441
|
+
export type MigrationStrategy = (typeof MigrationStrategy)[keyof typeof MigrationStrategy];
|
|
2342
2442
|
/**
|
|
2343
2443
|
* @public
|
|
2344
2444
|
*/
|
|
@@ -2410,18 +2510,28 @@ export interface GetMigrationResponse {
|
|
|
2410
2510
|
}
|
|
2411
2511
|
/**
|
|
2412
2512
|
* @public
|
|
2513
|
+
* @enum
|
|
2413
2514
|
*/
|
|
2414
|
-
export declare
|
|
2415
|
-
MIGRATION_DATE_TIME
|
|
2416
|
-
V1_BOT_NAME
|
|
2417
|
-
}
|
|
2515
|
+
export declare const MigrationSortAttribute: {
|
|
2516
|
+
readonly MIGRATION_DATE_TIME: "MIGRATION_DATE_TIME";
|
|
2517
|
+
readonly V1_BOT_NAME: "V1_BOT_NAME";
|
|
2518
|
+
};
|
|
2418
2519
|
/**
|
|
2419
2520
|
* @public
|
|
2420
2521
|
*/
|
|
2421
|
-
export
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2522
|
+
export type MigrationSortAttribute = (typeof MigrationSortAttribute)[keyof typeof MigrationSortAttribute];
|
|
2523
|
+
/**
|
|
2524
|
+
* @public
|
|
2525
|
+
* @enum
|
|
2526
|
+
*/
|
|
2527
|
+
export declare const SortOrder: {
|
|
2528
|
+
readonly ASCENDING: "ASCENDING";
|
|
2529
|
+
readonly DESCENDING: "DESCENDING";
|
|
2530
|
+
};
|
|
2531
|
+
/**
|
|
2532
|
+
* @public
|
|
2533
|
+
*/
|
|
2534
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
2425
2535
|
/**
|
|
2426
2536
|
* @public
|
|
2427
2537
|
*/
|
|
@@ -2692,11 +2802,16 @@ export interface GetSlotTypeVersionsResponse {
|
|
|
2692
2802
|
}
|
|
2693
2803
|
/**
|
|
2694
2804
|
* @public
|
|
2805
|
+
* @enum
|
|
2695
2806
|
*/
|
|
2696
|
-
export declare
|
|
2697
|
-
DETECTED
|
|
2698
|
-
MISSED
|
|
2699
|
-
}
|
|
2807
|
+
export declare const StatusType: {
|
|
2808
|
+
readonly DETECTED: "Detected";
|
|
2809
|
+
readonly MISSED: "Missed";
|
|
2810
|
+
};
|
|
2811
|
+
/**
|
|
2812
|
+
* @public
|
|
2813
|
+
*/
|
|
2814
|
+
export type StatusType = (typeof StatusType)[keyof typeof StatusType];
|
|
2700
2815
|
/**
|
|
2701
2816
|
* @public
|
|
2702
2817
|
*/
|
|
@@ -2822,11 +2937,16 @@ export interface ListTagsForResourceResponse {
|
|
|
2822
2937
|
}
|
|
2823
2938
|
/**
|
|
2824
2939
|
* @public
|
|
2940
|
+
* @enum
|
|
2825
2941
|
*/
|
|
2826
|
-
export declare
|
|
2827
|
-
BUILD
|
|
2828
|
-
SAVE
|
|
2829
|
-
}
|
|
2942
|
+
export declare const ProcessBehavior: {
|
|
2943
|
+
readonly BUILD: "BUILD";
|
|
2944
|
+
readonly SAVE: "SAVE";
|
|
2945
|
+
};
|
|
2946
|
+
/**
|
|
2947
|
+
* @public
|
|
2948
|
+
*/
|
|
2949
|
+
export type ProcessBehavior = (typeof ProcessBehavior)[keyof typeof ProcessBehavior];
|
|
2830
2950
|
/**
|
|
2831
2951
|
* @public
|
|
2832
2952
|
*/
|