@aws-sdk/client-connect 3.1110.0 → 3.1112.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/index.js +206 -9
  3. package/dist-es/Connect.js +12 -0
  4. package/dist-es/commands/CreateExtractionDefinitionCommand.js +4 -0
  5. package/dist-es/commands/DeleteExtractionDefinitionCommand.js +4 -0
  6. package/dist-es/commands/DescribeExtractionDefinitionCommand.js +4 -0
  7. package/dist-es/commands/ListExtractionDefinitionsCommand.js +4 -0
  8. package/dist-es/commands/UpdateExtractionDefinitionCommand.js +4 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/enums.js +7 -0
  11. package/dist-es/pagination/ListExtractionDefinitionsPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +146 -8
  14. package/dist-types/Connect.d.ts +42 -0
  15. package/dist-types/ConnectClient.d.ts +7 -2
  16. package/dist-types/commands/CreateExtractionDefinitionCommand.d.ts +111 -0
  17. package/dist-types/commands/CreateRuleCommand.d.ts +9 -2
  18. package/dist-types/commands/CreateTestCaseCommand.d.ts +1 -1
  19. package/dist-types/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
  20. package/dist-types/commands/CreateUseCaseCommand.d.ts +1 -1
  21. package/dist-types/commands/DeleteExtractionDefinitionCommand.d.ts +85 -0
  22. package/dist-types/commands/DescribeExtractionDefinitionCommand.d.ts +107 -0
  23. package/dist-types/commands/DescribeRuleCommand.d.ts +9 -2
  24. package/dist-types/commands/GetCurrentMetricDataCommand.d.ts +1 -1
  25. package/dist-types/commands/GetCurrentUserDataCommand.d.ts +1 -2
  26. package/dist-types/commands/ListExtractionDefinitionsCommand.d.ts +98 -0
  27. package/dist-types/commands/ListRulesCommand.d.ts +3 -3
  28. package/dist-types/commands/SearchContactEvaluationsCommand.d.ts +1 -1
  29. package/dist-types/commands/SearchContactFlowModulesCommand.d.ts +1 -1
  30. package/dist-types/commands/SearchRulesCommand.d.ts +2 -2
  31. package/dist-types/commands/StartAssistantContactCommand.d.ts +4 -1
  32. package/dist-types/commands/UpdateExtractionDefinitionCommand.d.ts +100 -0
  33. package/dist-types/commands/UpdateRuleCommand.d.ts +8 -1
  34. package/dist-types/commands/UpdateViewMetadataCommand.d.ts +2 -1
  35. package/dist-types/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateWorkspacePageCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
  38. package/dist-types/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
  39. package/dist-types/commands/index.d.ts +5 -0
  40. package/dist-types/models/enums.d.ts +15 -0
  41. package/dist-types/models/models_0.d.ts +128 -188
  42. package/dist-types/models/models_1.d.ts +285 -492
  43. package/dist-types/models/models_2.d.ts +1736 -1606
  44. package/dist-types/models/models_3.d.ts +2192 -2081
  45. package/dist-types/models/models_4.d.ts +367 -7
  46. package/dist-types/pagination/ListExtractionDefinitionsPaginator.d.ts +7 -0
  47. package/dist-types/pagination/index.d.ts +1 -0
  48. package/dist-types/runtimeConfig.browser.d.ts +40 -40
  49. package/dist-types/runtimeConfig.d.ts +36 -36
  50. package/dist-types/runtimeConfig.native.d.ts +38 -38
  51. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  52. package/dist-types/schemas/schemas_0.d.ts +22 -0
  53. package/dist-types/ts3.4/Connect.d.ts +92 -0
  54. package/dist-types/ts3.4/ConnectClient.d.ts +30 -0
  55. package/dist-types/ts3.4/commands/CreateExtractionDefinitionCommand.d.ts +42 -0
  56. package/dist-types/ts3.4/commands/CreateTestCaseCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/CreateUseCaseCommand.d.ts +1 -1
  59. package/dist-types/ts3.4/commands/DeleteExtractionDefinitionCommand.d.ts +42 -0
  60. package/dist-types/ts3.4/commands/DescribeExtractionDefinitionCommand.d.ts +42 -0
  61. package/dist-types/ts3.4/commands/GetCurrentMetricDataCommand.d.ts +1 -1
  62. package/dist-types/ts3.4/commands/GetCurrentUserDataCommand.d.ts +1 -2
  63. package/dist-types/ts3.4/commands/ListExtractionDefinitionsCommand.d.ts +42 -0
  64. package/dist-types/ts3.4/commands/SearchContactEvaluationsCommand.d.ts +1 -1
  65. package/dist-types/ts3.4/commands/SearchContactFlowModulesCommand.d.ts +1 -1
  66. package/dist-types/ts3.4/commands/UpdateExtractionDefinitionCommand.d.ts +42 -0
  67. package/dist-types/ts3.4/commands/UpdateViewMetadataCommand.d.ts +2 -1
  68. package/dist-types/ts3.4/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
  69. package/dist-types/ts3.4/commands/UpdateWorkspacePageCommand.d.ts +1 -1
  70. package/dist-types/ts3.4/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
  71. package/dist-types/ts3.4/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
  72. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  73. package/dist-types/ts3.4/models/enums.d.ts +8 -0
  74. package/dist-types/ts3.4/models/models_0.d.ts +31 -46
  75. package/dist-types/ts3.4/models/models_1.d.ts +72 -72
  76. package/dist-types/ts3.4/models/models_2.d.ts +89 -102
  77. package/dist-types/ts3.4/models/models_3.d.ts +112 -104
  78. package/dist-types/ts3.4/models/models_4.d.ts +109 -14
  79. package/dist-types/ts3.4/pagination/ListExtractionDefinitionsPaginator.d.ts +11 -0
  80. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  81. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +56 -58
  82. package/dist-types/ts3.4/runtimeConfig.d.ts +58 -58
  83. package/dist-types/ts3.4/runtimeConfig.native.d.ts +60 -62
  84. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
  85. package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
  86. package/package.json +5 -5
@@ -0,0 +1,42 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ DescribeExtractionDefinitionRequest,
4
+ DescribeExtractionDefinitionResponse,
5
+ } from "../models/models_1";
6
+ export { __MetadataBearer };
7
+ export interface DescribeExtractionDefinitionCommandInput extends DescribeExtractionDefinitionRequest {}
8
+ export interface DescribeExtractionDefinitionCommandOutput
9
+ extends DescribeExtractionDefinitionResponse, __MetadataBearer {}
10
+ declare const DescribeExtractionDefinitionCommand_base: {
11
+ new (
12
+ input: DescribeExtractionDefinitionCommandInput,
13
+ ): import("@smithy/core/client").CommandImpl<
14
+ DescribeExtractionDefinitionCommandInput,
15
+ DescribeExtractionDefinitionCommandOutput,
16
+ import("..").ConnectClientResolvedConfig,
17
+ import("..").ServiceInputTypes,
18
+ import("..").ServiceOutputTypes
19
+ >;
20
+ new (
21
+ input: DescribeExtractionDefinitionCommandInput,
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ DescribeExtractionDefinitionCommandInput,
24
+ DescribeExtractionDefinitionCommandOutput,
25
+ import("..").ConnectClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
28
+ >;
29
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
+ };
31
+ export declare class DescribeExtractionDefinitionCommand extends DescribeExtractionDefinitionCommand_base {
32
+ protected static __types: {
33
+ api: {
34
+ input: DescribeExtractionDefinitionRequest;
35
+ output: DescribeExtractionDefinitionResponse;
36
+ };
37
+ sdk: {
38
+ input: DescribeExtractionDefinitionCommandInput;
39
+ output: DescribeExtractionDefinitionCommandOutput;
40
+ };
41
+ };
42
+ }
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { GetCurrentMetricDataRequest, GetCurrentMetricDataResponse } from "../models/models_1";
2
+ import { GetCurrentMetricDataRequest, GetCurrentMetricDataResponse } from "../models/models_2";
3
3
  export { __MetadataBearer };
4
4
  export interface GetCurrentMetricDataCommandInput extends GetCurrentMetricDataRequest {}
5
5
  export interface GetCurrentMetricDataCommandOutput
@@ -1,6 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { GetCurrentUserDataRequest } from "../models/models_1";
3
- import { GetCurrentUserDataResponse } from "../models/models_2";
2
+ import { GetCurrentUserDataRequest, GetCurrentUserDataResponse } from "../models/models_2";
4
3
  export { __MetadataBearer };
5
4
  export interface GetCurrentUserDataCommandInput extends GetCurrentUserDataRequest {}
6
5
  export interface GetCurrentUserDataCommandOutput
@@ -0,0 +1,42 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ ListExtractionDefinitionsRequest,
4
+ ListExtractionDefinitionsResponse,
5
+ } from "../models/models_2";
6
+ export { __MetadataBearer };
7
+ export interface ListExtractionDefinitionsCommandInput extends ListExtractionDefinitionsRequest {}
8
+ export interface ListExtractionDefinitionsCommandOutput
9
+ extends ListExtractionDefinitionsResponse, __MetadataBearer {}
10
+ declare const ListExtractionDefinitionsCommand_base: {
11
+ new (
12
+ input: ListExtractionDefinitionsCommandInput,
13
+ ): import("@smithy/core/client").CommandImpl<
14
+ ListExtractionDefinitionsCommandInput,
15
+ ListExtractionDefinitionsCommandOutput,
16
+ import("..").ConnectClientResolvedConfig,
17
+ import("..").ServiceInputTypes,
18
+ import("..").ServiceOutputTypes
19
+ >;
20
+ new (
21
+ input: ListExtractionDefinitionsCommandInput,
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ ListExtractionDefinitionsCommandInput,
24
+ ListExtractionDefinitionsCommandOutput,
25
+ import("..").ConnectClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
28
+ >;
29
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
+ };
31
+ export declare class ListExtractionDefinitionsCommand extends ListExtractionDefinitionsCommand_base {
32
+ protected static __types: {
33
+ api: {
34
+ input: ListExtractionDefinitionsRequest;
35
+ output: ListExtractionDefinitionsResponse;
36
+ };
37
+ sdk: {
38
+ input: ListExtractionDefinitionsCommandInput;
39
+ output: ListExtractionDefinitionsCommandOutput;
40
+ };
41
+ };
42
+ }
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { SearchContactEvaluationsResponse } from "../models/models_2";
2
+ import { SearchContactEvaluationsResponse } from "../models/models_3";
3
3
  import { SearchContactEvaluationsRequest } from "../models/models_4";
4
4
  export { __MetadataBearer };
5
5
  export interface SearchContactEvaluationsCommandInput extends SearchContactEvaluationsRequest {}
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { SearchContactFlowModulesResponse } from "../models/models_2";
2
+ import { SearchContactFlowModulesResponse } from "../models/models_3";
3
3
  import { SearchContactFlowModulesRequest } from "../models/models_4";
4
4
  export { __MetadataBearer };
5
5
  export interface SearchContactFlowModulesCommandInput extends SearchContactFlowModulesRequest {}
@@ -0,0 +1,42 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ UpdateExtractionDefinitionRequest,
4
+ UpdateExtractionDefinitionResponse,
5
+ } from "../models/models_3";
6
+ export { __MetadataBearer };
7
+ export interface UpdateExtractionDefinitionCommandInput extends UpdateExtractionDefinitionRequest {}
8
+ export interface UpdateExtractionDefinitionCommandOutput
9
+ extends UpdateExtractionDefinitionResponse, __MetadataBearer {}
10
+ declare const UpdateExtractionDefinitionCommand_base: {
11
+ new (
12
+ input: UpdateExtractionDefinitionCommandInput,
13
+ ): import("@smithy/core/client").CommandImpl<
14
+ UpdateExtractionDefinitionCommandInput,
15
+ UpdateExtractionDefinitionCommandOutput,
16
+ import("..").ConnectClientResolvedConfig,
17
+ import("..").ServiceInputTypes,
18
+ import("..").ServiceOutputTypes
19
+ >;
20
+ new (
21
+ input: UpdateExtractionDefinitionCommandInput,
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ UpdateExtractionDefinitionCommandInput,
24
+ UpdateExtractionDefinitionCommandOutput,
25
+ import("..").ConnectClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
28
+ >;
29
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
+ };
31
+ export declare class UpdateExtractionDefinitionCommand extends UpdateExtractionDefinitionCommand_base {
32
+ protected static __types: {
33
+ api: {
34
+ input: UpdateExtractionDefinitionRequest;
35
+ output: {};
36
+ };
37
+ sdk: {
38
+ input: UpdateExtractionDefinitionCommandInput;
39
+ output: UpdateExtractionDefinitionCommandOutput;
40
+ };
41
+ };
42
+ }
@@ -1,5 +1,6 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { UpdateViewMetadataRequest, UpdateViewMetadataResponse } from "../models/models_3";
2
+ import { UpdateViewMetadataRequest } from "../models/models_3";
3
+ import { UpdateViewMetadataResponse } from "../models/models_4";
3
4
  export { __MetadataBearer };
4
5
  export interface UpdateViewMetadataCommandInput extends UpdateViewMetadataRequest {}
5
6
  export interface UpdateViewMetadataCommandOutput
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import {
3
3
  UpdateWorkspaceMetadataRequest,
4
4
  UpdateWorkspaceMetadataResponse,
5
- } from "../models/models_3";
5
+ } from "../models/models_4";
6
6
  export { __MetadataBearer };
7
7
  export interface UpdateWorkspaceMetadataCommandInput extends UpdateWorkspaceMetadataRequest {}
8
8
  export interface UpdateWorkspaceMetadataCommandOutput
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { UpdateWorkspacePageRequest, UpdateWorkspacePageResponse } from "../models/models_3";
2
+ import { UpdateWorkspacePageRequest, UpdateWorkspacePageResponse } from "../models/models_4";
3
3
  export { __MetadataBearer };
4
4
  export interface UpdateWorkspacePageCommandInput extends UpdateWorkspacePageRequest {}
5
5
  export interface UpdateWorkspacePageCommandOutput
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { UpdateWorkspaceThemeRequest, UpdateWorkspaceThemeResponse } from "../models/models_3";
2
+ import { UpdateWorkspaceThemeRequest, UpdateWorkspaceThemeResponse } from "../models/models_4";
3
3
  export { __MetadataBearer };
4
4
  export interface UpdateWorkspaceThemeCommandInput extends UpdateWorkspaceThemeRequest {}
5
5
  export interface UpdateWorkspaceThemeCommandOutput
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import {
3
3
  UpdateWorkspaceVisibilityRequest,
4
4
  UpdateWorkspaceVisibilityResponse,
5
- } from "../models/models_3";
5
+ } from "../models/models_4";
6
6
  export { __MetadataBearer };
7
7
  export interface UpdateWorkspaceVisibilityCommandInput extends UpdateWorkspaceVisibilityRequest {}
8
8
  export interface UpdateWorkspaceVisibilityCommandOutput
@@ -43,6 +43,7 @@ export * from "./CreateDataTableAttributeCommand";
43
43
  export * from "./CreateDataTableCommand";
44
44
  export * from "./CreateEmailAddressCommand";
45
45
  export * from "./CreateEvaluationFormCommand";
46
+ export * from "./CreateExtractionDefinitionCommand";
46
47
  export * from "./CreateHoursOfOperationCommand";
47
48
  export * from "./CreateHoursOfOperationOverrideCommand";
48
49
  export * from "./CreateInstanceCommand";
@@ -83,6 +84,7 @@ export * from "./DeleteDataTableAttributeCommand";
83
84
  export * from "./DeleteDataTableCommand";
84
85
  export * from "./DeleteEmailAddressCommand";
85
86
  export * from "./DeleteEvaluationFormCommand";
87
+ export * from "./DeleteExtractionDefinitionCommand";
86
88
  export * from "./DeleteHoursOfOperationCommand";
87
89
  export * from "./DeleteHoursOfOperationOverrideCommand";
88
90
  export * from "./DeleteInstanceCommand";
@@ -122,6 +124,7 @@ export * from "./DescribeDataTableAttributeCommand";
122
124
  export * from "./DescribeDataTableCommand";
123
125
  export * from "./DescribeEmailAddressCommand";
124
126
  export * from "./DescribeEvaluationFormCommand";
127
+ export * from "./DescribeExtractionDefinitionCommand";
125
128
  export * from "./DescribeHoursOfOperationCommand";
126
129
  export * from "./DescribeHoursOfOperationOverrideCommand";
127
130
  export * from "./DescribeInstanceAttributeCommand";
@@ -206,6 +209,7 @@ export * from "./ListDefaultVocabulariesCommand";
206
209
  export * from "./ListEntitySecurityProfilesCommand";
207
210
  export * from "./ListEvaluationFormVersionsCommand";
208
211
  export * from "./ListEvaluationFormsCommand";
212
+ export * from "./ListExtractionDefinitionsCommand";
209
213
  export * from "./ListFlowAssociationsCommand";
210
214
  export * from "./ListHoursOfOperationOverridesCommand";
211
215
  export * from "./ListHoursOfOperationsCommand";
@@ -339,6 +343,7 @@ export * from "./UpdateDataTableMetadataCommand";
339
343
  export * from "./UpdateDataTablePrimaryValuesCommand";
340
344
  export * from "./UpdateEmailAddressMetadataCommand";
341
345
  export * from "./UpdateEvaluationFormCommand";
346
+ export * from "./UpdateExtractionDefinitionCommand";
342
347
  export * from "./UpdateHoursOfOperationCommand";
343
348
  export * from "./UpdateHoursOfOperationOverrideCommand";
344
349
  export * from "./UpdateInstanceAttributeCommand";
@@ -8,6 +8,7 @@ export declare const ActionType: {
8
8
  readonly CREATE_CASE: "CREATE_CASE";
9
9
  readonly CREATE_TASK: "CREATE_TASK";
10
10
  readonly END_ASSOCIATED_TASKS: "END_ASSOCIATED_TASKS";
11
+ readonly EXTRACT_INFORMATION: "EXTRACT_INFORMATION";
11
12
  readonly GENERATE_EVENTBRIDGE_EVENT: "GENERATE_EVENTBRIDGE_EVENT";
12
13
  readonly SEND_NOTIFICATION: "SEND_NOTIFICATION";
13
14
  readonly SUBMIT_AUTO_EVALUATION: "SUBMIT_AUTO_EVALUATION";
@@ -459,6 +460,11 @@ export declare const ContactInteractionType: {
459
460
  };
460
461
  export type ContactInteractionType =
461
462
  (typeof ContactInteractionType)[keyof typeof ContactInteractionType];
463
+ export declare const NotFoundBehaviorType: {
464
+ readonly OMIT: "OMIT";
465
+ readonly USE_DEFAULT_VALUE: "USE_DEFAULT_VALUE";
466
+ };
467
+ export type NotFoundBehaviorType = (typeof NotFoundBehaviorType)[keyof typeof NotFoundBehaviorType];
462
468
  export declare const HoursOfOperationDays: {
463
469
  readonly FRIDAY: "FRIDAY";
464
470
  readonly MONDAY: "MONDAY";
@@ -634,6 +640,8 @@ export declare const RulePublishStatus: {
634
640
  };
635
641
  export type RulePublishStatus = (typeof RulePublishStatus)[keyof typeof RulePublishStatus];
636
642
  export declare const EventSourceName: {
643
+ readonly OnAfterCallWorkAvailable: "OnAfterCallWorkAvailable";
644
+ readonly OnAfterChatWorkAvailable: "OnAfterChatWorkAvailable";
637
645
  readonly OnAlertUpdate: "OnAlertUpdate";
638
646
  readonly OnCaseCreate: "OnCaseCreate";
639
647
  readonly OnCaseUpdate: "OnCaseUpdate";
@@ -53,6 +53,7 @@ import {
53
53
  MetricStatus,
54
54
  MetricUnit,
55
55
  MultiSelectQuestionRuleCategoryAutomationCondition,
56
+ NotFoundBehaviorType,
56
57
  NotificationContentType,
57
58
  NotificationDeliveryType,
58
59
  NumericQuestionPropertyAutomationLabel,
@@ -78,10 +79,7 @@ import {
78
79
  StringComparisonType,
79
80
  TaskTemplateFieldType,
80
81
  TaskTemplateStatus,
81
- TestCaseEntryPointType,
82
- TestCaseStatus,
83
82
  TrendIndicator,
84
- UseCaseType,
85
83
  VideoCapability,
86
84
  VocabularyLanguageCode,
87
85
  VoiceEnhancementMode,
@@ -1213,6 +1211,29 @@ export interface CreateEvaluationFormResponse {
1213
1211
  EvaluationFormId: string | undefined;
1214
1212
  EvaluationFormArn: string | undefined;
1215
1213
  }
1214
+ export interface ExtractionDefinitionDisplay {
1215
+ Label?: string | undefined;
1216
+ }
1217
+ export interface ExtractionDefinitionNotFoundBehavior {
1218
+ Behavior: NotFoundBehaviorType | undefined;
1219
+ DefaultValue?: string | undefined;
1220
+ }
1221
+ export interface ExtractionConfiguration {
1222
+ PromptHint: string | undefined;
1223
+ NotFoundBehavior?: ExtractionDefinitionNotFoundBehavior | undefined;
1224
+ }
1225
+ export interface CreateExtractionDefinitionRequest {
1226
+ ClientToken?: string | undefined;
1227
+ InstanceId: string | undefined;
1228
+ Name: string | undefined;
1229
+ ExtractionConfiguration: ExtractionConfiguration | undefined;
1230
+ Display?: ExtractionDefinitionDisplay | undefined;
1231
+ Tags?: Record<string, string> | undefined;
1232
+ }
1233
+ export interface CreateExtractionDefinitionResponse {
1234
+ ExtractionDefinitionArn: string | undefined;
1235
+ ExtractionDefinitionId: string | undefined;
1236
+ }
1216
1237
  export interface HoursOfOperationTimeSlice {
1217
1238
  Hours: number | undefined;
1218
1239
  Minutes: number | undefined;
@@ -1544,6 +1565,12 @@ export interface EndAssociatedTasksActionDefinition {}
1544
1565
  export interface EventBridgeActionDefinition {
1545
1566
  Name: string | undefined;
1546
1567
  }
1568
+ export interface RulesExtractionDefinitionIdentifier {
1569
+ Identifier: string | undefined;
1570
+ }
1571
+ export interface ExtractInformationActionDefinition {
1572
+ RulesExtractionDefinitions: RulesExtractionDefinitionIdentifier[] | undefined;
1573
+ }
1547
1574
  export interface NotificationRecipientType {
1548
1575
  UserTags?: Record<string, string> | undefined;
1549
1576
  UserIds?: string[] | undefined;
@@ -1579,6 +1606,7 @@ export interface RuleAction {
1579
1606
  AssignSlaAction?: AssignSlaActionDefinition | undefined;
1580
1607
  EndAssociatedTasksAction?: EndAssociatedTasksActionDefinition | undefined;
1581
1608
  SubmitAutoEvaluationAction?: SubmitAutoEvaluationActionDefinition | undefined;
1609
+ ExtractInformationAction?: ExtractInformationActionDefinition | undefined;
1582
1610
  }
1583
1611
  export interface RuleTriggerEventSource {
1584
1612
  EventSourceName: EventSourceName | undefined;
@@ -1695,46 +1723,3 @@ export interface VoiceCallEntryPointParameters {
1695
1723
  DestinationPhoneNumber?: string | undefined;
1696
1724
  FlowId?: string | undefined;
1697
1725
  }
1698
- export interface TestCaseEntryPoint {
1699
- Type?: TestCaseEntryPointType | undefined;
1700
- VoiceCallEntryPointParameters?: VoiceCallEntryPointParameters | undefined;
1701
- ChatEntryPointParameters?: ChatEntryPointParameters | undefined;
1702
- }
1703
- export interface CreateTestCaseRequest {
1704
- InstanceId: string | undefined;
1705
- Name: string | undefined;
1706
- Description?: string | undefined;
1707
- Content: string | undefined;
1708
- EntryPoint?: TestCaseEntryPoint | undefined;
1709
- InitializationData?: string | undefined;
1710
- Status?: TestCaseStatus | undefined;
1711
- TestCaseId?: string | undefined;
1712
- Tags?: Record<string, string> | undefined;
1713
- LastModifiedTime?: Date | undefined;
1714
- LastModifiedRegion?: string | undefined;
1715
- }
1716
- export interface CreateTestCaseResponse {
1717
- TestCaseId?: string | undefined;
1718
- TestCaseArn?: string | undefined;
1719
- }
1720
- export interface CreateTrafficDistributionGroupRequest {
1721
- Name: string | undefined;
1722
- Description?: string | undefined;
1723
- InstanceId: string | undefined;
1724
- ClientToken?: string | undefined;
1725
- Tags?: Record<string, string> | undefined;
1726
- }
1727
- export interface CreateTrafficDistributionGroupResponse {
1728
- Id?: string | undefined;
1729
- Arn?: string | undefined;
1730
- }
1731
- export interface CreateUseCaseRequest {
1732
- InstanceId: string | undefined;
1733
- IntegrationAssociationId: string | undefined;
1734
- UseCaseType: UseCaseType | undefined;
1735
- Tags?: Record<string, string> | undefined;
1736
- }
1737
- export interface CreateUseCaseResponse {
1738
- UseCaseId?: string | undefined;
1739
- UseCaseArn?: string | undefined;
1740
- }
@@ -12,7 +12,6 @@ import {
12
12
  ContactFlowType,
13
13
  ContactMetricName,
14
14
  ContactParticipantRole,
15
- ContactState,
16
15
  CurrentMetricName,
17
16
  DataTableAttributeValueType,
18
17
  DataTableLockLevel,
@@ -28,7 +27,6 @@ import {
28
27
  FileStatusType,
29
28
  FileUseCaseType,
30
29
  FlowAssociationResourceType,
31
- Grouping,
32
30
  InstanceAttributeType,
33
31
  InstanceReplicationStatus,
34
32
  InstanceStatus,
@@ -58,10 +56,12 @@ import {
58
56
  SortOrder,
59
57
  Status,
60
58
  StorageType,
59
+ TestCaseEntryPointType,
61
60
  TestCaseStatus,
62
61
  TrafficDistributionGroupStatus,
63
62
  TrendIndicator,
64
63
  Unit,
64
+ UseCaseType,
65
65
  ViewStatus,
66
66
  ViewType,
67
67
  Visibility,
@@ -75,15 +75,17 @@ import {
75
75
  AgentQualityMetrics,
76
76
  AgentsCriteria,
77
77
  AgentStatus,
78
- AgentStatusIdentifier,
79
78
  AiAgentInfo,
80
79
  AliasConfiguration,
81
80
  AllowedExtension,
82
81
  AudioQualityMetricsInfo,
82
+ ChatEntryPointParameters,
83
83
  CreatedByInfo,
84
84
  DataTableLockVersion,
85
85
  DeviceInfo,
86
86
  ExternalInvocationConfiguration,
87
+ ExtractionConfiguration,
88
+ ExtractionDefinitionDisplay,
87
89
  FailedBatchAssociationSummary,
88
90
  GranularAccessControlConfiguration,
89
91
  HoursOfOperationConfig,
@@ -98,7 +100,6 @@ import {
98
100
  ParticipantCapabilities,
99
101
  PredefinedAttributeValues,
100
102
  PrimaryValue,
101
- QueueReference,
102
103
  QuickConnectConfig,
103
104
  RecurrenceConfig,
104
105
  RoutingProfileQueueReference,
@@ -106,9 +107,52 @@ import {
106
107
  RuleTriggerEventSource,
107
108
  SecurityProfileItem,
108
109
  SuccessfulBatchAssociationSummary,
109
- TestCaseEntryPoint,
110
110
  Validation,
111
+ VoiceCallEntryPointParameters,
111
112
  } from "./models_0";
113
+ export interface TestCaseEntryPoint {
114
+ Type?: TestCaseEntryPointType | undefined;
115
+ VoiceCallEntryPointParameters?: VoiceCallEntryPointParameters | undefined;
116
+ ChatEntryPointParameters?: ChatEntryPointParameters | undefined;
117
+ }
118
+ export interface CreateTestCaseRequest {
119
+ InstanceId: string | undefined;
120
+ Name: string | undefined;
121
+ Description?: string | undefined;
122
+ Content: string | undefined;
123
+ EntryPoint?: TestCaseEntryPoint | undefined;
124
+ InitializationData?: string | undefined;
125
+ Status?: TestCaseStatus | undefined;
126
+ TestCaseId?: string | undefined;
127
+ Tags?: Record<string, string> | undefined;
128
+ LastModifiedTime?: Date | undefined;
129
+ LastModifiedRegion?: string | undefined;
130
+ }
131
+ export interface CreateTestCaseResponse {
132
+ TestCaseId?: string | undefined;
133
+ TestCaseArn?: string | undefined;
134
+ }
135
+ export interface CreateTrafficDistributionGroupRequest {
136
+ Name: string | undefined;
137
+ Description?: string | undefined;
138
+ InstanceId: string | undefined;
139
+ ClientToken?: string | undefined;
140
+ Tags?: Record<string, string> | undefined;
141
+ }
142
+ export interface CreateTrafficDistributionGroupResponse {
143
+ Id?: string | undefined;
144
+ Arn?: string | undefined;
145
+ }
146
+ export interface CreateUseCaseRequest {
147
+ InstanceId: string | undefined;
148
+ IntegrationAssociationId: string | undefined;
149
+ UseCaseType: UseCaseType | undefined;
150
+ Tags?: Record<string, string> | undefined;
151
+ }
152
+ export interface CreateUseCaseResponse {
153
+ UseCaseId?: string | undefined;
154
+ UseCaseArn?: string | undefined;
155
+ }
112
156
  export interface AutoAcceptConfig {
113
157
  Channel: Channel | undefined;
114
158
  AutoAccept: boolean | undefined;
@@ -381,6 +425,11 @@ export interface DeleteEvaluationFormRequest {
381
425
  EvaluationFormId: string | undefined;
382
426
  EvaluationFormVersion?: number | undefined;
383
427
  }
428
+ export interface DeleteExtractionDefinitionRequest {
429
+ InstanceId: string | undefined;
430
+ ExtractionDefinitionId: string | undefined;
431
+ }
432
+ export interface DeleteExtractionDefinitionResponse {}
384
433
  export interface DeleteHoursOfOperationRequest {
385
434
  InstanceId: string | undefined;
386
435
  HoursOfOperationId: string | undefined;
@@ -1021,6 +1070,24 @@ export interface DescribeEvaluationFormRequest {
1021
1070
  EvaluationFormId: string | undefined;
1022
1071
  EvaluationFormVersion?: number | undefined;
1023
1072
  }
1073
+ export interface DescribeExtractionDefinitionRequest {
1074
+ InstanceId: string | undefined;
1075
+ ExtractionDefinitionId: string | undefined;
1076
+ }
1077
+ export interface ExtractionDefinition {
1078
+ Name: string | undefined;
1079
+ ExtractionDefinitionId: string | undefined;
1080
+ ExtractionDefinitionArn: string | undefined;
1081
+ ExtractionConfiguration: ExtractionConfiguration | undefined;
1082
+ Display?: ExtractionDefinitionDisplay | undefined;
1083
+ CreatedTime: Date | undefined;
1084
+ LastUpdatedTime: Date | undefined;
1085
+ LastUpdatedBy: string | undefined;
1086
+ Tags?: Record<string, string> | undefined;
1087
+ }
1088
+ export interface DescribeExtractionDefinitionResponse {
1089
+ ExtractionDefinition: ExtractionDefinition | undefined;
1090
+ }
1024
1091
  export interface DescribeHoursOfOperationRequest {
1025
1092
  InstanceId: string | undefined;
1026
1093
  HoursOfOperationId: string | undefined;
@@ -1721,70 +1788,3 @@ export interface CurrentMetricSortCriteria {
1721
1788
  SortByMetric?: CurrentMetricName | undefined;
1722
1789
  SortOrder?: SortOrder | undefined;
1723
1790
  }
1724
- export interface GetCurrentMetricDataRequest {
1725
- InstanceId: string | undefined;
1726
- Filters: Filters | undefined;
1727
- Groupings?: Grouping[] | undefined;
1728
- CurrentMetrics: CurrentMetric[] | undefined;
1729
- NextToken?: string | undefined;
1730
- MaxResults?: number | undefined;
1731
- SortCriteria?: CurrentMetricSortCriteria[] | undefined;
1732
- }
1733
- export interface CurrentMetricData {
1734
- Metric?: CurrentMetric | undefined;
1735
- Value?: number | undefined;
1736
- }
1737
- export interface RoutingProfileReference {
1738
- Id?: string | undefined;
1739
- Arn?: string | undefined;
1740
- }
1741
- export interface Dimensions {
1742
- Queue?: QueueReference | undefined;
1743
- Channel?: Channel | undefined;
1744
- RoutingProfile?: RoutingProfileReference | undefined;
1745
- RoutingStepExpression?: string | undefined;
1746
- AgentStatus?: AgentStatusIdentifier | undefined;
1747
- Subtype?: string | undefined;
1748
- ValidationTestType?: string | undefined;
1749
- }
1750
- export interface CurrentMetricResult {
1751
- Dimensions?: Dimensions | undefined;
1752
- Collections?: CurrentMetricData[] | undefined;
1753
- }
1754
- export interface GetCurrentMetricDataResponse {
1755
- NextToken?: string | undefined;
1756
- MetricResults?: CurrentMetricResult[] | undefined;
1757
- DataSnapshotTime?: Date | undefined;
1758
- ApproximateTotalCount?: number | undefined;
1759
- }
1760
- export interface ContactFilter {
1761
- ContactStates?: ContactState[] | undefined;
1762
- }
1763
- export interface UserDataFilters {
1764
- Queues?: string[] | undefined;
1765
- ContactFilter?: ContactFilter | undefined;
1766
- RoutingProfiles?: string[] | undefined;
1767
- Agents?: string[] | undefined;
1768
- UserHierarchyGroups?: string[] | undefined;
1769
- }
1770
- export interface GetCurrentUserDataRequest {
1771
- InstanceId: string | undefined;
1772
- Filters: UserDataFilters | undefined;
1773
- NextToken?: string | undefined;
1774
- MaxResults?: number | undefined;
1775
- }
1776
- export interface HierarchyGroupSummaryReference {
1777
- Id?: string | undefined;
1778
- Arn?: string | undefined;
1779
- }
1780
- export interface HierarchyPathReference {
1781
- LevelOne?: HierarchyGroupSummaryReference | undefined;
1782
- LevelTwo?: HierarchyGroupSummaryReference | undefined;
1783
- LevelThree?: HierarchyGroupSummaryReference | undefined;
1784
- LevelFour?: HierarchyGroupSummaryReference | undefined;
1785
- LevelFive?: HierarchyGroupSummaryReference | undefined;
1786
- }
1787
- export interface UserReference {
1788
- Id?: string | undefined;
1789
- Arn?: string | undefined;
1790
- }