@aws-sdk/client-lex-models-v2 3.1005.0 → 3.1007.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/README.md +35 -0
- package/dist-cjs/index.js +96 -0
- package/dist-cjs/schemas/schemas_0.js +138 -23
- package/dist-es/LexModelsV2.js +14 -0
- package/dist-es/commands/DeleteBotAnalyzerRecommendationCommand.js +16 -0
- package/dist-es/commands/DescribeBotAnalyzerRecommendationCommand.js +16 -0
- package/dist-es/commands/ListBotAnalyzerHistoryCommand.js +16 -0
- package/dist-es/commands/StartBotAnalyzerCommand.js +16 -0
- package/dist-es/commands/StopBotAnalyzerCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +15 -0
- package/dist-es/pagination/DescribeBotAnalyzerRecommendationPaginator.js +4 -0
- package/dist-es/pagination/ListBotAnalyzerHistoryPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +127 -12
- package/dist-types/LexModelsV2.d.ts +49 -0
- package/dist-types/LexModelsV2Client.d.ts +7 -2
- package/dist-types/commands/DeleteBotAnalyzerRecommendationCommand.d.ts +90 -0
- package/dist-types/commands/DescribeBotAnalyzerRecommendationCommand.d.ts +111 -0
- package/dist-types/commands/ListBotAnalyzerHistoryCommand.d.ts +105 -0
- package/dist-types/commands/StartBotAnalyzerCommand.d.ts +104 -0
- package/dist-types/commands/StopBotAnalyzerCommand.d.ts +95 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +39 -0
- package/dist-types/models/models_0.d.ts +160 -164
- package/dist-types/models/models_1.d.ts +336 -2
- package/dist-types/pagination/DescribeBotAnalyzerRecommendationPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBotAnalyzerHistoryPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +18 -0
- package/dist-types/ts3.4/LexModelsV2.d.ts +105 -0
- package/dist-types/ts3.4/LexModelsV2Client.d.ts +30 -0
- package/dist-types/ts3.4/commands/DeleteBotAnalyzerRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeBotAnalyzerRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListBotAnalyzerHistoryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartBotAnalyzerCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StopBotAnalyzerCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +19 -0
- package/dist-types/ts3.4/models/models_0.d.ts +38 -47
- package/dist-types/ts3.4/models/models_1.d.ts +89 -5
- package/dist-types/ts3.4/pagination/DescribeBotAnalyzerRecommendationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBotAnalyzerHistoryPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +18 -0
- package/package.json +2 -2
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { StartBotAnalyzer$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class StartBotAnalyzerCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("LexModelBuildingServiceV2", "StartBotAnalyzer", {})
|
|
13
|
+
.n("LexModelsV2Client", "StartBotAnalyzerCommand")
|
|
14
|
+
.sc(StartBotAnalyzer$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { StopBotAnalyzer$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class StopBotAnalyzerCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("LexModelBuildingServiceV2", "StopBotAnalyzer", {})
|
|
13
|
+
.n("LexModelsV2Client", "StopBotAnalyzerCommand")
|
|
14
|
+
.sc(StopBotAnalyzer$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -16,6 +16,7 @@ export * from "./CreateSlotTypeCommand";
|
|
|
16
16
|
export * from "./CreateTestSetDiscrepancyReportCommand";
|
|
17
17
|
export * from "./CreateUploadUrlCommand";
|
|
18
18
|
export * from "./DeleteBotAliasCommand";
|
|
19
|
+
export * from "./DeleteBotAnalyzerRecommendationCommand";
|
|
19
20
|
export * from "./DeleteBotCommand";
|
|
20
21
|
export * from "./DeleteBotLocaleCommand";
|
|
21
22
|
export * from "./DeleteBotReplicaCommand";
|
|
@@ -31,6 +32,7 @@ export * from "./DeleteSlotTypeCommand";
|
|
|
31
32
|
export * from "./DeleteTestSetCommand";
|
|
32
33
|
export * from "./DeleteUtterancesCommand";
|
|
33
34
|
export * from "./DescribeBotAliasCommand";
|
|
35
|
+
export * from "./DescribeBotAnalyzerRecommendationCommand";
|
|
34
36
|
export * from "./DescribeBotCommand";
|
|
35
37
|
export * from "./DescribeBotLocaleCommand";
|
|
36
38
|
export * from "./DescribeBotRecommendationCommand";
|
|
@@ -53,6 +55,7 @@ export * from "./GetTestExecutionArtifactsUrlCommand";
|
|
|
53
55
|
export * from "./ListAggregatedUtterancesCommand";
|
|
54
56
|
export * from "./ListBotAliasReplicasCommand";
|
|
55
57
|
export * from "./ListBotAliasesCommand";
|
|
58
|
+
export * from "./ListBotAnalyzerHistoryCommand";
|
|
56
59
|
export * from "./ListBotLocalesCommand";
|
|
57
60
|
export * from "./ListBotRecommendationsCommand";
|
|
58
61
|
export * from "./ListBotReplicasCommand";
|
|
@@ -82,11 +85,13 @@ export * from "./ListTestSetsCommand";
|
|
|
82
85
|
export * from "./ListUtteranceAnalyticsDataCommand";
|
|
83
86
|
export * from "./ListUtteranceMetricsCommand";
|
|
84
87
|
export * from "./SearchAssociatedTranscriptsCommand";
|
|
88
|
+
export * from "./StartBotAnalyzerCommand";
|
|
85
89
|
export * from "./StartBotRecommendationCommand";
|
|
86
90
|
export * from "./StartBotResourceGenerationCommand";
|
|
87
91
|
export * from "./StartImportCommand";
|
|
88
92
|
export * from "./StartTestExecutionCommand";
|
|
89
93
|
export * from "./StartTestSetGenerationCommand";
|
|
94
|
+
export * from "./StopBotAnalyzerCommand";
|
|
90
95
|
export * from "./StopBotRecommendationCommand";
|
|
91
96
|
export * from "./TagResourceCommand";
|
|
92
97
|
export * from "./UntagResourceCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -16,6 +16,9 @@ export const SortOrder = {
|
|
|
16
16
|
Ascending: "Ascending",
|
|
17
17
|
Descending: "Descending",
|
|
18
18
|
};
|
|
19
|
+
export const AnalysisScope = {
|
|
20
|
+
BotLocale: "BotLocale",
|
|
21
|
+
};
|
|
19
22
|
export const AnalyticsInterval = {
|
|
20
23
|
OneDay: "OneDay",
|
|
21
24
|
OneHour: "OneHour",
|
|
@@ -188,6 +191,18 @@ export const BotAliasStatus = {
|
|
|
188
191
|
Deleting: "Deleting",
|
|
189
192
|
Failed: "Failed",
|
|
190
193
|
};
|
|
194
|
+
export const BotAnalyzerStatus = {
|
|
195
|
+
Available: "Available",
|
|
196
|
+
Failed: "Failed",
|
|
197
|
+
Processing: "Processing",
|
|
198
|
+
Stopped: "Stopped",
|
|
199
|
+
Stopping: "Stopping",
|
|
200
|
+
};
|
|
201
|
+
export const Priority = {
|
|
202
|
+
High: "High",
|
|
203
|
+
Low: "Low",
|
|
204
|
+
Medium: "Medium",
|
|
205
|
+
};
|
|
191
206
|
export const BotFilterName = {
|
|
192
207
|
BotName: "BotName",
|
|
193
208
|
BotType: "BotType",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { DescribeBotAnalyzerRecommendationCommand, } from "../commands/DescribeBotAnalyzerRecommendationCommand";
|
|
3
|
+
import { LexModelsV2Client } from "../LexModelsV2Client";
|
|
4
|
+
export const paginateDescribeBotAnalyzerRecommendation = createPaginator(LexModelsV2Client, DescribeBotAnalyzerRecommendationCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListBotAnalyzerHistoryCommand, } from "../commands/ListBotAnalyzerHistoryCommand";
|
|
3
|
+
import { LexModelsV2Client } from "../LexModelsV2Client";
|
|
4
|
+
export const paginateListBotAnalyzerHistory = createPaginator(LexModelsV2Client, ListBotAnalyzerHistoryCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./DescribeBotAnalyzerRecommendationPaginator";
|
|
2
3
|
export * from "./ListAggregatedUtterancesPaginator";
|
|
3
4
|
export * from "./ListBotAliasesPaginator";
|
|
4
5
|
export * from "./ListBotAliasReplicasPaginator";
|
|
6
|
+
export * from "./ListBotAnalyzerHistoryPaginator";
|
|
5
7
|
export * from "./ListBotLocalesPaginator";
|
|
6
8
|
export * from "./ListBotRecommendationsPaginator";
|
|
7
9
|
export * from "./ListBotResourceGenerationsPaginator";
|
|
@@ -81,8 +81,12 @@ const _AUSL = "AggregatedUtterancesSummaryList";
|
|
|
81
81
|
const _B = "Button";
|
|
82
82
|
const _BAHE = "BotAliasHistoryEvent";
|
|
83
83
|
const _BAHEL = "BotAliasHistoryEventsList";
|
|
84
|
+
const _BAHL = "BotAnalyzerHistoryList";
|
|
85
|
+
const _BAHS = "BotAnalyzerHistorySummary";
|
|
84
86
|
const _BALS = "BotAliasLocaleSettings";
|
|
85
87
|
const _BALSM = "BotAliasLocaleSettingsMap";
|
|
88
|
+
const _BAR = "BotAnalyzerRecommendation";
|
|
89
|
+
const _BARL = "BotAnalyzerRecommendationList";
|
|
86
90
|
const _BARS = "BotAliasReplicaSummary";
|
|
87
91
|
const _BARSL = "BotAliasReplicaSummaryList";
|
|
88
92
|
const _BAS = "BotAliasSummary";
|
|
@@ -215,9 +219,15 @@ const _DA = "DialogAction";
|
|
|
215
219
|
const _DB = "DeleteBot";
|
|
216
220
|
const _DBA = "DeleteBotAlias";
|
|
217
221
|
const _DBAR = "DeleteBotAliasRequest";
|
|
222
|
+
const _DBARR = "DeleteBotAnalyzerRecommendationRequest";
|
|
223
|
+
const _DBARRe = "DeleteBotAnalyzerRecommendationResponse";
|
|
224
|
+
const _DBARRes = "DescribeBotAnalyzerRecommendationRequest";
|
|
225
|
+
const _DBARResc = "DescribeBotAnalyzerRecommendationResponse";
|
|
218
226
|
const _DBARe = "DeleteBotAliasResponse";
|
|
227
|
+
const _DBARel = "DeleteBotAnalyzerRecommendation";
|
|
219
228
|
const _DBARes = "DescribeBotAliasRequest";
|
|
220
229
|
const _DBAResc = "DescribeBotAliasResponse";
|
|
230
|
+
const _DBARescr = "DescribeBotAnalyzerRecommendation";
|
|
221
231
|
const _DBAe = "DescribeBotAlias";
|
|
222
232
|
const _DBBS = "DescriptiveBotBuilderSpecification";
|
|
223
233
|
const _DBL = "DeleteBotLocale";
|
|
@@ -365,6 +375,7 @@ const _IFn = "IntentFilter";
|
|
|
365
375
|
const _IFnt = "IntentFilters";
|
|
366
376
|
const _IIS = "InvokedIntentSample";
|
|
367
377
|
const _IISn = "InvokedIntentSamples";
|
|
378
|
+
const _IL = "IssueLocation";
|
|
368
379
|
const _ILSRTR = "IntentLevelSlotResolutionTestResults";
|
|
369
380
|
const _ILSRTRI = "IntentLevelSlotResolutionTestResultItem";
|
|
370
381
|
const _ILSRTRIL = "IntentLevelSlotResolutionTestResultItemList";
|
|
@@ -387,6 +398,9 @@ const _LAUR = "ListAggregatedUtterancesRequest";
|
|
|
387
398
|
const _LAURi = "ListAggregatedUtterancesResponse";
|
|
388
399
|
const _LB = "ListBots";
|
|
389
400
|
const _LBA = "ListBotAliases";
|
|
401
|
+
const _LBAH = "ListBotAnalyzerHistory";
|
|
402
|
+
const _LBAHR = "ListBotAnalyzerHistoryRequest";
|
|
403
|
+
const _LBAHRi = "ListBotAnalyzerHistoryResponse";
|
|
390
404
|
const _LBAR = "ListBotAliasesRequest";
|
|
391
405
|
const _LBARR = "ListBotAliasReplicasRequest";
|
|
392
406
|
const _LBARRi = "ListBotAliasReplicasResponse";
|
|
@@ -523,6 +537,12 @@ const _SAS = "SentimentAnalysisSettings";
|
|
|
523
537
|
const _SAT = "SearchAssociatedTranscripts";
|
|
524
538
|
const _SATR = "SearchAssociatedTranscriptsRequest";
|
|
525
539
|
const _SATRe = "SearchAssociatedTranscriptsResponse";
|
|
540
|
+
const _SBA = "StartBotAnalyzer";
|
|
541
|
+
const _SBAR = "StartBotAnalyzerRequest";
|
|
542
|
+
const _SBARt = "StartBotAnalyzerResponse";
|
|
543
|
+
const _SBARto = "StopBotAnalyzerRequest";
|
|
544
|
+
const _SBARtop = "StopBotAnalyzerResponse";
|
|
545
|
+
const _SBAt = "StopBotAnalyzer";
|
|
526
546
|
const _SBLD = "S3BucketLogDestination";
|
|
527
547
|
const _SBR = "StartBotRecommendation";
|
|
528
548
|
const _SBRG = "StartBotResourceGeneration";
|
|
@@ -715,6 +735,7 @@ const _aRS = "audioRecognitionStrategy";
|
|
|
715
735
|
const _aRSd = "advancedRecognitionSetting";
|
|
716
736
|
const _aS = "audioSpecification";
|
|
717
737
|
const _aSN = "associatedSlotName";
|
|
738
|
+
const _aSn = "analysisScope";
|
|
718
739
|
const _aT = "associatedTranscripts";
|
|
719
740
|
const _aTP = "associatedTranscriptsPassword";
|
|
720
741
|
const _aTSA = "apiTokenSecretArn";
|
|
@@ -731,13 +752,17 @@ const _ar = "arn";
|
|
|
731
752
|
const _at = "attributes";
|
|
732
753
|
const _b = "buttons";
|
|
733
754
|
const _bAHE = "botAliasHistoryEvents";
|
|
755
|
+
const _bAHL = "botAnalyzerHistoryList";
|
|
734
756
|
const _bAI = "botAliasId";
|
|
735
757
|
const _bALS = "botAliasLocaleSettings";
|
|
736
758
|
const _bAN = "botAliasName";
|
|
759
|
+
const _bARI = "botAnalyzerRequestId";
|
|
760
|
+
const _bARL = "botAnalyzerRecommendationList";
|
|
737
761
|
const _bARS = "botAliasReplicationStatus";
|
|
738
762
|
const _bARSo = "botAliasReplicaSummaries";
|
|
739
763
|
const _bAS = "botAliasStatus";
|
|
740
|
-
const _bASo = "
|
|
764
|
+
const _bASo = "botAnalyzerStatus";
|
|
765
|
+
const _bASot = "botAliasSummaries";
|
|
741
766
|
const _bAT = "botAliasTarget";
|
|
742
767
|
const _bB = "binBy";
|
|
743
768
|
const _bES = "botExportSpecification";
|
|
@@ -748,6 +773,7 @@ const _bISTS = "builtInSlotTypeSummaries";
|
|
|
748
773
|
const _bK = "binKeys";
|
|
749
774
|
const _bKBA = "bedrockKnowledgeBaseArn";
|
|
750
775
|
const _bKSC = "bedrockKnowledgeStoreConfiguration";
|
|
776
|
+
const _bL = "botLocale";
|
|
751
777
|
const _bLEP = "botLocaleExportPassword";
|
|
752
778
|
const _bLES = "botLocaleExportSpecification";
|
|
753
779
|
const _bLEU = "botLocaleExportUrl";
|
|
@@ -919,9 +945,10 @@ const _iCSn = "intentClosingSetting";
|
|
|
919
945
|
const _iCTR = "intentClassificationTestResults";
|
|
920
946
|
const _iCn = "inputContexts";
|
|
921
947
|
const _iCnt = "intentsCount";
|
|
922
|
-
const _iD = "
|
|
948
|
+
const _iD = "issueDescription";
|
|
923
949
|
const _iDN = "intentDisplayName";
|
|
924
950
|
const _iDS = "intentDisambiguationSettings";
|
|
951
|
+
const _iDn = "intentDiscrepancies";
|
|
925
952
|
const _iF = "includeFields";
|
|
926
953
|
const _iI = "intentId";
|
|
927
954
|
const _iIL = "importInputLocation";
|
|
@@ -931,6 +958,7 @@ const _iIt = "itemId";
|
|
|
931
958
|
const _iL = "intentLevel";
|
|
932
959
|
const _iLSRTR = "intentLevelSlotResolutionTestResults";
|
|
933
960
|
const _iLn = "invocationLabel";
|
|
961
|
+
const _iLs = "issueLocation";
|
|
934
962
|
const _iM = "inputMode";
|
|
935
963
|
const _iMR = "intentMatchResult";
|
|
936
964
|
const _iMRC = "intentMatchResultCounts";
|
|
@@ -1010,20 +1038,21 @@ const _oST = "obfuscationSettingType";
|
|
|
1010
1038
|
const _oT = "outputType";
|
|
1011
1039
|
const _oTR = "overallTestResults";
|
|
1012
1040
|
const _or = "order";
|
|
1013
|
-
const _p = "
|
|
1041
|
+
const _p = "priority";
|
|
1014
1042
|
const _pAS = "promptAttemptsSpecification";
|
|
1015
1043
|
const _pBN = "parentBotNetworks";
|
|
1016
1044
|
const _pCHS = "postCodeHookSpecification";
|
|
1017
|
-
const _pF = "
|
|
1045
|
+
const _pF = "proposedFix";
|
|
1018
1046
|
const _pFSS = "postFulfillmentStatusSpecification";
|
|
1047
|
+
const _pFa = "pathFormat";
|
|
1019
1048
|
const _pIS = "parentIntentSignature";
|
|
1020
1049
|
const _pS = "promptSpecification";
|
|
1021
1050
|
const _pSTS = "parentSlotTypeSignature";
|
|
1022
1051
|
const _pTM = "plainTextMessage";
|
|
1023
1052
|
const _pa = "pattern";
|
|
1024
1053
|
const _ph = "phrase";
|
|
1054
|
+
const _po = "policy";
|
|
1025
1055
|
const _pr = "principal";
|
|
1026
|
-
const _pri = "priority";
|
|
1027
1056
|
const _qAIC = "qnAIntentConfiguration";
|
|
1028
1057
|
const _qF = "questionField";
|
|
1029
1058
|
const _qFS = "queryFilterString";
|
|
@@ -1556,6 +1585,16 @@ export var BotAliasTestExecutionTarget$ = [3, n0, _BATET,
|
|
|
1556
1585
|
[_bI, _bAI, _lI],
|
|
1557
1586
|
[0, 0, 0], 3
|
|
1558
1587
|
];
|
|
1588
|
+
export var BotAnalyzerHistorySummary$ = [3, n0, _BAHS,
|
|
1589
|
+
0,
|
|
1590
|
+
[_bASo, _bARI, _cDT],
|
|
1591
|
+
[0, 0, 4], 2
|
|
1592
|
+
];
|
|
1593
|
+
export var BotAnalyzerRecommendation$ = [3, n0, _BAR,
|
|
1594
|
+
0,
|
|
1595
|
+
[_iLs, _p, _iD, _pF],
|
|
1596
|
+
[() => IssueLocation$, 0, 0, 0], 4
|
|
1597
|
+
];
|
|
1559
1598
|
export var BotExportSpecification$ = [3, n0, _BES,
|
|
1560
1599
|
0,
|
|
1561
1600
|
[_bI, _bV],
|
|
@@ -1848,7 +1887,7 @@ export var CreateIntentResponse$ = [3, n0, _CIRr,
|
|
|
1848
1887
|
];
|
|
1849
1888
|
export var CreateResourcePolicyRequest$ = [3, n0, _CRPR,
|
|
1850
1889
|
0,
|
|
1851
|
-
[_rAe,
|
|
1890
|
+
[_rAe, _po],
|
|
1852
1891
|
[[0, 1], 0], 2
|
|
1853
1892
|
];
|
|
1854
1893
|
export var CreateResourcePolicyResponse$ = [3, n0, _CRPRr,
|
|
@@ -1966,6 +2005,16 @@ export var DeleteBotAliasResponse$ = [3, n0, _DBARe,
|
|
|
1966
2005
|
[_bAI, _bI, _bAS],
|
|
1967
2006
|
[0, 0, 0]
|
|
1968
2007
|
];
|
|
2008
|
+
export var DeleteBotAnalyzerRecommendationRequest$ = [3, n0, _DBARR,
|
|
2009
|
+
0,
|
|
2010
|
+
[_bI, _bARI],
|
|
2011
|
+
[[0, 1], [0, 1]], 2
|
|
2012
|
+
];
|
|
2013
|
+
export var DeleteBotAnalyzerRecommendationResponse$ = [3, n0, _DBARRe,
|
|
2014
|
+
0,
|
|
2015
|
+
[],
|
|
2016
|
+
[]
|
|
2017
|
+
];
|
|
1969
2018
|
export var DeleteBotLocaleRequest$ = [3, n0, _DBLR,
|
|
1970
2019
|
0,
|
|
1971
2020
|
[_bI, _bV, _lI],
|
|
@@ -2096,6 +2145,16 @@ export var DescribeBotAliasResponse$ = [3, n0, _DBAResc,
|
|
|
2096
2145
|
[_bAI, _bAN, _de, _bV, _bALS, _cLS, _sAS, _bAHE, _bAS, _bI, _cDT, _lUDT, _pBN],
|
|
2097
2146
|
[0, 0, 0, 0, () => BotAliasLocaleSettingsMap, () => ConversationLogSettings$, () => SentimentAnalysisSettings$, () => BotAliasHistoryEventsList, 0, 0, 4, 4, () => ParentBotNetworks]
|
|
2098
2147
|
];
|
|
2148
|
+
export var DescribeBotAnalyzerRecommendationRequest$ = [3, n0, _DBARRes,
|
|
2149
|
+
0,
|
|
2150
|
+
[_bI, _bARI, _nTe, _mRax],
|
|
2151
|
+
[[0, 1], [0, 1], 0, 1], 2
|
|
2152
|
+
];
|
|
2153
|
+
export var DescribeBotAnalyzerRecommendationResponse$ = [3, n0, _DBARResc,
|
|
2154
|
+
0,
|
|
2155
|
+
[_bI, _bV, _lI, _bASo, _cDT, _bARL, _nTe],
|
|
2156
|
+
[0, 0, 0, 0, 4, () => BotAnalyzerRecommendationList, 0]
|
|
2157
|
+
];
|
|
2099
2158
|
export var DescribeBotLocaleRequest$ = [3, n0, _DBLRes,
|
|
2100
2159
|
0,
|
|
2101
2160
|
[_bI, _bV, _lI],
|
|
@@ -2203,7 +2262,7 @@ export var DescribeResourcePolicyRequest$ = [3, n0, _DRPRes,
|
|
|
2203
2262
|
];
|
|
2204
2263
|
export var DescribeResourcePolicyResponse$ = [3, n0, _DRPResc,
|
|
2205
2264
|
0,
|
|
2206
|
-
[_rAe,
|
|
2265
|
+
[_rAe, _po, _rI],
|
|
2207
2266
|
[0, 0, 0]
|
|
2208
2267
|
];
|
|
2209
2268
|
export var DescribeSlotRequest$ = [3, n0, _DSRe,
|
|
@@ -2526,6 +2585,11 @@ export var InvokedIntentSample$ = [3, n0, _IIS,
|
|
|
2526
2585
|
[_iN],
|
|
2527
2586
|
[0]
|
|
2528
2587
|
];
|
|
2588
|
+
export var IssueLocation$ = [3, n0, _IL,
|
|
2589
|
+
0,
|
|
2590
|
+
[_bL, _iI, _sIl],
|
|
2591
|
+
[0, 0, 0]
|
|
2592
|
+
];
|
|
2529
2593
|
export var KendraConfiguration$ = [3, n0, _KC,
|
|
2530
2594
|
0,
|
|
2531
2595
|
[_kI, _qFSE, _qFS],
|
|
@@ -2558,7 +2622,7 @@ export var ListBotAliasesRequest$ = [3, n0, _LBAR,
|
|
|
2558
2622
|
];
|
|
2559
2623
|
export var ListBotAliasesResponse$ = [3, n0, _LBARi,
|
|
2560
2624
|
0,
|
|
2561
|
-
[
|
|
2625
|
+
[_bASot, _nTe, _bI],
|
|
2562
2626
|
[() => BotAliasSummaryList, 0, 0]
|
|
2563
2627
|
];
|
|
2564
2628
|
export var ListBotAliasReplicasRequest$ = [3, n0, _LBARR,
|
|
@@ -2571,6 +2635,16 @@ export var ListBotAliasReplicasResponse$ = [3, n0, _LBARRi,
|
|
|
2571
2635
|
[_bI, _sR, _rR, _bARSo, _nTe],
|
|
2572
2636
|
[0, 0, 0, () => BotAliasReplicaSummaryList, 0]
|
|
2573
2637
|
];
|
|
2638
|
+
export var ListBotAnalyzerHistoryRequest$ = [3, n0, _LBAHR,
|
|
2639
|
+
0,
|
|
2640
|
+
[_bI, _lI, _bV, _nTe, _mRax],
|
|
2641
|
+
[[0, 1], 0, 0, 0, 1], 1
|
|
2642
|
+
];
|
|
2643
|
+
export var ListBotAnalyzerHistoryResponse$ = [3, n0, _LBAHRi,
|
|
2644
|
+
0,
|
|
2645
|
+
[_bI, _lI, _bV, _bAHL, _nTe],
|
|
2646
|
+
[0, 0, 0, () => BotAnalyzerHistoryList, 0]
|
|
2647
|
+
];
|
|
2574
2648
|
export var ListBotLocalesRequest$ = [3, n0, _LBLR,
|
|
2575
2649
|
0,
|
|
2576
2650
|
[_bI, _bV, _sBo, _fi, _mRax, _nTe],
|
|
@@ -3003,7 +3077,7 @@ export var S3BucketLogDestination$ = [3, n0, _SBLD,
|
|
|
3003
3077
|
];
|
|
3004
3078
|
export var S3BucketTranscriptSource$ = [3, n0, _SBTS,
|
|
3005
3079
|
0,
|
|
3006
|
-
[_sBN, _tF,
|
|
3080
|
+
[_sBN, _tF, _pFa, _tFr, _kKA],
|
|
3007
3081
|
[0, 0, () => PathFormat$, () => TranscriptFilter$, 0], 2
|
|
3008
3082
|
];
|
|
3009
3083
|
export var SampleUtterance$ = [3, n0, _SU,
|
|
@@ -3068,7 +3142,7 @@ export var SlotFilter$ = [3, n0, _SF,
|
|
|
3068
3142
|
];
|
|
3069
3143
|
export var SlotPriority$ = [3, n0, _SP,
|
|
3070
3144
|
0,
|
|
3071
|
-
[
|
|
3145
|
+
[_p, _sIl],
|
|
3072
3146
|
[1, 0], 2
|
|
3073
3147
|
];
|
|
3074
3148
|
export var SlotResolutionImprovementSpecification$ = [3, n0, _SRIS,
|
|
@@ -3176,6 +3250,16 @@ export var SSMLMessage$ = [3, n0, _SSMLM,
|
|
|
3176
3250
|
[_va],
|
|
3177
3251
|
[0], 1
|
|
3178
3252
|
];
|
|
3253
|
+
export var StartBotAnalyzerRequest$ = [3, n0, _SBAR,
|
|
3254
|
+
0,
|
|
3255
|
+
[_bI, _aSn, _lI, _bV],
|
|
3256
|
+
[[0, 1], 0, 0, 0], 2
|
|
3257
|
+
];
|
|
3258
|
+
export var StartBotAnalyzerResponse$ = [3, n0, _SBARt,
|
|
3259
|
+
0,
|
|
3260
|
+
[_bI, _bV, _lI, _bASo, _bARI, _cDT],
|
|
3261
|
+
[0, 0, 0, 0, 0, 4]
|
|
3262
|
+
];
|
|
3179
3263
|
export var StartBotRecommendationRequest$ = [3, n0, _SBRR,
|
|
3180
3264
|
0,
|
|
3181
3265
|
[_bI, _bV, _lI, _tSS, _eSn],
|
|
@@ -3231,6 +3315,16 @@ export var StillWaitingResponseSpecification$ = [3, n0, _SWRS,
|
|
|
3231
3315
|
[_mG, _fIS, _tIS, _aIl],
|
|
3232
3316
|
[() => MessageGroupsList, 1, 1, 2], 3
|
|
3233
3317
|
];
|
|
3318
|
+
export var StopBotAnalyzerRequest$ = [3, n0, _SBARto,
|
|
3319
|
+
0,
|
|
3320
|
+
[_bI, _bARI],
|
|
3321
|
+
[[0, 1], [0, 1]], 2
|
|
3322
|
+
];
|
|
3323
|
+
export var StopBotAnalyzerResponse$ = [3, n0, _SBARtop,
|
|
3324
|
+
0,
|
|
3325
|
+
[_bI, _bV, _lI, _bASo, _bARI],
|
|
3326
|
+
[0, 0, 0, 0, 0]
|
|
3327
|
+
];
|
|
3234
3328
|
export var StopBotRecommendationRequest$ = [3, n0, _SBRRto,
|
|
3235
3329
|
0,
|
|
3236
3330
|
[_bI, _bV, _lI, _bRI],
|
|
@@ -3293,7 +3387,7 @@ export var TestExecutionTarget$ = [3, n0, _TET,
|
|
|
3293
3387
|
];
|
|
3294
3388
|
export var TestSetDiscrepancyErrors$ = [3, n0, _TSDE,
|
|
3295
3389
|
0,
|
|
3296
|
-
[
|
|
3390
|
+
[_iDn, _sDl],
|
|
3297
3391
|
[() => TestSetIntentDiscrepancyList, () => TestSetSlotDiscrepancyList], 2
|
|
3298
3392
|
];
|
|
3299
3393
|
export var TestSetDiscrepancyReportBotAliasTarget$ = [3, n0, _TSDRBAT,
|
|
@@ -3468,7 +3562,7 @@ export var UpdateIntentResponse$ = [3, n0, _UIRp,
|
|
|
3468
3562
|
];
|
|
3469
3563
|
export var UpdateResourcePolicyRequest$ = [3, n0, _URPR,
|
|
3470
3564
|
0,
|
|
3471
|
-
[_rAe,
|
|
3565
|
+
[_rAe, _po, _eRI],
|
|
3472
3566
|
[[0, 1], 0, [0, { [_hQ]: _eRI }]], 2
|
|
3473
3567
|
];
|
|
3474
3568
|
export var UpdateResourcePolicyResponse$ = [3, n0, _URPRp,
|
|
@@ -3705,6 +3799,12 @@ var BotAliasReplicaSummaryList = [1, n0, _BARSL,
|
|
|
3705
3799
|
var BotAliasSummaryList = [1, n0, _BASL,
|
|
3706
3800
|
0, () => BotAliasSummary$
|
|
3707
3801
|
];
|
|
3802
|
+
var BotAnalyzerHistoryList = [1, n0, _BAHL,
|
|
3803
|
+
0, () => BotAnalyzerHistorySummary$
|
|
3804
|
+
];
|
|
3805
|
+
var BotAnalyzerRecommendationList = [1, n0, _BARL,
|
|
3806
|
+
0, () => BotAnalyzerRecommendation$
|
|
3807
|
+
];
|
|
3708
3808
|
var BotFilters = [1, n0, _BFo,
|
|
3709
3809
|
0, () => BotFilter$
|
|
3710
3810
|
];
|
|
@@ -3992,6 +4092,9 @@ export var DeleteBot$ = [9, n0, _DB,
|
|
|
3992
4092
|
export var DeleteBotAlias$ = [9, n0, _DBA,
|
|
3993
4093
|
{ [_h]: ["DELETE", "/bots/{botId}/botaliases/{botAliasId}", 202] }, () => DeleteBotAliasRequest$, () => DeleteBotAliasResponse$
|
|
3994
4094
|
];
|
|
4095
|
+
export var DeleteBotAnalyzerRecommendation$ = [9, n0, _DBARel,
|
|
4096
|
+
{ [_h]: ["DELETE", "/bots/{botId}/botanalyzer/{botAnalyzerRequestId}", 204] }, () => DeleteBotAnalyzerRecommendationRequest$, () => DeleteBotAnalyzerRecommendationResponse$
|
|
4097
|
+
];
|
|
3995
4098
|
export var DeleteBotLocale$ = [9, n0, _DBL,
|
|
3996
4099
|
{ [_h]: ["DELETE", "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}", 202] }, () => DeleteBotLocaleRequest$, () => DeleteBotLocaleResponse$
|
|
3997
4100
|
];
|
|
@@ -4037,6 +4140,9 @@ export var DescribeBot$ = [9, n0, _DBe,
|
|
|
4037
4140
|
export var DescribeBotAlias$ = [9, n0, _DBAe,
|
|
4038
4141
|
{ [_h]: ["GET", "/bots/{botId}/botaliases/{botAliasId}", 200] }, () => DescribeBotAliasRequest$, () => DescribeBotAliasResponse$
|
|
4039
4142
|
];
|
|
4143
|
+
export var DescribeBotAnalyzerRecommendation$ = [9, n0, _DBARescr,
|
|
4144
|
+
{ [_h]: ["POST", "/bots/{botId}/botanalyzer/describe/{botAnalyzerRequestId}", 200] }, () => DescribeBotAnalyzerRecommendationRequest$, () => DescribeBotAnalyzerRecommendationResponse$
|
|
4145
|
+
];
|
|
4040
4146
|
export var DescribeBotLocale$ = [9, n0, _DBLe,
|
|
4041
4147
|
{ [_h]: ["GET", "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}", 200] }, () => DescribeBotLocaleRequest$, () => DescribeBotLocaleResponse$
|
|
4042
4148
|
];
|
|
@@ -4100,6 +4206,9 @@ export var ListBotAliases$ = [9, n0, _LBA,
|
|
|
4100
4206
|
export var ListBotAliasReplicas$ = [9, n0, _LBARis,
|
|
4101
4207
|
{ [_h]: ["POST", "/bots/{botId}/replicas/{replicaRegion}/botaliases", 200] }, () => ListBotAliasReplicasRequest$, () => ListBotAliasReplicasResponse$
|
|
4102
4208
|
];
|
|
4209
|
+
export var ListBotAnalyzerHistory$ = [9, n0, _LBAH,
|
|
4210
|
+
{ [_h]: ["POST", "/bots/{botId}/botanalyzer/history", 200] }, () => ListBotAnalyzerHistoryRequest$, () => ListBotAnalyzerHistoryResponse$
|
|
4211
|
+
];
|
|
4103
4212
|
export var ListBotLocales$ = [9, n0, _LBL,
|
|
4104
4213
|
{ [_h]: ["POST", "/bots/{botId}/botversions/{botVersion}/botlocales", 200] }, () => ListBotLocalesRequest$, () => ListBotLocalesResponse$
|
|
4105
4214
|
];
|
|
@@ -4187,6 +4296,9 @@ export var ListUtteranceMetrics$ = [9, n0, _LUM,
|
|
|
4187
4296
|
export var SearchAssociatedTranscripts$ = [9, n0, _SAT,
|
|
4188
4297
|
{ [_h]: ["POST", "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/botrecommendations/{botRecommendationId}/associatedtranscripts", 200] }, () => SearchAssociatedTranscriptsRequest$, () => SearchAssociatedTranscriptsResponse$
|
|
4189
4298
|
];
|
|
4299
|
+
export var StartBotAnalyzer$ = [9, n0, _SBA,
|
|
4300
|
+
{ [_h]: ["POST", "/bots/{botId}/botanalyzer", 202] }, () => StartBotAnalyzerRequest$, () => StartBotAnalyzerResponse$
|
|
4301
|
+
];
|
|
4190
4302
|
export var StartBotRecommendation$ = [9, n0, _SBR,
|
|
4191
4303
|
{ [_h]: ["PUT", "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/botrecommendations", 202] }, () => StartBotRecommendationRequest$, () => StartBotRecommendationResponse$
|
|
4192
4304
|
];
|
|
@@ -4202,6 +4314,9 @@ export var StartTestExecution$ = [9, n0, _STE,
|
|
|
4202
4314
|
export var StartTestSetGeneration$ = [9, n0, _STSG,
|
|
4203
4315
|
{ [_h]: ["PUT", "/testsetgenerations", 202] }, () => StartTestSetGenerationRequest$, () => StartTestSetGenerationResponse$
|
|
4204
4316
|
];
|
|
4317
|
+
export var StopBotAnalyzer$ = [9, n0, _SBAt,
|
|
4318
|
+
{ [_h]: ["PUT", "/bots/{botId}/botanalyzer/{botAnalyzerRequestId}/stop", 200] }, () => StopBotAnalyzerRequest$, () => StopBotAnalyzerResponse$
|
|
4319
|
+
];
|
|
4205
4320
|
export var StopBotRecommendation$ = [9, n0, _SBRt,
|
|
4206
4321
|
{ [_h]: ["PUT", "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/botrecommendations/{botRecommendationId}/stopbotrecommendation", 202] }, () => StopBotRecommendationRequest$, () => StopBotRecommendationResponse$
|
|
4207
4322
|
];
|
|
@@ -18,6 +18,7 @@ import { CreateSlotTypeCommandInput, CreateSlotTypeCommandOutput } from "./comma
|
|
|
18
18
|
import { CreateTestSetDiscrepancyReportCommandInput, CreateTestSetDiscrepancyReportCommandOutput } from "./commands/CreateTestSetDiscrepancyReportCommand";
|
|
19
19
|
import { CreateUploadUrlCommandInput, CreateUploadUrlCommandOutput } from "./commands/CreateUploadUrlCommand";
|
|
20
20
|
import { DeleteBotAliasCommandInput, DeleteBotAliasCommandOutput } from "./commands/DeleteBotAliasCommand";
|
|
21
|
+
import { DeleteBotAnalyzerRecommendationCommandInput, DeleteBotAnalyzerRecommendationCommandOutput } from "./commands/DeleteBotAnalyzerRecommendationCommand";
|
|
21
22
|
import { DeleteBotCommandInput, DeleteBotCommandOutput } from "./commands/DeleteBotCommand";
|
|
22
23
|
import { DeleteBotLocaleCommandInput, DeleteBotLocaleCommandOutput } from "./commands/DeleteBotLocaleCommand";
|
|
23
24
|
import { DeleteBotReplicaCommandInput, DeleteBotReplicaCommandOutput } from "./commands/DeleteBotReplicaCommand";
|
|
@@ -33,6 +34,7 @@ import { DeleteSlotTypeCommandInput, DeleteSlotTypeCommandOutput } from "./comma
|
|
|
33
34
|
import { DeleteTestSetCommandInput, DeleteTestSetCommandOutput } from "./commands/DeleteTestSetCommand";
|
|
34
35
|
import { DeleteUtterancesCommandInput, DeleteUtterancesCommandOutput } from "./commands/DeleteUtterancesCommand";
|
|
35
36
|
import { DescribeBotAliasCommandInput, DescribeBotAliasCommandOutput } from "./commands/DescribeBotAliasCommand";
|
|
37
|
+
import { DescribeBotAnalyzerRecommendationCommandInput, DescribeBotAnalyzerRecommendationCommandOutput } from "./commands/DescribeBotAnalyzerRecommendationCommand";
|
|
36
38
|
import { DescribeBotCommandInput, DescribeBotCommandOutput } from "./commands/DescribeBotCommand";
|
|
37
39
|
import { DescribeBotLocaleCommandInput, DescribeBotLocaleCommandOutput } from "./commands/DescribeBotLocaleCommand";
|
|
38
40
|
import { DescribeBotRecommendationCommandInput, DescribeBotRecommendationCommandOutput } from "./commands/DescribeBotRecommendationCommand";
|
|
@@ -55,6 +57,7 @@ import { GetTestExecutionArtifactsUrlCommandInput, GetTestExecutionArtifactsUrlC
|
|
|
55
57
|
import { ListAggregatedUtterancesCommandInput, ListAggregatedUtterancesCommandOutput } from "./commands/ListAggregatedUtterancesCommand";
|
|
56
58
|
import { ListBotAliasesCommandInput, ListBotAliasesCommandOutput } from "./commands/ListBotAliasesCommand";
|
|
57
59
|
import { ListBotAliasReplicasCommandInput, ListBotAliasReplicasCommandOutput } from "./commands/ListBotAliasReplicasCommand";
|
|
60
|
+
import { ListBotAnalyzerHistoryCommandInput, ListBotAnalyzerHistoryCommandOutput } from "./commands/ListBotAnalyzerHistoryCommand";
|
|
58
61
|
import { ListBotLocalesCommandInput, ListBotLocalesCommandOutput } from "./commands/ListBotLocalesCommand";
|
|
59
62
|
import { ListBotRecommendationsCommandInput, ListBotRecommendationsCommandOutput } from "./commands/ListBotRecommendationsCommand";
|
|
60
63
|
import { ListBotReplicasCommandInput, ListBotReplicasCommandOutput } from "./commands/ListBotReplicasCommand";
|
|
@@ -84,11 +87,13 @@ import { ListTestSetsCommandInput, ListTestSetsCommandOutput } from "./commands/
|
|
|
84
87
|
import { ListUtteranceAnalyticsDataCommandInput, ListUtteranceAnalyticsDataCommandOutput } from "./commands/ListUtteranceAnalyticsDataCommand";
|
|
85
88
|
import { ListUtteranceMetricsCommandInput, ListUtteranceMetricsCommandOutput } from "./commands/ListUtteranceMetricsCommand";
|
|
86
89
|
import { SearchAssociatedTranscriptsCommandInput, SearchAssociatedTranscriptsCommandOutput } from "./commands/SearchAssociatedTranscriptsCommand";
|
|
90
|
+
import { StartBotAnalyzerCommandInput, StartBotAnalyzerCommandOutput } from "./commands/StartBotAnalyzerCommand";
|
|
87
91
|
import { StartBotRecommendationCommandInput, StartBotRecommendationCommandOutput } from "./commands/StartBotRecommendationCommand";
|
|
88
92
|
import { StartBotResourceGenerationCommandInput, StartBotResourceGenerationCommandOutput } from "./commands/StartBotResourceGenerationCommand";
|
|
89
93
|
import { StartImportCommandInput, StartImportCommandOutput } from "./commands/StartImportCommand";
|
|
90
94
|
import { StartTestExecutionCommandInput, StartTestExecutionCommandOutput } from "./commands/StartTestExecutionCommand";
|
|
91
95
|
import { StartTestSetGenerationCommandInput, StartTestSetGenerationCommandOutput } from "./commands/StartTestSetGenerationCommand";
|
|
96
|
+
import { StopBotAnalyzerCommandInput, StopBotAnalyzerCommandOutput } from "./commands/StopBotAnalyzerCommand";
|
|
92
97
|
import { StopBotRecommendationCommandInput, StopBotRecommendationCommandOutput } from "./commands/StopBotRecommendationCommand";
|
|
93
98
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
94
99
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
@@ -219,6 +224,12 @@ export interface LexModelsV2 {
|
|
|
219
224
|
deleteBotAlias(args: DeleteBotAliasCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBotAliasCommandOutput>;
|
|
220
225
|
deleteBotAlias(args: DeleteBotAliasCommandInput, cb: (err: any, data?: DeleteBotAliasCommandOutput) => void): void;
|
|
221
226
|
deleteBotAlias(args: DeleteBotAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBotAliasCommandOutput) => void): void;
|
|
227
|
+
/**
|
|
228
|
+
* @see {@link DeleteBotAnalyzerRecommendationCommand}
|
|
229
|
+
*/
|
|
230
|
+
deleteBotAnalyzerRecommendation(args: DeleteBotAnalyzerRecommendationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBotAnalyzerRecommendationCommandOutput>;
|
|
231
|
+
deleteBotAnalyzerRecommendation(args: DeleteBotAnalyzerRecommendationCommandInput, cb: (err: any, data?: DeleteBotAnalyzerRecommendationCommandOutput) => void): void;
|
|
232
|
+
deleteBotAnalyzerRecommendation(args: DeleteBotAnalyzerRecommendationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBotAnalyzerRecommendationCommandOutput) => void): void;
|
|
222
233
|
/**
|
|
223
234
|
* @see {@link DeleteBotLocaleCommand}
|
|
224
235
|
*/
|
|
@@ -309,6 +320,12 @@ export interface LexModelsV2 {
|
|
|
309
320
|
describeBotAlias(args: DescribeBotAliasCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBotAliasCommandOutput>;
|
|
310
321
|
describeBotAlias(args: DescribeBotAliasCommandInput, cb: (err: any, data?: DescribeBotAliasCommandOutput) => void): void;
|
|
311
322
|
describeBotAlias(args: DescribeBotAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBotAliasCommandOutput) => void): void;
|
|
323
|
+
/**
|
|
324
|
+
* @see {@link DescribeBotAnalyzerRecommendationCommand}
|
|
325
|
+
*/
|
|
326
|
+
describeBotAnalyzerRecommendation(args: DescribeBotAnalyzerRecommendationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBotAnalyzerRecommendationCommandOutput>;
|
|
327
|
+
describeBotAnalyzerRecommendation(args: DescribeBotAnalyzerRecommendationCommandInput, cb: (err: any, data?: DescribeBotAnalyzerRecommendationCommandOutput) => void): void;
|
|
328
|
+
describeBotAnalyzerRecommendation(args: DescribeBotAnalyzerRecommendationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBotAnalyzerRecommendationCommandOutput) => void): void;
|
|
312
329
|
/**
|
|
313
330
|
* @see {@link DescribeBotLocaleCommand}
|
|
314
331
|
*/
|
|
@@ -435,6 +452,12 @@ export interface LexModelsV2 {
|
|
|
435
452
|
listBotAliasReplicas(args: ListBotAliasReplicasCommandInput, options?: __HttpHandlerOptions): Promise<ListBotAliasReplicasCommandOutput>;
|
|
436
453
|
listBotAliasReplicas(args: ListBotAliasReplicasCommandInput, cb: (err: any, data?: ListBotAliasReplicasCommandOutput) => void): void;
|
|
437
454
|
listBotAliasReplicas(args: ListBotAliasReplicasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBotAliasReplicasCommandOutput) => void): void;
|
|
455
|
+
/**
|
|
456
|
+
* @see {@link ListBotAnalyzerHistoryCommand}
|
|
457
|
+
*/
|
|
458
|
+
listBotAnalyzerHistory(args: ListBotAnalyzerHistoryCommandInput, options?: __HttpHandlerOptions): Promise<ListBotAnalyzerHistoryCommandOutput>;
|
|
459
|
+
listBotAnalyzerHistory(args: ListBotAnalyzerHistoryCommandInput, cb: (err: any, data?: ListBotAnalyzerHistoryCommandOutput) => void): void;
|
|
460
|
+
listBotAnalyzerHistory(args: ListBotAnalyzerHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBotAnalyzerHistoryCommandOutput) => void): void;
|
|
438
461
|
/**
|
|
439
462
|
* @see {@link ListBotLocalesCommand}
|
|
440
463
|
*/
|
|
@@ -614,6 +637,12 @@ export interface LexModelsV2 {
|
|
|
614
637
|
searchAssociatedTranscripts(args: SearchAssociatedTranscriptsCommandInput, options?: __HttpHandlerOptions): Promise<SearchAssociatedTranscriptsCommandOutput>;
|
|
615
638
|
searchAssociatedTranscripts(args: SearchAssociatedTranscriptsCommandInput, cb: (err: any, data?: SearchAssociatedTranscriptsCommandOutput) => void): void;
|
|
616
639
|
searchAssociatedTranscripts(args: SearchAssociatedTranscriptsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchAssociatedTranscriptsCommandOutput) => void): void;
|
|
640
|
+
/**
|
|
641
|
+
* @see {@link StartBotAnalyzerCommand}
|
|
642
|
+
*/
|
|
643
|
+
startBotAnalyzer(args: StartBotAnalyzerCommandInput, options?: __HttpHandlerOptions): Promise<StartBotAnalyzerCommandOutput>;
|
|
644
|
+
startBotAnalyzer(args: StartBotAnalyzerCommandInput, cb: (err: any, data?: StartBotAnalyzerCommandOutput) => void): void;
|
|
645
|
+
startBotAnalyzer(args: StartBotAnalyzerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBotAnalyzerCommandOutput) => void): void;
|
|
617
646
|
/**
|
|
618
647
|
* @see {@link StartBotRecommendationCommand}
|
|
619
648
|
*/
|
|
@@ -644,6 +673,12 @@ export interface LexModelsV2 {
|
|
|
644
673
|
startTestSetGeneration(args: StartTestSetGenerationCommandInput, options?: __HttpHandlerOptions): Promise<StartTestSetGenerationCommandOutput>;
|
|
645
674
|
startTestSetGeneration(args: StartTestSetGenerationCommandInput, cb: (err: any, data?: StartTestSetGenerationCommandOutput) => void): void;
|
|
646
675
|
startTestSetGeneration(args: StartTestSetGenerationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartTestSetGenerationCommandOutput) => void): void;
|
|
676
|
+
/**
|
|
677
|
+
* @see {@link StopBotAnalyzerCommand}
|
|
678
|
+
*/
|
|
679
|
+
stopBotAnalyzer(args: StopBotAnalyzerCommandInput, options?: __HttpHandlerOptions): Promise<StopBotAnalyzerCommandOutput>;
|
|
680
|
+
stopBotAnalyzer(args: StopBotAnalyzerCommandInput, cb: (err: any, data?: StopBotAnalyzerCommandOutput) => void): void;
|
|
681
|
+
stopBotAnalyzer(args: StopBotAnalyzerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopBotAnalyzerCommandOutput) => void): void;
|
|
647
682
|
/**
|
|
648
683
|
* @see {@link StopBotRecommendationCommand}
|
|
649
684
|
*/
|
|
@@ -722,6 +757,13 @@ export interface LexModelsV2 {
|
|
|
722
757
|
updateTestSet(args: UpdateTestSetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTestSetCommandOutput>;
|
|
723
758
|
updateTestSet(args: UpdateTestSetCommandInput, cb: (err: any, data?: UpdateTestSetCommandOutput) => void): void;
|
|
724
759
|
updateTestSet(args: UpdateTestSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTestSetCommandOutput) => void): void;
|
|
760
|
+
/**
|
|
761
|
+
* @see {@link DescribeBotAnalyzerRecommendationCommand}
|
|
762
|
+
* @param args - command input.
|
|
763
|
+
* @param paginationConfig - optional pagination config.
|
|
764
|
+
* @returns AsyncIterable of {@link DescribeBotAnalyzerRecommendationCommandOutput}.
|
|
765
|
+
*/
|
|
766
|
+
paginateDescribeBotAnalyzerRecommendation(args: DescribeBotAnalyzerRecommendationCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeBotAnalyzerRecommendationCommandOutput>;
|
|
725
767
|
/**
|
|
726
768
|
* @see {@link ListAggregatedUtterancesCommand}
|
|
727
769
|
* @param args - command input.
|
|
@@ -743,6 +785,13 @@ export interface LexModelsV2 {
|
|
|
743
785
|
* @returns AsyncIterable of {@link ListBotAliasReplicasCommandOutput}.
|
|
744
786
|
*/
|
|
745
787
|
paginateListBotAliasReplicas(args: ListBotAliasReplicasCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBotAliasReplicasCommandOutput>;
|
|
788
|
+
/**
|
|
789
|
+
* @see {@link ListBotAnalyzerHistoryCommand}
|
|
790
|
+
* @param args - command input.
|
|
791
|
+
* @param paginationConfig - optional pagination config.
|
|
792
|
+
* @returns AsyncIterable of {@link ListBotAnalyzerHistoryCommandOutput}.
|
|
793
|
+
*/
|
|
794
|
+
paginateListBotAnalyzerHistory(args: ListBotAnalyzerHistoryCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBotAnalyzerHistoryCommandOutput>;
|
|
746
795
|
/**
|
|
747
796
|
* @see {@link ListBotLocalesCommand}
|
|
748
797
|
* @param args - command input.
|