@aws-sdk/client-lex-models-v2 3.370.0 → 3.372.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 +56 -0
- package/dist-cjs/LexModelsV2.js +14 -0
- package/dist-cjs/commands/ListIntentMetricsCommand.js +46 -0
- package/dist-cjs/commands/ListIntentPathsCommand.js +46 -0
- package/dist-cjs/commands/ListIntentStageMetricsCommand.js +46 -0
- package/dist-cjs/commands/ListSessionAnalyticsDataCommand.js +46 -0
- package/dist-cjs/commands/ListSessionMetricsCommand.js +46 -0
- package/dist-cjs/commands/ListUtteranceAnalyticsDataCommand.js +46 -0
- package/dist-cjs/commands/ListUtteranceMetricsCommand.js +46 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/models/models_0.js +153 -79
- package/dist-cjs/models/models_1.js +92 -1
- package/dist-cjs/pagination/ListIntentMetricsPaginator.js +29 -0
- package/dist-cjs/pagination/ListIntentStageMetricsPaginator.js +29 -0
- package/dist-cjs/pagination/ListSessionAnalyticsDataPaginator.js +29 -0
- package/dist-cjs/pagination/ListSessionMetricsPaginator.js +29 -0
- package/dist-cjs/pagination/ListUtteranceAnalyticsDataPaginator.js +29 -0
- package/dist-cjs/pagination/ListUtteranceMetricsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +767 -56
- package/dist-es/LexModelsV2.js +14 -0
- package/dist-es/commands/ListIntentMetricsCommand.js +42 -0
- package/dist-es/commands/ListIntentPathsCommand.js +42 -0
- package/dist-es/commands/ListIntentStageMetricsCommand.js +42 -0
- package/dist-es/commands/ListSessionAnalyticsDataCommand.js +42 -0
- package/dist-es/commands/ListSessionMetricsCommand.js +42 -0
- package/dist-es/commands/ListUtteranceAnalyticsDataCommand.js +42 -0
- package/dist-es/commands/ListUtteranceMetricsCommand.js +42 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +151 -77
- package/dist-es/models/models_1.js +91 -0
- package/dist-es/pagination/ListIntentMetricsPaginator.js +25 -0
- package/dist-es/pagination/ListIntentStageMetricsPaginator.js +25 -0
- package/dist-es/pagination/ListSessionAnalyticsDataPaginator.js +25 -0
- package/dist-es/pagination/ListSessionMetricsPaginator.js +25 -0
- package/dist-es/pagination/ListUtteranceAnalyticsDataPaginator.js +25 -0
- package/dist-es/pagination/ListUtteranceMetricsPaginator.js +25 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/protocols/Aws_restJson1.js +749 -52
- package/dist-types/LexModelsV2.d.ts +49 -0
- package/dist-types/LexModelsV2Client.d.ts +9 -2
- package/dist-types/commands/DescribeSlotTypeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTestExecutionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTestSetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTestSetDiscrepancyReportCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTestSetGenerationCommand.d.ts +1 -1
- package/dist-types/commands/GetTestExecutionArtifactsUrlCommand.d.ts +1 -1
- package/dist-types/commands/ListAggregatedUtterancesCommand.d.ts +1 -1
- package/dist-types/commands/ListIntentMetricsCommand.d.ts +169 -0
- package/dist-types/commands/ListIntentPathsCommand.d.ts +124 -0
- package/dist-types/commands/ListIntentStageMetricsCommand.d.ts +169 -0
- package/dist-types/commands/ListSessionAnalyticsDataCommand.d.ts +140 -0
- package/dist-types/commands/ListSessionMetricsCommand.d.ts +169 -0
- package/dist-types/commands/ListUtteranceAnalyticsDataCommand.d.ts +161 -0
- package/dist-types/commands/ListUtteranceMetricsCommand.d.ts +179 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +4423 -3758
- package/dist-types/models/models_1.d.ts +2039 -53
- package/dist-types/pagination/ListIntentMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListIntentStageMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSessionAnalyticsDataPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSessionMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListUtteranceAnalyticsDataPaginator.d.ts +7 -0
- package/dist-types/pagination/ListUtteranceMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/LexModelsV2.d.ts +119 -0
- package/dist-types/ts3.4/LexModelsV2Client.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeSlotTypeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTestExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTestSetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTestSetDiscrepancyReportCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTestSetGenerationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTestExecutionArtifactsUrlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAggregatedUtterancesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListIntentMetricsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListIntentPathsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListIntentStageMetricsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListSessionAnalyticsDataCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListSessionMetricsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListUtteranceAnalyticsDataCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListUtteranceMetricsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +337 -333
- package/dist-types/ts3.4/models/models_1.d.ts +541 -19
- package/dist-types/ts3.4/pagination/ListIntentMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListIntentStageMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSessionAnalyticsDataPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSessionMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListUtteranceAnalyticsDataPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListUtteranceMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListIntentMetricsCommandInput, ListIntentMetricsCommandOutput } from "../commands/ListIntentMetricsCommand";
|
|
3
|
+
import { LexModelsV2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListIntentMetrics(config: LexModelsV2PaginationConfiguration, input: ListIntentMetricsCommandInput, ...additionalArguments: any): Paginator<ListIntentMetricsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListIntentStageMetricsCommandInput, ListIntentStageMetricsCommandOutput } from "../commands/ListIntentStageMetricsCommand";
|
|
3
|
+
import { LexModelsV2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListIntentStageMetrics(config: LexModelsV2PaginationConfiguration, input: ListIntentStageMetricsCommandInput, ...additionalArguments: any): Paginator<ListIntentStageMetricsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListSessionAnalyticsDataCommandInput, ListSessionAnalyticsDataCommandOutput } from "../commands/ListSessionAnalyticsDataCommand";
|
|
3
|
+
import { LexModelsV2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListSessionAnalyticsData(config: LexModelsV2PaginationConfiguration, input: ListSessionAnalyticsDataCommandInput, ...additionalArguments: any): Paginator<ListSessionAnalyticsDataCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListSessionMetricsCommandInput, ListSessionMetricsCommandOutput } from "../commands/ListSessionMetricsCommand";
|
|
3
|
+
import { LexModelsV2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListSessionMetrics(config: LexModelsV2PaginationConfiguration, input: ListSessionMetricsCommandInput, ...additionalArguments: any): Paginator<ListSessionMetricsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListUtteranceAnalyticsDataCommandInput, ListUtteranceAnalyticsDataCommandOutput } from "../commands/ListUtteranceAnalyticsDataCommand";
|
|
3
|
+
import { LexModelsV2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListUtteranceAnalyticsData(config: LexModelsV2PaginationConfiguration, input: ListUtteranceAnalyticsDataCommandInput, ...additionalArguments: any): Paginator<ListUtteranceAnalyticsDataCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListUtteranceMetricsCommandInput, ListUtteranceMetricsCommandOutput } from "../commands/ListUtteranceMetricsCommand";
|
|
3
|
+
import { LexModelsV2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListUtteranceMetrics(config: LexModelsV2PaginationConfiguration, input: ListUtteranceMetricsCommandInput, ...additionalArguments: any): Paginator<ListUtteranceMetricsCommandOutput>;
|
|
@@ -10,11 +10,17 @@ export * from "./ListBuiltInSlotTypesPaginator";
|
|
|
10
10
|
export * from "./ListCustomVocabularyItemsPaginator";
|
|
11
11
|
export * from "./ListExportsPaginator";
|
|
12
12
|
export * from "./ListImportsPaginator";
|
|
13
|
+
export * from "./ListIntentMetricsPaginator";
|
|
14
|
+
export * from "./ListIntentStageMetricsPaginator";
|
|
13
15
|
export * from "./ListIntentsPaginator";
|
|
14
16
|
export * from "./ListRecommendedIntentsPaginator";
|
|
17
|
+
export * from "./ListSessionAnalyticsDataPaginator";
|
|
18
|
+
export * from "./ListSessionMetricsPaginator";
|
|
15
19
|
export * from "./ListSlotTypesPaginator";
|
|
16
20
|
export * from "./ListSlotsPaginator";
|
|
17
21
|
export * from "./ListTestExecutionResultItemsPaginator";
|
|
18
22
|
export * from "./ListTestExecutionsPaginator";
|
|
19
23
|
export * from "./ListTestSetRecordsPaginator";
|
|
20
24
|
export * from "./ListTestSetsPaginator";
|
|
25
|
+
export * from "./ListUtteranceAnalyticsDataPaginator";
|
|
26
|
+
export * from "./ListUtteranceMetricsPaginator";
|
|
@@ -58,8 +58,13 @@ import { ListBuiltInSlotTypesCommandInput, ListBuiltInSlotTypesCommandOutput } f
|
|
|
58
58
|
import { ListCustomVocabularyItemsCommandInput, ListCustomVocabularyItemsCommandOutput } from "../commands/ListCustomVocabularyItemsCommand";
|
|
59
59
|
import { ListExportsCommandInput, ListExportsCommandOutput } from "../commands/ListExportsCommand";
|
|
60
60
|
import { ListImportsCommandInput, ListImportsCommandOutput } from "../commands/ListImportsCommand";
|
|
61
|
+
import { ListIntentMetricsCommandInput, ListIntentMetricsCommandOutput } from "../commands/ListIntentMetricsCommand";
|
|
62
|
+
import { ListIntentPathsCommandInput, ListIntentPathsCommandOutput } from "../commands/ListIntentPathsCommand";
|
|
61
63
|
import { ListIntentsCommandInput, ListIntentsCommandOutput } from "../commands/ListIntentsCommand";
|
|
64
|
+
import { ListIntentStageMetricsCommandInput, ListIntentStageMetricsCommandOutput } from "../commands/ListIntentStageMetricsCommand";
|
|
62
65
|
import { ListRecommendedIntentsCommandInput, ListRecommendedIntentsCommandOutput } from "../commands/ListRecommendedIntentsCommand";
|
|
66
|
+
import { ListSessionAnalyticsDataCommandInput, ListSessionAnalyticsDataCommandOutput } from "../commands/ListSessionAnalyticsDataCommand";
|
|
67
|
+
import { ListSessionMetricsCommandInput, ListSessionMetricsCommandOutput } from "../commands/ListSessionMetricsCommand";
|
|
63
68
|
import { ListSlotsCommandInput, ListSlotsCommandOutput } from "../commands/ListSlotsCommand";
|
|
64
69
|
import { ListSlotTypesCommandInput, ListSlotTypesCommandOutput } from "../commands/ListSlotTypesCommand";
|
|
65
70
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
@@ -67,6 +72,8 @@ import { ListTestExecutionResultItemsCommandInput, ListTestExecutionResultItemsC
|
|
|
67
72
|
import { ListTestExecutionsCommandInput, ListTestExecutionsCommandOutput } from "../commands/ListTestExecutionsCommand";
|
|
68
73
|
import { ListTestSetRecordsCommandInput, ListTestSetRecordsCommandOutput } from "../commands/ListTestSetRecordsCommand";
|
|
69
74
|
import { ListTestSetsCommandInput, ListTestSetsCommandOutput } from "../commands/ListTestSetsCommand";
|
|
75
|
+
import { ListUtteranceAnalyticsDataCommandInput, ListUtteranceAnalyticsDataCommandOutput } from "../commands/ListUtteranceAnalyticsDataCommand";
|
|
76
|
+
import { ListUtteranceMetricsCommandInput, ListUtteranceMetricsCommandOutput } from "../commands/ListUtteranceMetricsCommand";
|
|
70
77
|
import { SearchAssociatedTranscriptsCommandInput, SearchAssociatedTranscriptsCommandOutput } from "../commands/SearchAssociatedTranscriptsCommand";
|
|
71
78
|
import { StartBotRecommendationCommandInput, StartBotRecommendationCommandOutput } from "../commands/StartBotRecommendationCommand";
|
|
72
79
|
import { StartImportCommandInput, StartImportCommandOutput } from "../commands/StartImportCommand";
|
|
@@ -317,14 +324,34 @@ export declare const se_ListExportsCommand: (input: ListExportsCommandInput, con
|
|
|
317
324
|
* serializeAws_restJson1ListImportsCommand
|
|
318
325
|
*/
|
|
319
326
|
export declare const se_ListImportsCommand: (input: ListImportsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
327
|
+
/**
|
|
328
|
+
* serializeAws_restJson1ListIntentMetricsCommand
|
|
329
|
+
*/
|
|
330
|
+
export declare const se_ListIntentMetricsCommand: (input: ListIntentMetricsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
331
|
+
/**
|
|
332
|
+
* serializeAws_restJson1ListIntentPathsCommand
|
|
333
|
+
*/
|
|
334
|
+
export declare const se_ListIntentPathsCommand: (input: ListIntentPathsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
320
335
|
/**
|
|
321
336
|
* serializeAws_restJson1ListIntentsCommand
|
|
322
337
|
*/
|
|
323
338
|
export declare const se_ListIntentsCommand: (input: ListIntentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
339
|
+
/**
|
|
340
|
+
* serializeAws_restJson1ListIntentStageMetricsCommand
|
|
341
|
+
*/
|
|
342
|
+
export declare const se_ListIntentStageMetricsCommand: (input: ListIntentStageMetricsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
324
343
|
/**
|
|
325
344
|
* serializeAws_restJson1ListRecommendedIntentsCommand
|
|
326
345
|
*/
|
|
327
346
|
export declare const se_ListRecommendedIntentsCommand: (input: ListRecommendedIntentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
347
|
+
/**
|
|
348
|
+
* serializeAws_restJson1ListSessionAnalyticsDataCommand
|
|
349
|
+
*/
|
|
350
|
+
export declare const se_ListSessionAnalyticsDataCommand: (input: ListSessionAnalyticsDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
351
|
+
/**
|
|
352
|
+
* serializeAws_restJson1ListSessionMetricsCommand
|
|
353
|
+
*/
|
|
354
|
+
export declare const se_ListSessionMetricsCommand: (input: ListSessionMetricsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
328
355
|
/**
|
|
329
356
|
* serializeAws_restJson1ListSlotsCommand
|
|
330
357
|
*/
|
|
@@ -353,6 +380,14 @@ export declare const se_ListTestSetRecordsCommand: (input: ListTestSetRecordsCom
|
|
|
353
380
|
* serializeAws_restJson1ListTestSetsCommand
|
|
354
381
|
*/
|
|
355
382
|
export declare const se_ListTestSetsCommand: (input: ListTestSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
383
|
+
/**
|
|
384
|
+
* serializeAws_restJson1ListUtteranceAnalyticsDataCommand
|
|
385
|
+
*/
|
|
386
|
+
export declare const se_ListUtteranceAnalyticsDataCommand: (input: ListUtteranceAnalyticsDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
387
|
+
/**
|
|
388
|
+
* serializeAws_restJson1ListUtteranceMetricsCommand
|
|
389
|
+
*/
|
|
390
|
+
export declare const se_ListUtteranceMetricsCommand: (input: ListUtteranceMetricsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
356
391
|
/**
|
|
357
392
|
* serializeAws_restJson1SearchAssociatedTranscriptsCommand
|
|
358
393
|
*/
|
|
@@ -657,14 +692,34 @@ export declare const de_ListExportsCommand: (output: __HttpResponse, context: __
|
|
|
657
692
|
* deserializeAws_restJson1ListImportsCommand
|
|
658
693
|
*/
|
|
659
694
|
export declare const de_ListImportsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListImportsCommandOutput>;
|
|
695
|
+
/**
|
|
696
|
+
* deserializeAws_restJson1ListIntentMetricsCommand
|
|
697
|
+
*/
|
|
698
|
+
export declare const de_ListIntentMetricsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIntentMetricsCommandOutput>;
|
|
699
|
+
/**
|
|
700
|
+
* deserializeAws_restJson1ListIntentPathsCommand
|
|
701
|
+
*/
|
|
702
|
+
export declare const de_ListIntentPathsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIntentPathsCommandOutput>;
|
|
660
703
|
/**
|
|
661
704
|
* deserializeAws_restJson1ListIntentsCommand
|
|
662
705
|
*/
|
|
663
706
|
export declare const de_ListIntentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIntentsCommandOutput>;
|
|
707
|
+
/**
|
|
708
|
+
* deserializeAws_restJson1ListIntentStageMetricsCommand
|
|
709
|
+
*/
|
|
710
|
+
export declare const de_ListIntentStageMetricsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIntentStageMetricsCommandOutput>;
|
|
664
711
|
/**
|
|
665
712
|
* deserializeAws_restJson1ListRecommendedIntentsCommand
|
|
666
713
|
*/
|
|
667
714
|
export declare const de_ListRecommendedIntentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRecommendedIntentsCommandOutput>;
|
|
715
|
+
/**
|
|
716
|
+
* deserializeAws_restJson1ListSessionAnalyticsDataCommand
|
|
717
|
+
*/
|
|
718
|
+
export declare const de_ListSessionAnalyticsDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSessionAnalyticsDataCommandOutput>;
|
|
719
|
+
/**
|
|
720
|
+
* deserializeAws_restJson1ListSessionMetricsCommand
|
|
721
|
+
*/
|
|
722
|
+
export declare const de_ListSessionMetricsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSessionMetricsCommandOutput>;
|
|
668
723
|
/**
|
|
669
724
|
* deserializeAws_restJson1ListSlotsCommand
|
|
670
725
|
*/
|
|
@@ -693,6 +748,14 @@ export declare const de_ListTestSetRecordsCommand: (output: __HttpResponse, cont
|
|
|
693
748
|
* deserializeAws_restJson1ListTestSetsCommand
|
|
694
749
|
*/
|
|
695
750
|
export declare const de_ListTestSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTestSetsCommandOutput>;
|
|
751
|
+
/**
|
|
752
|
+
* deserializeAws_restJson1ListUtteranceAnalyticsDataCommand
|
|
753
|
+
*/
|
|
754
|
+
export declare const de_ListUtteranceAnalyticsDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUtteranceAnalyticsDataCommandOutput>;
|
|
755
|
+
/**
|
|
756
|
+
* deserializeAws_restJson1ListUtteranceMetricsCommand
|
|
757
|
+
*/
|
|
758
|
+
export declare const de_ListUtteranceMetricsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUtteranceMetricsCommandOutput>;
|
|
696
759
|
/**
|
|
697
760
|
* deserializeAws_restJson1SearchAssociatedTranscriptsCommand
|
|
698
761
|
*/
|
|
@@ -231,14 +231,34 @@ import {
|
|
|
231
231
|
ListImportsCommandInput,
|
|
232
232
|
ListImportsCommandOutput,
|
|
233
233
|
} from "./commands/ListImportsCommand";
|
|
234
|
+
import {
|
|
235
|
+
ListIntentMetricsCommandInput,
|
|
236
|
+
ListIntentMetricsCommandOutput,
|
|
237
|
+
} from "./commands/ListIntentMetricsCommand";
|
|
238
|
+
import {
|
|
239
|
+
ListIntentPathsCommandInput,
|
|
240
|
+
ListIntentPathsCommandOutput,
|
|
241
|
+
} from "./commands/ListIntentPathsCommand";
|
|
234
242
|
import {
|
|
235
243
|
ListIntentsCommandInput,
|
|
236
244
|
ListIntentsCommandOutput,
|
|
237
245
|
} from "./commands/ListIntentsCommand";
|
|
246
|
+
import {
|
|
247
|
+
ListIntentStageMetricsCommandInput,
|
|
248
|
+
ListIntentStageMetricsCommandOutput,
|
|
249
|
+
} from "./commands/ListIntentStageMetricsCommand";
|
|
238
250
|
import {
|
|
239
251
|
ListRecommendedIntentsCommandInput,
|
|
240
252
|
ListRecommendedIntentsCommandOutput,
|
|
241
253
|
} from "./commands/ListRecommendedIntentsCommand";
|
|
254
|
+
import {
|
|
255
|
+
ListSessionAnalyticsDataCommandInput,
|
|
256
|
+
ListSessionAnalyticsDataCommandOutput,
|
|
257
|
+
} from "./commands/ListSessionAnalyticsDataCommand";
|
|
258
|
+
import {
|
|
259
|
+
ListSessionMetricsCommandInput,
|
|
260
|
+
ListSessionMetricsCommandOutput,
|
|
261
|
+
} from "./commands/ListSessionMetricsCommand";
|
|
242
262
|
import {
|
|
243
263
|
ListSlotsCommandInput,
|
|
244
264
|
ListSlotsCommandOutput,
|
|
@@ -267,6 +287,14 @@ import {
|
|
|
267
287
|
ListTestSetsCommandInput,
|
|
268
288
|
ListTestSetsCommandOutput,
|
|
269
289
|
} from "./commands/ListTestSetsCommand";
|
|
290
|
+
import {
|
|
291
|
+
ListUtteranceAnalyticsDataCommandInput,
|
|
292
|
+
ListUtteranceAnalyticsDataCommandOutput,
|
|
293
|
+
} from "./commands/ListUtteranceAnalyticsDataCommand";
|
|
294
|
+
import {
|
|
295
|
+
ListUtteranceMetricsCommandInput,
|
|
296
|
+
ListUtteranceMetricsCommandOutput,
|
|
297
|
+
} from "./commands/ListUtteranceMetricsCommand";
|
|
270
298
|
import {
|
|
271
299
|
SearchAssociatedTranscriptsCommandInput,
|
|
272
300
|
SearchAssociatedTranscriptsCommandOutput,
|
|
@@ -1095,6 +1123,32 @@ export interface LexModelsV2 {
|
|
|
1095
1123
|
options: __HttpHandlerOptions,
|
|
1096
1124
|
cb: (err: any, data?: ListImportsCommandOutput) => void
|
|
1097
1125
|
): void;
|
|
1126
|
+
listIntentMetrics(
|
|
1127
|
+
args: ListIntentMetricsCommandInput,
|
|
1128
|
+
options?: __HttpHandlerOptions
|
|
1129
|
+
): Promise<ListIntentMetricsCommandOutput>;
|
|
1130
|
+
listIntentMetrics(
|
|
1131
|
+
args: ListIntentMetricsCommandInput,
|
|
1132
|
+
cb: (err: any, data?: ListIntentMetricsCommandOutput) => void
|
|
1133
|
+
): void;
|
|
1134
|
+
listIntentMetrics(
|
|
1135
|
+
args: ListIntentMetricsCommandInput,
|
|
1136
|
+
options: __HttpHandlerOptions,
|
|
1137
|
+
cb: (err: any, data?: ListIntentMetricsCommandOutput) => void
|
|
1138
|
+
): void;
|
|
1139
|
+
listIntentPaths(
|
|
1140
|
+
args: ListIntentPathsCommandInput,
|
|
1141
|
+
options?: __HttpHandlerOptions
|
|
1142
|
+
): Promise<ListIntentPathsCommandOutput>;
|
|
1143
|
+
listIntentPaths(
|
|
1144
|
+
args: ListIntentPathsCommandInput,
|
|
1145
|
+
cb: (err: any, data?: ListIntentPathsCommandOutput) => void
|
|
1146
|
+
): void;
|
|
1147
|
+
listIntentPaths(
|
|
1148
|
+
args: ListIntentPathsCommandInput,
|
|
1149
|
+
options: __HttpHandlerOptions,
|
|
1150
|
+
cb: (err: any, data?: ListIntentPathsCommandOutput) => void
|
|
1151
|
+
): void;
|
|
1098
1152
|
listIntents(
|
|
1099
1153
|
args: ListIntentsCommandInput,
|
|
1100
1154
|
options?: __HttpHandlerOptions
|
|
@@ -1108,6 +1162,19 @@ export interface LexModelsV2 {
|
|
|
1108
1162
|
options: __HttpHandlerOptions,
|
|
1109
1163
|
cb: (err: any, data?: ListIntentsCommandOutput) => void
|
|
1110
1164
|
): void;
|
|
1165
|
+
listIntentStageMetrics(
|
|
1166
|
+
args: ListIntentStageMetricsCommandInput,
|
|
1167
|
+
options?: __HttpHandlerOptions
|
|
1168
|
+
): Promise<ListIntentStageMetricsCommandOutput>;
|
|
1169
|
+
listIntentStageMetrics(
|
|
1170
|
+
args: ListIntentStageMetricsCommandInput,
|
|
1171
|
+
cb: (err: any, data?: ListIntentStageMetricsCommandOutput) => void
|
|
1172
|
+
): void;
|
|
1173
|
+
listIntentStageMetrics(
|
|
1174
|
+
args: ListIntentStageMetricsCommandInput,
|
|
1175
|
+
options: __HttpHandlerOptions,
|
|
1176
|
+
cb: (err: any, data?: ListIntentStageMetricsCommandOutput) => void
|
|
1177
|
+
): void;
|
|
1111
1178
|
listRecommendedIntents(
|
|
1112
1179
|
args: ListRecommendedIntentsCommandInput,
|
|
1113
1180
|
options?: __HttpHandlerOptions
|
|
@@ -1121,6 +1188,32 @@ export interface LexModelsV2 {
|
|
|
1121
1188
|
options: __HttpHandlerOptions,
|
|
1122
1189
|
cb: (err: any, data?: ListRecommendedIntentsCommandOutput) => void
|
|
1123
1190
|
): void;
|
|
1191
|
+
listSessionAnalyticsData(
|
|
1192
|
+
args: ListSessionAnalyticsDataCommandInput,
|
|
1193
|
+
options?: __HttpHandlerOptions
|
|
1194
|
+
): Promise<ListSessionAnalyticsDataCommandOutput>;
|
|
1195
|
+
listSessionAnalyticsData(
|
|
1196
|
+
args: ListSessionAnalyticsDataCommandInput,
|
|
1197
|
+
cb: (err: any, data?: ListSessionAnalyticsDataCommandOutput) => void
|
|
1198
|
+
): void;
|
|
1199
|
+
listSessionAnalyticsData(
|
|
1200
|
+
args: ListSessionAnalyticsDataCommandInput,
|
|
1201
|
+
options: __HttpHandlerOptions,
|
|
1202
|
+
cb: (err: any, data?: ListSessionAnalyticsDataCommandOutput) => void
|
|
1203
|
+
): void;
|
|
1204
|
+
listSessionMetrics(
|
|
1205
|
+
args: ListSessionMetricsCommandInput,
|
|
1206
|
+
options?: __HttpHandlerOptions
|
|
1207
|
+
): Promise<ListSessionMetricsCommandOutput>;
|
|
1208
|
+
listSessionMetrics(
|
|
1209
|
+
args: ListSessionMetricsCommandInput,
|
|
1210
|
+
cb: (err: any, data?: ListSessionMetricsCommandOutput) => void
|
|
1211
|
+
): void;
|
|
1212
|
+
listSessionMetrics(
|
|
1213
|
+
args: ListSessionMetricsCommandInput,
|
|
1214
|
+
options: __HttpHandlerOptions,
|
|
1215
|
+
cb: (err: any, data?: ListSessionMetricsCommandOutput) => void
|
|
1216
|
+
): void;
|
|
1124
1217
|
listSlots(
|
|
1125
1218
|
args: ListSlotsCommandInput,
|
|
1126
1219
|
options?: __HttpHandlerOptions
|
|
@@ -1212,6 +1305,32 @@ export interface LexModelsV2 {
|
|
|
1212
1305
|
options: __HttpHandlerOptions,
|
|
1213
1306
|
cb: (err: any, data?: ListTestSetsCommandOutput) => void
|
|
1214
1307
|
): void;
|
|
1308
|
+
listUtteranceAnalyticsData(
|
|
1309
|
+
args: ListUtteranceAnalyticsDataCommandInput,
|
|
1310
|
+
options?: __HttpHandlerOptions
|
|
1311
|
+
): Promise<ListUtteranceAnalyticsDataCommandOutput>;
|
|
1312
|
+
listUtteranceAnalyticsData(
|
|
1313
|
+
args: ListUtteranceAnalyticsDataCommandInput,
|
|
1314
|
+
cb: (err: any, data?: ListUtteranceAnalyticsDataCommandOutput) => void
|
|
1315
|
+
): void;
|
|
1316
|
+
listUtteranceAnalyticsData(
|
|
1317
|
+
args: ListUtteranceAnalyticsDataCommandInput,
|
|
1318
|
+
options: __HttpHandlerOptions,
|
|
1319
|
+
cb: (err: any, data?: ListUtteranceAnalyticsDataCommandOutput) => void
|
|
1320
|
+
): void;
|
|
1321
|
+
listUtteranceMetrics(
|
|
1322
|
+
args: ListUtteranceMetricsCommandInput,
|
|
1323
|
+
options?: __HttpHandlerOptions
|
|
1324
|
+
): Promise<ListUtteranceMetricsCommandOutput>;
|
|
1325
|
+
listUtteranceMetrics(
|
|
1326
|
+
args: ListUtteranceMetricsCommandInput,
|
|
1327
|
+
cb: (err: any, data?: ListUtteranceMetricsCommandOutput) => void
|
|
1328
|
+
): void;
|
|
1329
|
+
listUtteranceMetrics(
|
|
1330
|
+
args: ListUtteranceMetricsCommandInput,
|
|
1331
|
+
options: __HttpHandlerOptions,
|
|
1332
|
+
cb: (err: any, data?: ListUtteranceMetricsCommandOutput) => void
|
|
1333
|
+
): void;
|
|
1215
1334
|
searchAssociatedTranscripts(
|
|
1216
1335
|
args: SearchAssociatedTranscriptsCommandInput,
|
|
1217
1336
|
options?: __HttpHandlerOptions
|
|
@@ -276,14 +276,34 @@ import {
|
|
|
276
276
|
ListImportsCommandInput,
|
|
277
277
|
ListImportsCommandOutput,
|
|
278
278
|
} from "./commands/ListImportsCommand";
|
|
279
|
+
import {
|
|
280
|
+
ListIntentMetricsCommandInput,
|
|
281
|
+
ListIntentMetricsCommandOutput,
|
|
282
|
+
} from "./commands/ListIntentMetricsCommand";
|
|
283
|
+
import {
|
|
284
|
+
ListIntentPathsCommandInput,
|
|
285
|
+
ListIntentPathsCommandOutput,
|
|
286
|
+
} from "./commands/ListIntentPathsCommand";
|
|
279
287
|
import {
|
|
280
288
|
ListIntentsCommandInput,
|
|
281
289
|
ListIntentsCommandOutput,
|
|
282
290
|
} from "./commands/ListIntentsCommand";
|
|
291
|
+
import {
|
|
292
|
+
ListIntentStageMetricsCommandInput,
|
|
293
|
+
ListIntentStageMetricsCommandOutput,
|
|
294
|
+
} from "./commands/ListIntentStageMetricsCommand";
|
|
283
295
|
import {
|
|
284
296
|
ListRecommendedIntentsCommandInput,
|
|
285
297
|
ListRecommendedIntentsCommandOutput,
|
|
286
298
|
} from "./commands/ListRecommendedIntentsCommand";
|
|
299
|
+
import {
|
|
300
|
+
ListSessionAnalyticsDataCommandInput,
|
|
301
|
+
ListSessionAnalyticsDataCommandOutput,
|
|
302
|
+
} from "./commands/ListSessionAnalyticsDataCommand";
|
|
303
|
+
import {
|
|
304
|
+
ListSessionMetricsCommandInput,
|
|
305
|
+
ListSessionMetricsCommandOutput,
|
|
306
|
+
} from "./commands/ListSessionMetricsCommand";
|
|
287
307
|
import {
|
|
288
308
|
ListSlotsCommandInput,
|
|
289
309
|
ListSlotsCommandOutput,
|
|
@@ -312,6 +332,14 @@ import {
|
|
|
312
332
|
ListTestSetsCommandInput,
|
|
313
333
|
ListTestSetsCommandOutput,
|
|
314
334
|
} from "./commands/ListTestSetsCommand";
|
|
335
|
+
import {
|
|
336
|
+
ListUtteranceAnalyticsDataCommandInput,
|
|
337
|
+
ListUtteranceAnalyticsDataCommandOutput,
|
|
338
|
+
} from "./commands/ListUtteranceAnalyticsDataCommand";
|
|
339
|
+
import {
|
|
340
|
+
ListUtteranceMetricsCommandInput,
|
|
341
|
+
ListUtteranceMetricsCommandOutput,
|
|
342
|
+
} from "./commands/ListUtteranceMetricsCommand";
|
|
315
343
|
import {
|
|
316
344
|
SearchAssociatedTranscriptsCommandInput,
|
|
317
345
|
SearchAssociatedTranscriptsCommandOutput,
|
|
@@ -449,8 +477,13 @@ export type ServiceInputTypes =
|
|
|
449
477
|
| ListCustomVocabularyItemsCommandInput
|
|
450
478
|
| ListExportsCommandInput
|
|
451
479
|
| ListImportsCommandInput
|
|
480
|
+
| ListIntentMetricsCommandInput
|
|
481
|
+
| ListIntentPathsCommandInput
|
|
482
|
+
| ListIntentStageMetricsCommandInput
|
|
452
483
|
| ListIntentsCommandInput
|
|
453
484
|
| ListRecommendedIntentsCommandInput
|
|
485
|
+
| ListSessionAnalyticsDataCommandInput
|
|
486
|
+
| ListSessionMetricsCommandInput
|
|
454
487
|
| ListSlotTypesCommandInput
|
|
455
488
|
| ListSlotsCommandInput
|
|
456
489
|
| ListTagsForResourceCommandInput
|
|
@@ -458,6 +491,8 @@ export type ServiceInputTypes =
|
|
|
458
491
|
| ListTestExecutionsCommandInput
|
|
459
492
|
| ListTestSetRecordsCommandInput
|
|
460
493
|
| ListTestSetsCommandInput
|
|
494
|
+
| ListUtteranceAnalyticsDataCommandInput
|
|
495
|
+
| ListUtteranceMetricsCommandInput
|
|
461
496
|
| SearchAssociatedTranscriptsCommandInput
|
|
462
497
|
| StartBotRecommendationCommandInput
|
|
463
498
|
| StartImportCommandInput
|
|
@@ -535,8 +570,13 @@ export type ServiceOutputTypes =
|
|
|
535
570
|
| ListCustomVocabularyItemsCommandOutput
|
|
536
571
|
| ListExportsCommandOutput
|
|
537
572
|
| ListImportsCommandOutput
|
|
573
|
+
| ListIntentMetricsCommandOutput
|
|
574
|
+
| ListIntentPathsCommandOutput
|
|
575
|
+
| ListIntentStageMetricsCommandOutput
|
|
538
576
|
| ListIntentsCommandOutput
|
|
539
577
|
| ListRecommendedIntentsCommandOutput
|
|
578
|
+
| ListSessionAnalyticsDataCommandOutput
|
|
579
|
+
| ListSessionMetricsCommandOutput
|
|
540
580
|
| ListSlotTypesCommandOutput
|
|
541
581
|
| ListSlotsCommandOutput
|
|
542
582
|
| ListTagsForResourceCommandOutput
|
|
@@ -544,6 +584,8 @@ export type ServiceOutputTypes =
|
|
|
544
584
|
| ListTestExecutionsCommandOutput
|
|
545
585
|
| ListTestSetRecordsCommandOutput
|
|
546
586
|
| ListTestSetsCommandOutput
|
|
587
|
+
| ListUtteranceAnalyticsDataCommandOutput
|
|
588
|
+
| ListUtteranceMetricsCommandOutput
|
|
547
589
|
| SearchAssociatedTranscriptsCommandOutput
|
|
548
590
|
| StartBotRecommendationCommandOutput
|
|
549
591
|
| StartImportCommandOutput
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
DescribeSlotTypeRequest,
|
|
16
16
|
DescribeSlotTypeResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_1";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface DescribeSlotTypeCommandInput extends DescribeSlotTypeRequest {}
|
|
20
20
|
export interface DescribeSlotTypeCommandOutput
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
DescribeTestExecutionRequest,
|
|
16
16
|
DescribeTestExecutionResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_1";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface DescribeTestExecutionCommandInput
|
|
20
20
|
extends DescribeTestExecutionRequest {}
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
DescribeTestSetRequest,
|
|
16
16
|
DescribeTestSetResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_1";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface DescribeTestSetCommandInput extends DescribeTestSetRequest {}
|
|
20
20
|
export interface DescribeTestSetCommandOutput
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
DescribeTestSetDiscrepancyReportRequest,
|
|
16
16
|
DescribeTestSetDiscrepancyReportResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_1";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface DescribeTestSetDiscrepancyReportCommandInput
|
|
20
20
|
extends DescribeTestSetDiscrepancyReportRequest {}
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
DescribeTestSetGenerationRequest,
|
|
16
16
|
DescribeTestSetGenerationResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_1";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface DescribeTestSetGenerationCommandInput
|
|
20
20
|
extends DescribeTestSetGenerationRequest {}
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
GetTestExecutionArtifactsUrlRequest,
|
|
16
16
|
GetTestExecutionArtifactsUrlResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_1";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface GetTestExecutionArtifactsUrlCommandInput
|
|
20
20
|
extends GetTestExecutionArtifactsUrlRequest {}
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
ListAggregatedUtterancesRequest,
|
|
16
16
|
ListAggregatedUtterancesResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_1";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface ListAggregatedUtterancesCommandInput
|
|
20
20
|
extends ListAggregatedUtterancesRequest {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
LexModelsV2ClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LexModelsV2Client";
|
|
14
|
+
import {
|
|
15
|
+
ListIntentMetricsRequest,
|
|
16
|
+
ListIntentMetricsResponse,
|
|
17
|
+
} from "../models/models_1";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListIntentMetricsCommandInput
|
|
20
|
+
extends ListIntentMetricsRequest {}
|
|
21
|
+
export interface ListIntentMetricsCommandOutput
|
|
22
|
+
extends ListIntentMetricsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListIntentMetricsCommand extends $Command<
|
|
25
|
+
ListIntentMetricsCommandInput,
|
|
26
|
+
ListIntentMetricsCommandOutput,
|
|
27
|
+
LexModelsV2ClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListIntentMetricsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListIntentMetricsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: LexModelsV2ClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<ListIntentMetricsCommandInput, ListIntentMetricsCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
LexModelsV2ClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LexModelsV2Client";
|
|
14
|
+
import {
|
|
15
|
+
ListIntentPathsRequest,
|
|
16
|
+
ListIntentPathsResponse,
|
|
17
|
+
} from "../models/models_1";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListIntentPathsCommandInput extends ListIntentPathsRequest {}
|
|
20
|
+
export interface ListIntentPathsCommandOutput
|
|
21
|
+
extends ListIntentPathsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListIntentPathsCommand extends $Command<
|
|
24
|
+
ListIntentPathsCommandInput,
|
|
25
|
+
ListIntentPathsCommandOutput,
|
|
26
|
+
LexModelsV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListIntentPathsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListIntentPathsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: LexModelsV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListIntentPathsCommandInput, ListIntentPathsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
LexModelsV2ClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LexModelsV2Client";
|
|
14
|
+
import {
|
|
15
|
+
ListIntentStageMetricsRequest,
|
|
16
|
+
ListIntentStageMetricsResponse,
|
|
17
|
+
} from "../models/models_1";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListIntentStageMetricsCommandInput
|
|
20
|
+
extends ListIntentStageMetricsRequest {}
|
|
21
|
+
export interface ListIntentStageMetricsCommandOutput
|
|
22
|
+
extends ListIntentStageMetricsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListIntentStageMetricsCommand extends $Command<
|
|
25
|
+
ListIntentStageMetricsCommandInput,
|
|
26
|
+
ListIntentStageMetricsCommandOutput,
|
|
27
|
+
LexModelsV2ClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListIntentStageMetricsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListIntentStageMetricsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: LexModelsV2ClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListIntentStageMetricsCommandInput,
|
|
38
|
+
ListIntentStageMetricsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|