@aws-sdk/client-lex-models-v2 3.43.0 → 3.47.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.
Files changed (68) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/dist-cjs/LexModelsV2.js +90 -0
  3. package/dist-cjs/commands/DescribeBotRecommendationCommand.js +36 -0
  4. package/dist-cjs/commands/ListBotRecommendationsCommand.js +36 -0
  5. package/dist-cjs/commands/ListRecommendedIntentsCommand.js +36 -0
  6. package/dist-cjs/commands/SearchAssociatedTranscriptsCommand.js +36 -0
  7. package/dist-cjs/commands/StartBotRecommendationCommand.js +36 -0
  8. package/dist-cjs/commands/UpdateBotRecommendationCommand.js +36 -0
  9. package/dist-cjs/commands/index.js +6 -0
  10. package/dist-cjs/endpoints.js +1 -0
  11. package/dist-cjs/models/models_0.js +226 -47
  12. package/dist-cjs/pagination/ListBotRecommendationsPaginator.js +35 -0
  13. package/dist-cjs/pagination/ListRecommendedIntentsPaginator.js +35 -0
  14. package/dist-cjs/pagination/index.js +2 -0
  15. package/dist-cjs/protocols/Aws_restJson1.js +1529 -186
  16. package/dist-cjs/runtimeConfig.browser.js +7 -2
  17. package/dist-cjs/runtimeConfig.js +9 -3
  18. package/dist-es/LexModelsV2.js +90 -0
  19. package/dist-es/commands/DescribeBotRecommendationCommand.js +39 -0
  20. package/dist-es/commands/ListBotRecommendationsCommand.js +39 -0
  21. package/dist-es/commands/ListRecommendedIntentsCommand.js +39 -0
  22. package/dist-es/commands/SearchAssociatedTranscriptsCommand.js +39 -0
  23. package/dist-es/commands/StartBotRecommendationCommand.js +39 -0
  24. package/dist-es/commands/UpdateBotRecommendationCommand.js +39 -0
  25. package/dist-es/commands/index.js +6 -0
  26. package/dist-es/endpoints.js +1 -0
  27. package/dist-es/models/models_0.js +153 -28
  28. package/dist-es/pagination/ListBotRecommendationsPaginator.js +74 -0
  29. package/dist-es/pagination/ListRecommendedIntentsPaginator.js +74 -0
  30. package/dist-es/pagination/index.js +2 -0
  31. package/dist-es/protocols/Aws_restJson1.js +1541 -134
  32. package/dist-es/runtimeConfig.browser.js +12 -3
  33. package/dist-es/runtimeConfig.js +13 -6
  34. package/dist-types/LexModelsV2.d.ts +50 -0
  35. package/dist-types/LexModelsV2Client.d.ts +13 -3
  36. package/dist-types/commands/DescribeBotRecommendationCommand.d.ts +39 -0
  37. package/dist-types/commands/ListBotRecommendationsCommand.d.ts +36 -0
  38. package/dist-types/commands/ListRecommendedIntentsCommand.d.ts +36 -0
  39. package/dist-types/commands/SearchAssociatedTranscriptsCommand.d.ts +36 -0
  40. package/dist-types/commands/StartBotRecommendationCommand.d.ts +36 -0
  41. package/dist-types/commands/UpdateBotRecommendationCommand.d.ts +35 -0
  42. package/dist-types/commands/index.d.ts +6 -0
  43. package/dist-types/models/models_0.d.ts +1083 -109
  44. package/dist-types/pagination/ListBotRecommendationsPaginator.d.ts +4 -0
  45. package/dist-types/pagination/ListRecommendedIntentsPaginator.d.ts +4 -0
  46. package/dist-types/pagination/index.d.ts +2 -0
  47. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  48. package/dist-types/runtimeConfig.browser.d.ts +3 -2
  49. package/dist-types/runtimeConfig.d.ts +4 -3
  50. package/dist-types/runtimeConfig.native.d.ts +1 -0
  51. package/dist-types/ts3.4/LexModelsV2.d.ts +30 -0
  52. package/dist-types/ts3.4/LexModelsV2Client.d.ts +11 -3
  53. package/dist-types/ts3.4/commands/DescribeBotRecommendationCommand.d.ts +17 -0
  54. package/dist-types/ts3.4/commands/ListBotRecommendationsCommand.d.ts +17 -0
  55. package/dist-types/ts3.4/commands/ListRecommendedIntentsCommand.d.ts +17 -0
  56. package/dist-types/ts3.4/commands/SearchAssociatedTranscriptsCommand.d.ts +17 -0
  57. package/dist-types/ts3.4/commands/StartBotRecommendationCommand.d.ts +17 -0
  58. package/dist-types/ts3.4/commands/UpdateBotRecommendationCommand.d.ts +17 -0
  59. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +474 -30
  61. package/dist-types/ts3.4/pagination/ListBotRecommendationsPaginator.d.ts +4 -0
  62. package/dist-types/ts3.4/pagination/ListRecommendedIntentsPaginator.d.ts +4 -0
  63. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  64. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +18 -0
  65. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  66. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
  67. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  68. package/package.json +39 -46
@@ -58,6 +58,30 @@ export declare namespace AggregatedUtterancesSummary {
58
58
  const filterSensitiveLog: (obj: AggregatedUtterancesSummary) => any;
59
59
  }
60
60
 
61
+ export interface AssociatedTranscript {
62
+
63
+ transcript?: string;
64
+ }
65
+ export declare namespace AssociatedTranscript {
66
+
67
+ const filterSensitiveLog: (obj: AssociatedTranscript) => any;
68
+ }
69
+ export declare enum AssociatedTranscriptFilterName {
70
+ IntentId = "IntentId",
71
+ SlotTypeId = "SlotTypeId"
72
+ }
73
+
74
+ export interface AssociatedTranscriptFilter {
75
+
76
+ name: AssociatedTranscriptFilterName | string | undefined;
77
+
78
+ values: string[] | undefined;
79
+ }
80
+ export declare namespace AssociatedTranscriptFilter {
81
+
82
+ const filterSensitiveLog: (obj: AssociatedTranscriptFilter) => any;
83
+ }
84
+
61
85
  export interface S3BucketLogDestination {
62
86
 
63
87
  kmsKeyArn?: string;
@@ -322,6 +346,7 @@ export declare enum BotLocaleStatus {
322
346
  Failed = "Failed",
323
347
  Importing = "Importing",
324
348
  NotBuilt = "NotBuilt",
349
+ Processing = "Processing",
325
350
  ReadyExpressTesting = "ReadyExpressTesting"
326
351
  }
327
352
 
@@ -343,6 +368,72 @@ export declare namespace BotLocaleSummary {
343
368
 
344
369
  const filterSensitiveLog: (obj: BotLocaleSummary) => any;
345
370
  }
371
+
372
+ export interface IntentStatistics {
373
+
374
+ discoveredIntentCount?: number;
375
+ }
376
+ export declare namespace IntentStatistics {
377
+
378
+ const filterSensitiveLog: (obj: IntentStatistics) => any;
379
+ }
380
+
381
+ export interface SlotTypeStatistics {
382
+
383
+ discoveredSlotTypeCount?: number;
384
+ }
385
+ export declare namespace SlotTypeStatistics {
386
+
387
+ const filterSensitiveLog: (obj: SlotTypeStatistics) => any;
388
+ }
389
+
390
+ export interface BotRecommendationResultStatistics {
391
+
392
+ intents?: IntentStatistics;
393
+
394
+ slotTypes?: SlotTypeStatistics;
395
+ }
396
+ export declare namespace BotRecommendationResultStatistics {
397
+
398
+ const filterSensitiveLog: (obj: BotRecommendationResultStatistics) => any;
399
+ }
400
+
401
+ export interface BotRecommendationResults {
402
+
403
+ botLocaleExportUrl?: string;
404
+
405
+ associatedTranscriptsUrl?: string;
406
+
407
+ statistics?: BotRecommendationResultStatistics;
408
+ }
409
+ export declare namespace BotRecommendationResults {
410
+
411
+ const filterSensitiveLog: (obj: BotRecommendationResults) => any;
412
+ }
413
+ export declare enum BotRecommendationStatus {
414
+ Available = "Available",
415
+ Deleted = "Deleted",
416
+ Deleting = "Deleting",
417
+ Downloading = "Downloading",
418
+ Failed = "Failed",
419
+ Processing = "Processing",
420
+ Updating = "Updating"
421
+ }
422
+
423
+ export interface BotRecommendationSummary {
424
+
425
+ botRecommendationStatus: BotRecommendationStatus | string | undefined;
426
+
427
+ botRecommendationId: string | undefined;
428
+
429
+ creationDateTime?: Date;
430
+
431
+ lastUpdatedDateTime?: Date;
432
+ }
433
+ export declare namespace BotRecommendationSummary {
434
+
435
+ const filterSensitiveLog: (obj: BotRecommendationSummary) => any;
436
+ }
346
437
  export declare enum BotSortAttribute {
347
438
  BotName = "BotName"
348
439
  }
@@ -459,40 +550,24 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
459
550
  $fault: "client";
460
551
  message?: string;
461
552
  }
462
- export declare namespace ConflictException {
463
-
464
- const filterSensitiveLog: (obj: ConflictException) => any;
465
- }
466
553
 
467
554
  export interface InternalServerException extends __SmithyException, $MetadataBearer {
468
555
  name: "InternalServerException";
469
556
  $fault: "server";
470
557
  message?: string;
471
558
  }
472
- export declare namespace InternalServerException {
473
-
474
- const filterSensitiveLog: (obj: InternalServerException) => any;
475
- }
476
559
 
477
560
  export interface PreconditionFailedException extends __SmithyException, $MetadataBearer {
478
561
  name: "PreconditionFailedException";
479
562
  $fault: "client";
480
563
  message?: string;
481
564
  }
482
- export declare namespace PreconditionFailedException {
483
-
484
- const filterSensitiveLog: (obj: PreconditionFailedException) => any;
485
- }
486
565
 
487
566
  export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
488
567
  name: "ServiceQuotaExceededException";
489
568
  $fault: "client";
490
569
  message?: string;
491
570
  }
492
- export declare namespace ServiceQuotaExceededException {
493
-
494
- const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
495
- }
496
571
 
497
572
  export interface ThrottlingException extends __SmithyException, $MetadataBearer {
498
573
  name: "ThrottlingException";
@@ -500,20 +575,12 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
500
575
  retryAfterSeconds?: number;
501
576
  message?: string;
502
577
  }
503
- export declare namespace ThrottlingException {
504
-
505
- const filterSensitiveLog: (obj: ThrottlingException) => any;
506
- }
507
578
 
508
579
  export interface ValidationException extends __SmithyException, $MetadataBearer {
509
580
  name: "ValidationException";
510
581
  $fault: "client";
511
582
  message?: string;
512
583
  }
513
- export declare namespace ValidationException {
514
-
515
- const filterSensitiveLog: (obj: ValidationException) => any;
516
- }
517
584
  export declare enum BuiltInIntentSortAttribute {
518
585
  IntentSignature = "IntentSignature"
519
586
  }
@@ -868,10 +935,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
868
935
  $fault: "client";
869
936
  message?: string;
870
937
  }
871
- export declare namespace ResourceNotFoundException {
872
-
873
- const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
874
- }
875
938
 
876
939
  export interface DialogCodeHookSettings {
877
940
 
@@ -1397,6 +1460,37 @@ export declare namespace CreateSlotResponse {
1397
1460
  const filterSensitiveLog: (obj: CreateSlotResponse) => any;
1398
1461
  }
1399
1462
 
1463
+ export interface GrammarSlotTypeSource {
1464
+
1465
+ s3BucketName: string | undefined;
1466
+
1467
+ s3ObjectKey: string | undefined;
1468
+
1469
+ kmsKeyArn?: string;
1470
+ }
1471
+ export declare namespace GrammarSlotTypeSource {
1472
+
1473
+ const filterSensitiveLog: (obj: GrammarSlotTypeSource) => any;
1474
+ }
1475
+
1476
+ export interface GrammarSlotTypeSetting {
1477
+
1478
+ source?: GrammarSlotTypeSource;
1479
+ }
1480
+ export declare namespace GrammarSlotTypeSetting {
1481
+
1482
+ const filterSensitiveLog: (obj: GrammarSlotTypeSetting) => any;
1483
+ }
1484
+
1485
+ export interface ExternalSourceSetting {
1486
+
1487
+ grammarSlotTypeSetting?: GrammarSlotTypeSetting;
1488
+ }
1489
+ export declare namespace ExternalSourceSetting {
1490
+
1491
+ const filterSensitiveLog: (obj: ExternalSourceSetting) => any;
1492
+ }
1493
+
1400
1494
  export interface SampleValue {
1401
1495
 
1402
1496
  value: string | undefined;
@@ -1448,7 +1542,7 @@ export interface CreateSlotTypeRequest {
1448
1542
 
1449
1543
  slotTypeValues?: SlotTypeValue[];
1450
1544
 
1451
- valueSelectionSetting: SlotValueSelectionSetting | undefined;
1545
+ valueSelectionSetting?: SlotValueSelectionSetting;
1452
1546
 
1453
1547
  parentSlotTypeSignature?: string;
1454
1548
 
@@ -1457,6 +1551,8 @@ export interface CreateSlotTypeRequest {
1457
1551
  botVersion: string | undefined;
1458
1552
 
1459
1553
  localeId: string | undefined;
1554
+
1555
+ externalSourceSetting?: ExternalSourceSetting;
1460
1556
  }
1461
1557
  export declare namespace CreateSlotTypeRequest {
1462
1558
 
@@ -1483,6 +1579,8 @@ export interface CreateSlotTypeResponse {
1483
1579
  localeId?: string;
1484
1580
 
1485
1581
  creationDateTime?: Date;
1582
+
1583
+ externalSourceSetting?: ExternalSourceSetting;
1486
1584
  }
1487
1585
  export declare namespace CreateSlotTypeResponse {
1488
1586
 
@@ -1504,6 +1602,17 @@ export declare namespace CreateUploadUrlResponse {
1504
1602
 
1505
1603
  const filterSensitiveLog: (obj: CreateUploadUrlResponse) => any;
1506
1604
  }
1605
+
1606
+ export interface DateRangeFilter {
1607
+
1608
+ startDateTime: Date | undefined;
1609
+
1610
+ endDateTime: Date | undefined;
1611
+ }
1612
+ export declare namespace DateRangeFilter {
1613
+
1614
+ const filterSensitiveLog: (obj: DateRangeFilter) => any;
1615
+ }
1507
1616
  export interface DeleteBotRequest {
1508
1617
 
1509
1618
  botId: string | undefined;
@@ -1863,11 +1972,124 @@ export interface DescribeBotLocaleResponse {
1863
1972
  lastBuildSubmittedDateTime?: Date;
1864
1973
 
1865
1974
  botLocaleHistoryEvents?: BotLocaleHistoryEvent[];
1975
+
1976
+ recommendedActions?: string[];
1866
1977
  }
1867
1978
  export declare namespace DescribeBotLocaleResponse {
1868
1979
 
1869
1980
  const filterSensitiveLog: (obj: DescribeBotLocaleResponse) => any;
1870
1981
  }
1982
+ export interface DescribeBotRecommendationRequest {
1983
+
1984
+ botId: string | undefined;
1985
+
1986
+ botVersion: string | undefined;
1987
+
1988
+ localeId: string | undefined;
1989
+
1990
+ botRecommendationId: string | undefined;
1991
+ }
1992
+ export declare namespace DescribeBotRecommendationRequest {
1993
+
1994
+ const filterSensitiveLog: (obj: DescribeBotRecommendationRequest) => any;
1995
+ }
1996
+
1997
+ export interface EncryptionSetting {
1998
+
1999
+ kmsKeyArn?: string;
2000
+
2001
+ botLocaleExportPassword?: string;
2002
+
2003
+ associatedTranscriptsPassword?: string;
2004
+ }
2005
+ export declare namespace EncryptionSetting {
2006
+
2007
+ const filterSensitiveLog: (obj: EncryptionSetting) => any;
2008
+ }
2009
+
2010
+ export interface PathFormat {
2011
+
2012
+ objectPrefixes?: string[];
2013
+ }
2014
+ export declare namespace PathFormat {
2015
+
2016
+ const filterSensitiveLog: (obj: PathFormat) => any;
2017
+ }
2018
+
2019
+ export interface LexTranscriptFilter {
2020
+
2021
+ dateRangeFilter?: DateRangeFilter;
2022
+ }
2023
+ export declare namespace LexTranscriptFilter {
2024
+
2025
+ const filterSensitiveLog: (obj: LexTranscriptFilter) => any;
2026
+ }
2027
+
2028
+ export interface TranscriptFilter {
2029
+
2030
+ lexTranscriptFilter?: LexTranscriptFilter;
2031
+ }
2032
+ export declare namespace TranscriptFilter {
2033
+
2034
+ const filterSensitiveLog: (obj: TranscriptFilter) => any;
2035
+ }
2036
+ export declare enum TranscriptFormat {
2037
+ Lex = "Lex"
2038
+ }
2039
+
2040
+ export interface S3BucketTranscriptSource {
2041
+
2042
+ s3BucketName: string | undefined;
2043
+
2044
+ pathFormat?: PathFormat;
2045
+
2046
+ transcriptFormat: TranscriptFormat | string | undefined;
2047
+
2048
+ transcriptFilter?: TranscriptFilter;
2049
+
2050
+ kmsKeyArn?: string;
2051
+ }
2052
+ export declare namespace S3BucketTranscriptSource {
2053
+
2054
+ const filterSensitiveLog: (obj: S3BucketTranscriptSource) => any;
2055
+ }
2056
+
2057
+ export interface TranscriptSourceSetting {
2058
+
2059
+ s3BucketTranscriptSource?: S3BucketTranscriptSource;
2060
+ }
2061
+ export declare namespace TranscriptSourceSetting {
2062
+
2063
+ const filterSensitiveLog: (obj: TranscriptSourceSetting) => any;
2064
+ }
2065
+ export interface DescribeBotRecommendationResponse {
2066
+
2067
+ botId?: string;
2068
+
2069
+ botVersion?: string;
2070
+
2071
+ localeId?: string;
2072
+
2073
+ botRecommendationStatus?: BotRecommendationStatus | string;
2074
+
2075
+ botRecommendationId?: string;
2076
+
2077
+ failureReasons?: string[];
2078
+
2079
+ creationDateTime?: Date;
2080
+
2081
+ lastUpdatedDateTime?: Date;
2082
+
2083
+ transcriptSourceSetting?: TranscriptSourceSetting;
2084
+
2085
+ encryptionSetting?: EncryptionSetting;
2086
+
2087
+ botRecommendationResults?: BotRecommendationResults;
2088
+ }
2089
+ export declare namespace DescribeBotRecommendationResponse {
2090
+
2091
+ const filterSensitiveLog: (obj: DescribeBotRecommendationResponse) => any;
2092
+ }
1871
2093
  export interface DescribeBotVersionRequest {
1872
2094
 
1873
2095
  botId: string | undefined;
@@ -1943,6 +2165,7 @@ export declare namespace DescribeImportRequest {
1943
2165
  const filterSensitiveLog: (obj: DescribeImportRequest) => any;
1944
2166
  }
1945
2167
  export declare enum MergeStrategy {
2168
+ Append = "Append",
1946
2169
  FailOnConflict = "FailOnConflict",
1947
2170
  Overwrite = "Overwrite"
1948
2171
  }
@@ -2153,6 +2376,8 @@ export interface DescribeSlotTypeResponse {
2153
2376
  creationDateTime?: Date;
2154
2377
 
2155
2378
  lastUpdatedDateTime?: Date;
2379
+
2380
+ externalSourceSetting?: ExternalSourceSetting;
2156
2381
  }
2157
2382
  export declare namespace DescribeSlotTypeResponse {
2158
2383
 
@@ -2453,6 +2678,38 @@ export declare namespace ListBotLocalesResponse {
2453
2678
 
2454
2679
  const filterSensitiveLog: (obj: ListBotLocalesResponse) => any;
2455
2680
  }
2681
+ export interface ListBotRecommendationsRequest {
2682
+
2683
+ botId: string | undefined;
2684
+
2685
+ botVersion: string | undefined;
2686
+
2687
+ localeId: string | undefined;
2688
+
2689
+ maxResults?: number;
2690
+
2691
+ nextToken?: string;
2692
+ }
2693
+ export declare namespace ListBotRecommendationsRequest {
2694
+
2695
+ const filterSensitiveLog: (obj: ListBotRecommendationsRequest) => any;
2696
+ }
2697
+ export interface ListBotRecommendationsResponse {
2698
+
2699
+ botId?: string;
2700
+
2701
+ botVersion?: string;
2702
+
2703
+ localeId?: string;
2704
+
2705
+ botRecommendationSummaries?: BotRecommendationSummary[];
2706
+
2707
+ nextToken?: string;
2708
+ }
2709
+ export declare namespace ListBotRecommendationsResponse {
2710
+
2711
+ const filterSensitiveLog: (obj: ListBotRecommendationsResponse) => any;
2712
+ }
2456
2713
  export interface ListBotsRequest {
2457
2714
 
2458
2715
  sortBy?: BotSortBy;
@@ -2655,6 +2912,55 @@ export declare namespace ListIntentsResponse {
2655
2912
 
2656
2913
  const filterSensitiveLog: (obj: ListIntentsResponse) => any;
2657
2914
  }
2915
+ export interface ListRecommendedIntentsRequest {
2916
+
2917
+ botId: string | undefined;
2918
+
2919
+ botVersion: string | undefined;
2920
+
2921
+ localeId: string | undefined;
2922
+
2923
+ botRecommendationId: string | undefined;
2924
+
2925
+ nextToken?: string;
2926
+
2927
+ maxResults?: number;
2928
+ }
2929
+ export declare namespace ListRecommendedIntentsRequest {
2930
+
2931
+ const filterSensitiveLog: (obj: ListRecommendedIntentsRequest) => any;
2932
+ }
2933
+
2934
+ export interface RecommendedIntentSummary {
2935
+
2936
+ intentId?: string;
2937
+
2938
+ intentName?: string;
2939
+
2940
+ sampleUtterancesCount?: number;
2941
+ }
2942
+ export declare namespace RecommendedIntentSummary {
2943
+
2944
+ const filterSensitiveLog: (obj: RecommendedIntentSummary) => any;
2945
+ }
2946
+ export interface ListRecommendedIntentsResponse {
2947
+
2948
+ botId?: string;
2949
+
2950
+ botVersion?: string;
2951
+
2952
+ localeId?: string;
2953
+
2954
+ botRecommendationId?: string;
2955
+
2956
+ summaryList?: RecommendedIntentSummary[];
2957
+
2958
+ nextToken?: string;
2959
+ }
2960
+ export declare namespace ListRecommendedIntentsResponse {
2961
+
2962
+ const filterSensitiveLog: (obj: ListRecommendedIntentsResponse) => any;
2963
+ }
2658
2964
  export declare enum SlotFilterName {
2659
2965
  SlotName = "SlotName"
2660
2966
  }
@@ -2752,6 +3058,7 @@ export declare namespace ListSlotsResponse {
2752
3058
  const filterSensitiveLog: (obj: ListSlotsResponse) => any;
2753
3059
  }
2754
3060
  export declare enum SlotTypeFilterName {
3061
+ ExternalSourceType = "ExternalSourceType",
2755
3062
  SlotTypeName = "SlotTypeName"
2756
3063
  }
2757
3064
  export declare enum SlotTypeFilterOperator {
@@ -2806,6 +3113,11 @@ export declare namespace ListSlotTypesRequest {
2806
3113
 
2807
3114
  const filterSensitiveLog: (obj: ListSlotTypesRequest) => any;
2808
3115
  }
3116
+ export declare enum SlotTypeCategory {
3117
+ Custom = "Custom",
3118
+ Extended = "Extended",
3119
+ ExternalGrammar = "ExternalGrammar"
3120
+ }
2809
3121
 
2810
3122
  export interface SlotTypeSummary {
2811
3123
 
@@ -2818,6 +3130,8 @@ export interface SlotTypeSummary {
2818
3130
  parentSlotTypeSignature?: string;
2819
3131
 
2820
3132
  lastUpdatedDateTime?: Date;
3133
+
3134
+ slotTypeCategory?: SlotTypeCategory | string;
2821
3135
  }
2822
3136
  export declare namespace SlotTypeSummary {
2823
3137
 
@@ -2857,6 +3171,90 @@ export declare namespace ListTagsForResourceResponse {
2857
3171
 
2858
3172
  const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
2859
3173
  }
3174
+ export declare enum SearchOrder {
3175
+ Ascending = "Ascending",
3176
+ Descending = "Descending"
3177
+ }
3178
+ export interface SearchAssociatedTranscriptsRequest {
3179
+
3180
+ botId: string | undefined;
3181
+
3182
+ botVersion: string | undefined;
3183
+
3184
+ localeId: string | undefined;
3185
+
3186
+ botRecommendationId: string | undefined;
3187
+
3188
+ searchOrder?: SearchOrder | string;
3189
+
3190
+ filters: AssociatedTranscriptFilter[] | undefined;
3191
+
3192
+ maxResults?: number;
3193
+
3194
+ nextIndex?: number;
3195
+ }
3196
+ export declare namespace SearchAssociatedTranscriptsRequest {
3197
+
3198
+ const filterSensitiveLog: (obj: SearchAssociatedTranscriptsRequest) => any;
3199
+ }
3200
+ export interface SearchAssociatedTranscriptsResponse {
3201
+
3202
+ botId?: string;
3203
+
3204
+ botVersion?: string;
3205
+
3206
+ localeId?: string;
3207
+
3208
+ botRecommendationId?: string;
3209
+
3210
+ nextIndex?: number;
3211
+
3212
+ associatedTranscripts?: AssociatedTranscript[];
3213
+
3214
+ totalResults?: number;
3215
+ }
3216
+ export declare namespace SearchAssociatedTranscriptsResponse {
3217
+
3218
+ const filterSensitiveLog: (obj: SearchAssociatedTranscriptsResponse) => any;
3219
+ }
3220
+ export interface StartBotRecommendationRequest {
3221
+
3222
+ botId: string | undefined;
3223
+
3224
+ botVersion: string | undefined;
3225
+
3226
+ localeId: string | undefined;
3227
+
3228
+ transcriptSourceSetting: TranscriptSourceSetting | undefined;
3229
+
3230
+ encryptionSetting?: EncryptionSetting;
3231
+ }
3232
+ export declare namespace StartBotRecommendationRequest {
3233
+
3234
+ const filterSensitiveLog: (obj: StartBotRecommendationRequest) => any;
3235
+ }
3236
+ export interface StartBotRecommendationResponse {
3237
+
3238
+ botId?: string;
3239
+
3240
+ botVersion?: string;
3241
+
3242
+ localeId?: string;
3243
+
3244
+ botRecommendationStatus?: BotRecommendationStatus | string;
3245
+
3246
+ botRecommendationId?: string;
3247
+
3248
+ creationDateTime?: Date;
3249
+
3250
+ transcriptSourceSetting?: TranscriptSourceSetting;
3251
+
3252
+ encryptionSetting?: EncryptionSetting;
3253
+ }
3254
+ export declare namespace StartBotRecommendationResponse {
3255
+
3256
+ const filterSensitiveLog: (obj: StartBotRecommendationResponse) => any;
3257
+ }
2860
3258
  export interface StartImportRequest {
2861
3259
 
2862
3260
  importId: string | undefined;
@@ -3058,11 +3456,53 @@ export interface UpdateBotLocaleResponse {
3058
3456
  creationDateTime?: Date;
3059
3457
 
3060
3458
  lastUpdatedDateTime?: Date;
3459
+
3460
+ recommendedActions?: string[];
3061
3461
  }
3062
3462
  export declare namespace UpdateBotLocaleResponse {
3063
3463
 
3064
3464
  const filterSensitiveLog: (obj: UpdateBotLocaleResponse) => any;
3065
3465
  }
3466
+ export interface UpdateBotRecommendationRequest {
3467
+
3468
+ botId: string | undefined;
3469
+
3470
+ botVersion: string | undefined;
3471
+
3472
+ localeId: string | undefined;
3473
+
3474
+ botRecommendationId: string | undefined;
3475
+
3476
+ encryptionSetting: EncryptionSetting | undefined;
3477
+ }
3478
+ export declare namespace UpdateBotRecommendationRequest {
3479
+
3480
+ const filterSensitiveLog: (obj: UpdateBotRecommendationRequest) => any;
3481
+ }
3482
+ export interface UpdateBotRecommendationResponse {
3483
+
3484
+ botId?: string;
3485
+
3486
+ botVersion?: string;
3487
+
3488
+ localeId?: string;
3489
+
3490
+ botRecommendationStatus?: BotRecommendationStatus | string;
3491
+
3492
+ botRecommendationId?: string;
3493
+
3494
+ creationDateTime?: Date;
3495
+
3496
+ lastUpdatedDateTime?: Date;
3497
+
3498
+ transcriptSourceSetting?: TranscriptSourceSetting;
3499
+
3500
+ encryptionSetting?: EncryptionSetting;
3501
+ }
3502
+ export declare namespace UpdateBotRecommendationResponse {
3503
+
3504
+ const filterSensitiveLog: (obj: UpdateBotRecommendationResponse) => any;
3505
+ }
3066
3506
  export interface UpdateExportRequest {
3067
3507
 
3068
3508
  exportId: string | undefined;
@@ -3263,7 +3703,7 @@ export interface UpdateSlotTypeRequest {
3263
3703
 
3264
3704
  slotTypeValues?: SlotTypeValue[];
3265
3705
 
3266
- valueSelectionSetting: SlotValueSelectionSetting | undefined;
3706
+ valueSelectionSetting?: SlotValueSelectionSetting;
3267
3707
 
3268
3708
  parentSlotTypeSignature?: string;
3269
3709
 
@@ -3272,6 +3712,8 @@ export interface UpdateSlotTypeRequest {
3272
3712
  botVersion: string | undefined;
3273
3713
 
3274
3714
  localeId: string | undefined;
3715
+
3716
+ externalSourceSetting?: ExternalSourceSetting;
3275
3717
  }
3276
3718
  export declare namespace UpdateSlotTypeRequest {
3277
3719
 
@@ -3300,6 +3742,8 @@ export interface UpdateSlotTypeResponse {
3300
3742
  creationDateTime?: Date;
3301
3743
 
3302
3744
  lastUpdatedDateTime?: Date;
3745
+
3746
+ externalSourceSetting?: ExternalSourceSetting;
3303
3747
  }
3304
3748
  export declare namespace UpdateSlotTypeResponse {
3305
3749
 
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListBotRecommendationsCommandInput, ListBotRecommendationsCommandOutput } from "../commands/ListBotRecommendationsCommand";
3
+ import { LexModelsV2PaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListBotRecommendations(config: LexModelsV2PaginationConfiguration, input: ListBotRecommendationsCommandInput, ...additionalArguments: any): Paginator<ListBotRecommendationsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListRecommendedIntentsCommandInput, ListRecommendedIntentsCommandOutput } from "../commands/ListRecommendedIntentsCommand";
3
+ import { LexModelsV2PaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListRecommendedIntents(config: LexModelsV2PaginationConfiguration, input: ListRecommendedIntentsCommandInput, ...additionalArguments: any): Paginator<ListRecommendedIntentsCommandOutput>;
@@ -2,6 +2,7 @@ export * from "./Interfaces";
2
2
  export * from "./ListAggregatedUtterancesPaginator";
3
3
  export * from "./ListBotAliasesPaginator";
4
4
  export * from "./ListBotLocalesPaginator";
5
+ export * from "./ListBotRecommendationsPaginator";
5
6
  export * from "./ListBotVersionsPaginator";
6
7
  export * from "./ListBotsPaginator";
7
8
  export * from "./ListBuiltInIntentsPaginator";
@@ -9,5 +10,6 @@ export * from "./ListBuiltInSlotTypesPaginator";
9
10
  export * from "./ListExportsPaginator";
10
11
  export * from "./ListImportsPaginator";
11
12
  export * from "./ListIntentsPaginator";
13
+ export * from "./ListRecommendedIntentsPaginator";
12
14
  export * from "./ListSlotTypesPaginator";
13
15
  export * from "./ListSlotsPaginator";