@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
|
@@ -117,6 +117,10 @@ import {
|
|
|
117
117
|
DeleteBotAliasCommandInput,
|
|
118
118
|
DeleteBotAliasCommandOutput,
|
|
119
119
|
} from "./commands/DeleteBotAliasCommand";
|
|
120
|
+
import {
|
|
121
|
+
DeleteBotAnalyzerRecommendationCommandInput,
|
|
122
|
+
DeleteBotAnalyzerRecommendationCommandOutput,
|
|
123
|
+
} from "./commands/DeleteBotAnalyzerRecommendationCommand";
|
|
120
124
|
import {
|
|
121
125
|
DeleteBotCommandInput,
|
|
122
126
|
DeleteBotCommandOutput,
|
|
@@ -177,6 +181,10 @@ import {
|
|
|
177
181
|
DescribeBotAliasCommandInput,
|
|
178
182
|
DescribeBotAliasCommandOutput,
|
|
179
183
|
} from "./commands/DescribeBotAliasCommand";
|
|
184
|
+
import {
|
|
185
|
+
DescribeBotAnalyzerRecommendationCommandInput,
|
|
186
|
+
DescribeBotAnalyzerRecommendationCommandOutput,
|
|
187
|
+
} from "./commands/DescribeBotAnalyzerRecommendationCommand";
|
|
180
188
|
import {
|
|
181
189
|
DescribeBotCommandInput,
|
|
182
190
|
DescribeBotCommandOutput,
|
|
@@ -265,6 +273,10 @@ import {
|
|
|
265
273
|
ListBotAliasReplicasCommandInput,
|
|
266
274
|
ListBotAliasReplicasCommandOutput,
|
|
267
275
|
} from "./commands/ListBotAliasReplicasCommand";
|
|
276
|
+
import {
|
|
277
|
+
ListBotAnalyzerHistoryCommandInput,
|
|
278
|
+
ListBotAnalyzerHistoryCommandOutput,
|
|
279
|
+
} from "./commands/ListBotAnalyzerHistoryCommand";
|
|
268
280
|
import {
|
|
269
281
|
ListBotLocalesCommandInput,
|
|
270
282
|
ListBotLocalesCommandOutput,
|
|
@@ -381,6 +393,10 @@ import {
|
|
|
381
393
|
SearchAssociatedTranscriptsCommandInput,
|
|
382
394
|
SearchAssociatedTranscriptsCommandOutput,
|
|
383
395
|
} from "./commands/SearchAssociatedTranscriptsCommand";
|
|
396
|
+
import {
|
|
397
|
+
StartBotAnalyzerCommandInput,
|
|
398
|
+
StartBotAnalyzerCommandOutput,
|
|
399
|
+
} from "./commands/StartBotAnalyzerCommand";
|
|
384
400
|
import {
|
|
385
401
|
StartBotRecommendationCommandInput,
|
|
386
402
|
StartBotRecommendationCommandOutput,
|
|
@@ -401,6 +417,10 @@ import {
|
|
|
401
417
|
StartTestSetGenerationCommandInput,
|
|
402
418
|
StartTestSetGenerationCommandOutput,
|
|
403
419
|
} from "./commands/StartTestSetGenerationCommand";
|
|
420
|
+
import {
|
|
421
|
+
StopBotAnalyzerCommandInput,
|
|
422
|
+
StopBotAnalyzerCommandOutput,
|
|
423
|
+
} from "./commands/StopBotAnalyzerCommand";
|
|
404
424
|
import {
|
|
405
425
|
StopBotRecommendationCommandInput,
|
|
406
426
|
StopBotRecommendationCommandOutput,
|
|
@@ -479,6 +499,7 @@ export type ServiceInputTypes =
|
|
|
479
499
|
| CreateTestSetDiscrepancyReportCommandInput
|
|
480
500
|
| CreateUploadUrlCommandInput
|
|
481
501
|
| DeleteBotAliasCommandInput
|
|
502
|
+
| DeleteBotAnalyzerRecommendationCommandInput
|
|
482
503
|
| DeleteBotCommandInput
|
|
483
504
|
| DeleteBotLocaleCommandInput
|
|
484
505
|
| DeleteBotReplicaCommandInput
|
|
@@ -494,6 +515,7 @@ export type ServiceInputTypes =
|
|
|
494
515
|
| DeleteTestSetCommandInput
|
|
495
516
|
| DeleteUtterancesCommandInput
|
|
496
517
|
| DescribeBotAliasCommandInput
|
|
518
|
+
| DescribeBotAnalyzerRecommendationCommandInput
|
|
497
519
|
| DescribeBotCommandInput
|
|
498
520
|
| DescribeBotLocaleCommandInput
|
|
499
521
|
| DescribeBotRecommendationCommandInput
|
|
@@ -516,6 +538,7 @@ export type ServiceInputTypes =
|
|
|
516
538
|
| ListAggregatedUtterancesCommandInput
|
|
517
539
|
| ListBotAliasReplicasCommandInput
|
|
518
540
|
| ListBotAliasesCommandInput
|
|
541
|
+
| ListBotAnalyzerHistoryCommandInput
|
|
519
542
|
| ListBotLocalesCommandInput
|
|
520
543
|
| ListBotRecommendationsCommandInput
|
|
521
544
|
| ListBotReplicasCommandInput
|
|
@@ -545,11 +568,13 @@ export type ServiceInputTypes =
|
|
|
545
568
|
| ListUtteranceAnalyticsDataCommandInput
|
|
546
569
|
| ListUtteranceMetricsCommandInput
|
|
547
570
|
| SearchAssociatedTranscriptsCommandInput
|
|
571
|
+
| StartBotAnalyzerCommandInput
|
|
548
572
|
| StartBotRecommendationCommandInput
|
|
549
573
|
| StartBotResourceGenerationCommandInput
|
|
550
574
|
| StartImportCommandInput
|
|
551
575
|
| StartTestExecutionCommandInput
|
|
552
576
|
| StartTestSetGenerationCommandInput
|
|
577
|
+
| StopBotAnalyzerCommandInput
|
|
553
578
|
| StopBotRecommendationCommandInput
|
|
554
579
|
| TagResourceCommandInput
|
|
555
580
|
| UntagResourceCommandInput
|
|
@@ -582,6 +607,7 @@ export type ServiceOutputTypes =
|
|
|
582
607
|
| CreateTestSetDiscrepancyReportCommandOutput
|
|
583
608
|
| CreateUploadUrlCommandOutput
|
|
584
609
|
| DeleteBotAliasCommandOutput
|
|
610
|
+
| DeleteBotAnalyzerRecommendationCommandOutput
|
|
585
611
|
| DeleteBotCommandOutput
|
|
586
612
|
| DeleteBotLocaleCommandOutput
|
|
587
613
|
| DeleteBotReplicaCommandOutput
|
|
@@ -597,6 +623,7 @@ export type ServiceOutputTypes =
|
|
|
597
623
|
| DeleteTestSetCommandOutput
|
|
598
624
|
| DeleteUtterancesCommandOutput
|
|
599
625
|
| DescribeBotAliasCommandOutput
|
|
626
|
+
| DescribeBotAnalyzerRecommendationCommandOutput
|
|
600
627
|
| DescribeBotCommandOutput
|
|
601
628
|
| DescribeBotLocaleCommandOutput
|
|
602
629
|
| DescribeBotRecommendationCommandOutput
|
|
@@ -619,6 +646,7 @@ export type ServiceOutputTypes =
|
|
|
619
646
|
| ListAggregatedUtterancesCommandOutput
|
|
620
647
|
| ListBotAliasReplicasCommandOutput
|
|
621
648
|
| ListBotAliasesCommandOutput
|
|
649
|
+
| ListBotAnalyzerHistoryCommandOutput
|
|
622
650
|
| ListBotLocalesCommandOutput
|
|
623
651
|
| ListBotRecommendationsCommandOutput
|
|
624
652
|
| ListBotReplicasCommandOutput
|
|
@@ -648,11 +676,13 @@ export type ServiceOutputTypes =
|
|
|
648
676
|
| ListUtteranceAnalyticsDataCommandOutput
|
|
649
677
|
| ListUtteranceMetricsCommandOutput
|
|
650
678
|
| SearchAssociatedTranscriptsCommandOutput
|
|
679
|
+
| StartBotAnalyzerCommandOutput
|
|
651
680
|
| StartBotRecommendationCommandOutput
|
|
652
681
|
| StartBotResourceGenerationCommandOutput
|
|
653
682
|
| StartImportCommandOutput
|
|
654
683
|
| StartTestExecutionCommandOutput
|
|
655
684
|
| StartTestSetGenerationCommandOutput
|
|
685
|
+
| StopBotAnalyzerCommandOutput
|
|
656
686
|
| StopBotRecommendationCommandOutput
|
|
657
687
|
| TagResourceCommandOutput
|
|
658
688
|
| UntagResourceCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LexModelsV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LexModelsV2Client";
|
|
8
|
+
import {
|
|
9
|
+
DeleteBotAnalyzerRecommendationRequest,
|
|
10
|
+
DeleteBotAnalyzerRecommendationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteBotAnalyzerRecommendationCommandInput
|
|
15
|
+
extends DeleteBotAnalyzerRecommendationRequest {}
|
|
16
|
+
export interface DeleteBotAnalyzerRecommendationCommandOutput
|
|
17
|
+
extends DeleteBotAnalyzerRecommendationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteBotAnalyzerRecommendationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteBotAnalyzerRecommendationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteBotAnalyzerRecommendationCommandInput,
|
|
24
|
+
DeleteBotAnalyzerRecommendationCommandOutput,
|
|
25
|
+
LexModelsV2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteBotAnalyzerRecommendationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteBotAnalyzerRecommendationCommandInput,
|
|
33
|
+
DeleteBotAnalyzerRecommendationCommandOutput,
|
|
34
|
+
LexModelsV2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteBotAnalyzerRecommendationCommand extends DeleteBotAnalyzerRecommendationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteBotAnalyzerRecommendationRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteBotAnalyzerRecommendationCommandInput;
|
|
48
|
+
output: DeleteBotAnalyzerRecommendationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LexModelsV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LexModelsV2Client";
|
|
8
|
+
import {
|
|
9
|
+
DescribeBotAnalyzerRecommendationRequest,
|
|
10
|
+
DescribeBotAnalyzerRecommendationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeBotAnalyzerRecommendationCommandInput
|
|
15
|
+
extends DescribeBotAnalyzerRecommendationRequest {}
|
|
16
|
+
export interface DescribeBotAnalyzerRecommendationCommandOutput
|
|
17
|
+
extends DescribeBotAnalyzerRecommendationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeBotAnalyzerRecommendationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeBotAnalyzerRecommendationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeBotAnalyzerRecommendationCommandInput,
|
|
24
|
+
DescribeBotAnalyzerRecommendationCommandOutput,
|
|
25
|
+
LexModelsV2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DescribeBotAnalyzerRecommendationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeBotAnalyzerRecommendationCommandInput,
|
|
33
|
+
DescribeBotAnalyzerRecommendationCommandOutput,
|
|
34
|
+
LexModelsV2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeBotAnalyzerRecommendationCommand extends DescribeBotAnalyzerRecommendationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeBotAnalyzerRecommendationRequest;
|
|
44
|
+
output: DescribeBotAnalyzerRecommendationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeBotAnalyzerRecommendationCommandInput;
|
|
48
|
+
output: DescribeBotAnalyzerRecommendationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LexModelsV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LexModelsV2Client";
|
|
8
|
+
import {
|
|
9
|
+
ListBotAnalyzerHistoryRequest,
|
|
10
|
+
ListBotAnalyzerHistoryResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListBotAnalyzerHistoryCommandInput
|
|
15
|
+
extends ListBotAnalyzerHistoryRequest {}
|
|
16
|
+
export interface ListBotAnalyzerHistoryCommandOutput
|
|
17
|
+
extends ListBotAnalyzerHistoryResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListBotAnalyzerHistoryCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListBotAnalyzerHistoryCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListBotAnalyzerHistoryCommandInput,
|
|
24
|
+
ListBotAnalyzerHistoryCommandOutput,
|
|
25
|
+
LexModelsV2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListBotAnalyzerHistoryCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListBotAnalyzerHistoryCommandInput,
|
|
33
|
+
ListBotAnalyzerHistoryCommandOutput,
|
|
34
|
+
LexModelsV2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListBotAnalyzerHistoryCommand extends ListBotAnalyzerHistoryCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListBotAnalyzerHistoryRequest;
|
|
44
|
+
output: ListBotAnalyzerHistoryResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListBotAnalyzerHistoryCommandInput;
|
|
48
|
+
output: ListBotAnalyzerHistoryCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LexModelsV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LexModelsV2Client";
|
|
8
|
+
import {
|
|
9
|
+
StartBotAnalyzerRequest,
|
|
10
|
+
StartBotAnalyzerResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartBotAnalyzerCommandInput extends StartBotAnalyzerRequest {}
|
|
15
|
+
export interface StartBotAnalyzerCommandOutput
|
|
16
|
+
extends StartBotAnalyzerResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const StartBotAnalyzerCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: StartBotAnalyzerCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
StartBotAnalyzerCommandInput,
|
|
23
|
+
StartBotAnalyzerCommandOutput,
|
|
24
|
+
LexModelsV2ClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: StartBotAnalyzerCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StartBotAnalyzerCommandInput,
|
|
32
|
+
StartBotAnalyzerCommandOutput,
|
|
33
|
+
LexModelsV2ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class StartBotAnalyzerCommand extends StartBotAnalyzerCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: StartBotAnalyzerRequest;
|
|
43
|
+
output: StartBotAnalyzerResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: StartBotAnalyzerCommandInput;
|
|
47
|
+
output: StartBotAnalyzerCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LexModelsV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LexModelsV2Client";
|
|
8
|
+
import {
|
|
9
|
+
StopBotAnalyzerRequest,
|
|
10
|
+
StopBotAnalyzerResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StopBotAnalyzerCommandInput extends StopBotAnalyzerRequest {}
|
|
15
|
+
export interface StopBotAnalyzerCommandOutput
|
|
16
|
+
extends StopBotAnalyzerResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const StopBotAnalyzerCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: StopBotAnalyzerCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
StopBotAnalyzerCommandInput,
|
|
23
|
+
StopBotAnalyzerCommandOutput,
|
|
24
|
+
LexModelsV2ClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: StopBotAnalyzerCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StopBotAnalyzerCommandInput,
|
|
32
|
+
StopBotAnalyzerCommandOutput,
|
|
33
|
+
LexModelsV2ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class StopBotAnalyzerCommand extends StopBotAnalyzerCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: StopBotAnalyzerRequest;
|
|
43
|
+
output: StopBotAnalyzerResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: StopBotAnalyzerCommandInput;
|
|
47
|
+
output: StopBotAnalyzerCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -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";
|
|
@@ -25,6 +25,10 @@ export declare const SortOrder: {
|
|
|
25
25
|
readonly Descending: "Descending";
|
|
26
26
|
};
|
|
27
27
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
28
|
+
export declare const AnalysisScope: {
|
|
29
|
+
readonly BotLocale: "BotLocale";
|
|
30
|
+
};
|
|
31
|
+
export type AnalysisScope = (typeof AnalysisScope)[keyof typeof AnalysisScope];
|
|
28
32
|
export declare const AnalyticsInterval: {
|
|
29
33
|
readonly OneDay: "OneDay";
|
|
30
34
|
readonly OneHour: "OneHour";
|
|
@@ -254,6 +258,21 @@ export declare const BotAliasStatus: {
|
|
|
254
258
|
};
|
|
255
259
|
export type BotAliasStatus =
|
|
256
260
|
(typeof BotAliasStatus)[keyof typeof BotAliasStatus];
|
|
261
|
+
export declare const BotAnalyzerStatus: {
|
|
262
|
+
readonly Available: "Available";
|
|
263
|
+
readonly Failed: "Failed";
|
|
264
|
+
readonly Processing: "Processing";
|
|
265
|
+
readonly Stopped: "Stopped";
|
|
266
|
+
readonly Stopping: "Stopping";
|
|
267
|
+
};
|
|
268
|
+
export type BotAnalyzerStatus =
|
|
269
|
+
(typeof BotAnalyzerStatus)[keyof typeof BotAnalyzerStatus];
|
|
270
|
+
export declare const Priority: {
|
|
271
|
+
readonly High: "High";
|
|
272
|
+
readonly Low: "Low";
|
|
273
|
+
readonly Medium: "Medium";
|
|
274
|
+
};
|
|
275
|
+
export type Priority = (typeof Priority)[keyof typeof Priority];
|
|
257
276
|
export declare const BotFilterName: {
|
|
258
277
|
readonly BotName: "BotName";
|
|
259
278
|
readonly BotType: "BotType";
|
|
@@ -28,6 +28,7 @@ import {
|
|
|
28
28
|
BedrockTraceStatus,
|
|
29
29
|
BotAliasReplicationStatus,
|
|
30
30
|
BotAliasStatus,
|
|
31
|
+
BotAnalyzerStatus,
|
|
31
32
|
BotFilterName,
|
|
32
33
|
BotFilterOperator,
|
|
33
34
|
BotLocaleFilterName,
|
|
@@ -58,14 +59,12 @@ import {
|
|
|
58
59
|
ImportExportFileFormat,
|
|
59
60
|
ImportFilterName,
|
|
60
61
|
ImportFilterOperator,
|
|
61
|
-
ImportResourceType,
|
|
62
62
|
ImportSortAttribute,
|
|
63
63
|
ImportStatus,
|
|
64
|
-
IntentFilterName,
|
|
65
|
-
IntentFilterOperator,
|
|
66
64
|
MergeStrategy,
|
|
67
65
|
MessageSelectionStrategy,
|
|
68
66
|
ObfuscationSettingType,
|
|
67
|
+
Priority,
|
|
69
68
|
PromptAttempt,
|
|
70
69
|
SlotResolutionStrategy,
|
|
71
70
|
SlotValueResolutionStrategy,
|
|
@@ -409,6 +408,22 @@ export interface BotAliasTestExecutionTarget {
|
|
|
409
408
|
botAliasId: string | undefined;
|
|
410
409
|
localeId: string | undefined;
|
|
411
410
|
}
|
|
411
|
+
export interface BotAnalyzerHistorySummary {
|
|
412
|
+
botAnalyzerStatus: BotAnalyzerStatus | undefined;
|
|
413
|
+
creationDateTime?: Date | undefined;
|
|
414
|
+
botAnalyzerRequestId: string | undefined;
|
|
415
|
+
}
|
|
416
|
+
export interface IssueLocation {
|
|
417
|
+
botLocale?: string | undefined;
|
|
418
|
+
intentId?: string | undefined;
|
|
419
|
+
slotId?: string | undefined;
|
|
420
|
+
}
|
|
421
|
+
export interface BotAnalyzerRecommendation {
|
|
422
|
+
issueLocation: IssueLocation | undefined;
|
|
423
|
+
priority: Priority | undefined;
|
|
424
|
+
issueDescription: string | undefined;
|
|
425
|
+
proposedFix: string | undefined;
|
|
426
|
+
}
|
|
412
427
|
export interface BotExportSpecification {
|
|
413
428
|
botId: string | undefined;
|
|
414
429
|
botVersion: string | undefined;
|
|
@@ -1133,6 +1148,11 @@ export interface DeleteBotAliasResponse {
|
|
|
1133
1148
|
botId?: string | undefined;
|
|
1134
1149
|
botAliasStatus?: BotAliasStatus | undefined;
|
|
1135
1150
|
}
|
|
1151
|
+
export interface DeleteBotAnalyzerRecommendationRequest {
|
|
1152
|
+
botId: string | undefined;
|
|
1153
|
+
botAnalyzerRequestId: string | undefined;
|
|
1154
|
+
}
|
|
1155
|
+
export interface DeleteBotAnalyzerRecommendationResponse {}
|
|
1136
1156
|
export interface DeleteBotLocaleRequest {
|
|
1137
1157
|
botId: string | undefined;
|
|
1138
1158
|
botVersion: string | undefined;
|
|
@@ -1275,6 +1295,21 @@ export interface DescribeBotAliasResponse {
|
|
|
1275
1295
|
lastUpdatedDateTime?: Date | undefined;
|
|
1276
1296
|
parentBotNetworks?: ParentBotNetwork[] | undefined;
|
|
1277
1297
|
}
|
|
1298
|
+
export interface DescribeBotAnalyzerRecommendationRequest {
|
|
1299
|
+
botId: string | undefined;
|
|
1300
|
+
botAnalyzerRequestId: string | undefined;
|
|
1301
|
+
nextToken?: string | undefined;
|
|
1302
|
+
maxResults?: number | undefined;
|
|
1303
|
+
}
|
|
1304
|
+
export interface DescribeBotAnalyzerRecommendationResponse {
|
|
1305
|
+
botId?: string | undefined;
|
|
1306
|
+
botVersion?: string | undefined;
|
|
1307
|
+
localeId?: string | undefined;
|
|
1308
|
+
botAnalyzerStatus?: BotAnalyzerStatus | undefined;
|
|
1309
|
+
creationDateTime?: Date | undefined;
|
|
1310
|
+
botAnalyzerRecommendationList?: BotAnalyzerRecommendation[] | undefined;
|
|
1311
|
+
nextToken?: string | undefined;
|
|
1312
|
+
}
|
|
1278
1313
|
export interface DescribeBotLocaleRequest {
|
|
1279
1314
|
botId: string | undefined;
|
|
1280
1315
|
botVersion: string | undefined;
|
|
@@ -1644,47 +1679,3 @@ export interface ImportSortBy {
|
|
|
1644
1679
|
attribute: ImportSortAttribute | undefined;
|
|
1645
1680
|
order: SortOrder | undefined;
|
|
1646
1681
|
}
|
|
1647
|
-
export interface ImportSummary {
|
|
1648
|
-
importId?: string | undefined;
|
|
1649
|
-
importedResourceId?: string | undefined;
|
|
1650
|
-
importedResourceName?: string | undefined;
|
|
1651
|
-
importStatus?: ImportStatus | undefined;
|
|
1652
|
-
mergeStrategy?: MergeStrategy | undefined;
|
|
1653
|
-
creationDateTime?: Date | undefined;
|
|
1654
|
-
lastUpdatedDateTime?: Date | undefined;
|
|
1655
|
-
importedResourceType?: ImportResourceType | undefined;
|
|
1656
|
-
}
|
|
1657
|
-
export interface RuntimeHintValue {
|
|
1658
|
-
phrase: string | undefined;
|
|
1659
|
-
}
|
|
1660
|
-
export interface IntentClassificationTestResultItemCounts {
|
|
1661
|
-
totalResultCount: number | undefined;
|
|
1662
|
-
speechTranscriptionResultCounts?:
|
|
1663
|
-
| Partial<Record<TestResultMatchStatus, number>>
|
|
1664
|
-
| undefined;
|
|
1665
|
-
intentMatchResultCounts:
|
|
1666
|
-
| Partial<Record<TestResultMatchStatus, number>>
|
|
1667
|
-
| undefined;
|
|
1668
|
-
}
|
|
1669
|
-
export interface IntentClassificationTestResultItem {
|
|
1670
|
-
intentName: string | undefined;
|
|
1671
|
-
multiTurnConversation: boolean | undefined;
|
|
1672
|
-
resultCounts: IntentClassificationTestResultItemCounts | undefined;
|
|
1673
|
-
}
|
|
1674
|
-
export interface IntentClassificationTestResults {
|
|
1675
|
-
items: IntentClassificationTestResultItem[] | undefined;
|
|
1676
|
-
}
|
|
1677
|
-
export interface IntentFilter {
|
|
1678
|
-
name: IntentFilterName | undefined;
|
|
1679
|
-
values: string[] | undefined;
|
|
1680
|
-
operator: IntentFilterOperator | undefined;
|
|
1681
|
-
}
|
|
1682
|
-
export interface SlotResolutionTestResultItemCounts {
|
|
1683
|
-
totalResultCount: number | undefined;
|
|
1684
|
-
speechTranscriptionResultCounts?:
|
|
1685
|
-
| Partial<Record<TestResultMatchStatus, number>>
|
|
1686
|
-
| undefined;
|
|
1687
|
-
slotMatchResultCounts:
|
|
1688
|
-
| Partial<Record<TestResultMatchStatus, number>>
|
|
1689
|
-
| undefined;
|
|
1690
|
-
}
|