@aws-sdk/client-connect 3.575.0 → 3.577.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 +16 -0
- package/dist-cjs/index.js +167 -11
- package/dist-es/Connect.js +4 -0
- package/dist-es/commands/ReplicateInstanceCommand.js +1 -1
- package/dist-es/commands/SearchContactFlowModulesCommand.js +24 -0
- package/dist-es/commands/SearchContactFlowsCommand.js +24 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/models/models_1.js +0 -4
- package/dist-es/models/models_2.js +9 -5
- package/dist-es/pagination/SearchContactFlowModulesPaginator.js +4 -0
- package/dist-es/pagination/SearchContactFlowsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +98 -0
- package/dist-types/Connect.d.ts +14 -0
- package/dist-types/ConnectClient.d.ts +4 -2
- package/dist-types/commands/CreateContactFlowCommand.d.ts +1 -0
- package/dist-types/commands/DescribeContactFlowCommand.d.ts +10 -0
- package/dist-types/commands/DescribeContactFlowModuleCommand.d.ts +4 -0
- package/dist-types/commands/ListContactFlowsCommand.d.ts +1 -0
- package/dist-types/commands/ReplicateInstanceCommand.d.ts +1 -2
- package/dist-types/commands/SearchContactFlowModulesCommand.d.ts +135 -0
- package/dist-types/commands/SearchContactFlowsCommand.d.ts +143 -0
- package/dist-types/commands/UpdateContactFlowContentCommand.d.ts +4 -0
- package/dist-types/commands/UpdateContactFlowModuleContentCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +27 -52
- package/dist-types/models/models_1.d.ts +131 -97
- package/dist-types/models/models_2.d.ts +352 -92
- package/dist-types/pagination/SearchContactFlowModulesPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchContactFlowsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/Connect.d.ts +34 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/ReplicateInstanceCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchContactFlowModulesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/SearchContactFlowsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -11
- package/dist-types/ts3.4/models/models_1.d.ts +14 -10
- package/dist-types/ts3.4/models/models_2.d.ts +78 -22
- package/dist-types/ts3.4/pagination/SearchContactFlowModulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchContactFlowsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +14 -14
|
@@ -1,6 +1,57 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
|
-
import { ActionSummary, AgentAvailabilityTimer, AgentConfig, AgentContactReference, AgentStatusReference, AgentStatusSummary, AgentStatusType, AnalyticsDataAssociationResult, Application, Channel, ContactFlowModuleState, ContactFlowState, ContactFlowType, ContactState, CreatedByInfo, DirectoryType, Distribution, EvaluationFormVersionStatus, EvaluationScore, EvaluationStatus, EventSourceName, FileStatusType, FileUseCaseType, FlowAssociationResourceType, FlowAssociationSummary,
|
|
3
|
+
import { ActionSummary, AgentAvailabilityTimer, AgentConfig, AgentContactReference, AgentStatusReference, AgentStatusSummary, AgentStatusType, AnalyticsDataAssociationResult, Application, Channel, ContactFlowModuleState, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactState, CreatedByInfo, DirectoryType, Distribution, EvaluationFormVersionStatus, EvaluationScore, EvaluationStatus, EventSourceName, FileStatusType, FileUseCaseType, FlowAssociationResourceType, FlowAssociationSummary, HoursOfOperationConfig, InstanceStorageConfig, InstanceStorageResourceType, IntegrationType, LexBot, LexV2Bot, ListFlowAssociationResourceType, MediaConcurrency, MonitorCapability, OutboundCallerConfig, ParticipantRole, PredefinedAttributeValues, QueueReference, QuickConnectConfig, QuickConnectType, ReferenceType, RoutingProfileQueueReference, RuleAction, RulePublishStatus, RuleTriggerEventSource, SourceType, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UseCaseType, UserIdentityInfo, UserPhoneConfig, UserProficiency, View, ViewStatus, ViewType, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Information about of the hours of operation.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface HoursOfOperation {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The identifier for the hours of operation.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
HoursOfOperationId?: string;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The Amazon Resource Name (ARN) for the hours of operation.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
HoursOfOperationArn?: string;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The name for the hours of operation.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
Name?: string;
|
|
24
|
+
/**
|
|
25
|
+
* <p>The description for the hours of operation.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
Description?: string;
|
|
29
|
+
/**
|
|
30
|
+
* <p>The time zone for the hours of operation.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
TimeZone?: string;
|
|
34
|
+
/**
|
|
35
|
+
* <p>Configuration information for the hours of operation.</p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
Config?: HoursOfOperationConfig[];
|
|
39
|
+
/**
|
|
40
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
Tags?: Record<string, string>;
|
|
44
|
+
/**
|
|
45
|
+
* <p>The timestamp when this resource was last modified.</p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
LastModifiedTime?: Date;
|
|
49
|
+
/**
|
|
50
|
+
* <p>The Amazon Web Services Region where this resource was last modified.</p>
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
LastModifiedRegion?: string;
|
|
54
|
+
}
|
|
4
55
|
/**
|
|
5
56
|
* @public
|
|
6
57
|
*/
|
|
@@ -2067,7 +2118,8 @@ export interface GetAttachedFileRequest {
|
|
|
2067
2118
|
*/
|
|
2068
2119
|
FileId: string | undefined;
|
|
2069
2120
|
/**
|
|
2070
|
-
* <p>Optional override for the expiry of the pre-signed S3 URL in seconds
|
|
2121
|
+
* <p>Optional override for the expiry of the pre-signed S3 URL in seconds. The default value is
|
|
2122
|
+
* 300.</p>
|
|
2071
2123
|
* @public
|
|
2072
2124
|
*/
|
|
2073
2125
|
UrlExpiryInSeconds?: number;
|
|
@@ -2138,9 +2190,6 @@ export interface GetAttachedFileResponse {
|
|
|
2138
2190
|
/**
|
|
2139
2191
|
* <p>The resource to which the attached file is (being) uploaded to. <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateCase.html">Cases</a> are the only
|
|
2140
2192
|
* current supported resource.</p>
|
|
2141
|
-
* <note>
|
|
2142
|
-
* <p>This value must be a valid ARN.</p>
|
|
2143
|
-
* </note>
|
|
2144
2193
|
* @public
|
|
2145
2194
|
*/
|
|
2146
2195
|
AssociatedResourceArn?: string;
|
|
@@ -3605,8 +3654,8 @@ export interface GetMetricDataV2Request {
|
|
|
3605
3654
|
* <code>AGENT_HIERARCHY_LEVEL_TWO</code> | <code>AGENT_HIERARCHY_LEVEL_THREE</code> |
|
|
3606
3655
|
* <code>AGENT_HIERARCHY_LEVEL_FOUR</code> | <code>AGENT_HIERARCHY_LEVEL_FIVE</code> |
|
|
3607
3656
|
* <code>FEATURE</code> | <code>CASE_TEMPLATE_ARN</code> | <code>CASE_STATUS</code> |
|
|
3608
|
-
* <code>contact/segmentAttributes/connect:Subtype</code> |
|
|
3609
|
-
* <code>
|
|
3657
|
+
* <code>contact/segmentAttributes/connect:Subtype</code> | <code>ROUTING_STEP_EXPRESSION</code>
|
|
3658
|
+
* | <code>Q_CONNECT_ENABLED</code>
|
|
3610
3659
|
* </p>
|
|
3611
3660
|
* </li>
|
|
3612
3661
|
* <li>
|
|
@@ -3628,6 +3677,18 @@ export interface GetMetricDataV2Request {
|
|
|
3628
3677
|
* <code>ROUTING_STEP_EXPRESSION</code> is a valid filter key with a filter value up to 3000
|
|
3629
3678
|
* length. This filter is case and order sensitive. JSON string fields must be sorted in ascending
|
|
3630
3679
|
* order and JSON array order should be kept as is.</p>
|
|
3680
|
+
* <p>
|
|
3681
|
+
* <code>Q_CONNECT_ENABLED</code>. TRUE and FALSE are the only valid filterValues for the
|
|
3682
|
+
* <code>Q_CONNECT_ENABLED</code> filter key. </p>
|
|
3683
|
+
* <ul>
|
|
3684
|
+
* <li>
|
|
3685
|
+
* <p>TRUE includes all contacts that had Amazon Q in Connect enabled as part of the flow.</p>
|
|
3686
|
+
* </li>
|
|
3687
|
+
* <li>
|
|
3688
|
+
* <p>FALSE includes all contacts that did not have Amazon Q in Connect enabled as part of the flow</p>
|
|
3689
|
+
* </li>
|
|
3690
|
+
* </ul>
|
|
3691
|
+
* <p>This filter is available only for contact record-driven metrics. </p>
|
|
3631
3692
|
* </li>
|
|
3632
3693
|
* </ul>
|
|
3633
3694
|
* @public
|
|
@@ -3643,8 +3704,8 @@ export interface GetMetricDataV2Request {
|
|
|
3643
3704
|
* <code>AGENT_HIERARCHY_LEVEL_TWO</code> | <code>AGENT_HIERARCHY_LEVEL_THREE</code> |
|
|
3644
3705
|
* <code>AGENT_HIERARCHY_LEVEL_FOUR</code> | <code>AGENT_HIERARCHY_LEVEL_FIVE</code> |
|
|
3645
3706
|
* <code>CASE_TEMPLATE_ARN</code> | <code>CASE_STATUS</code> |
|
|
3646
|
-
* <code>contact/segmentAttributes/connect:Subtype</code> |
|
|
3647
|
-
*
|
|
3707
|
+
* <code>contact/segmentAttributes/connect:Subtype</code> | <code>ROUTING_STEP_EXPRESSION</code> |
|
|
3708
|
+
* <code>Q_CONNECT_ENABLED</code>
|
|
3648
3709
|
* </p>
|
|
3649
3710
|
* @public
|
|
3650
3711
|
*/
|
|
@@ -3658,7 +3719,7 @@ export interface GetMetricDataV2Request {
|
|
|
3658
3719
|
* <dd>
|
|
3659
3720
|
* <p>Unit: Percent</p>
|
|
3660
3721
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature,
|
|
3661
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3722
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3662
3723
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#abandonment-rate-historical">Abandonment rate</a>
|
|
3663
3724
|
* </p>
|
|
3664
3725
|
* </dd>
|
|
@@ -3727,14 +3788,14 @@ export interface GetMetricDataV2Request {
|
|
|
3727
3788
|
* <dd>
|
|
3728
3789
|
* <p>Unit: Seconds</p>
|
|
3729
3790
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature,
|
|
3730
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3791
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3731
3792
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-abandon-time-historical">Average queue abandon time</a>
|
|
3732
3793
|
* </p>
|
|
3733
3794
|
* </dd>
|
|
3734
3795
|
* <dt>AVG_ACTIVE_TIME</dt>
|
|
3735
3796
|
* <dd>
|
|
3736
3797
|
* <p>Unit: Seconds</p>
|
|
3737
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy</p>
|
|
3798
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect</p>
|
|
3738
3799
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-active-time-historical">Average active time</a>
|
|
3739
3800
|
* </p>
|
|
3740
3801
|
* </dd>
|
|
@@ -3744,7 +3805,7 @@ export interface GetMetricDataV2Request {
|
|
|
3744
3805
|
* <p>Valid metric filter key: <code>INITIATION_METHOD</code>
|
|
3745
3806
|
* </p>
|
|
3746
3807
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature,
|
|
3747
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3808
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3748
3809
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-acw-time-historical">Average after contact work time</a>
|
|
3749
3810
|
* </p>
|
|
3750
3811
|
* <note>
|
|
@@ -3769,7 +3830,7 @@ export interface GetMetricDataV2Request {
|
|
|
3769
3830
|
* <dt>AVG_AGENT_PAUSE_TIME</dt>
|
|
3770
3831
|
* <dd>
|
|
3771
3832
|
* <p>Unit: Seconds</p>
|
|
3772
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy</p>
|
|
3833
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect</p>
|
|
3773
3834
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-pause-time-historical">Average agent pause time</a>
|
|
3774
3835
|
* </p>
|
|
3775
3836
|
* </dd>
|
|
@@ -3793,7 +3854,7 @@ export interface GetMetricDataV2Request {
|
|
|
3793
3854
|
* <dd>
|
|
3794
3855
|
* <p>Unit: Seconds</p>
|
|
3795
3856
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature,
|
|
3796
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3857
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3797
3858
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contact-duration-historical">Average contact duration</a>
|
|
3798
3859
|
* </p>
|
|
3799
3860
|
* <note>
|
|
@@ -3804,7 +3865,7 @@ export interface GetMetricDataV2Request {
|
|
|
3804
3865
|
* <dd>
|
|
3805
3866
|
* <p>Unit: Seconds</p>
|
|
3806
3867
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature,
|
|
3807
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3868
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3808
3869
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-conversation-duration-historical">Average conversation duration</a>
|
|
3809
3870
|
* </p>
|
|
3810
3871
|
* </dd>
|
|
@@ -3814,7 +3875,7 @@ export interface GetMetricDataV2Request {
|
|
|
3814
3875
|
* analytics.</p>
|
|
3815
3876
|
* <p>Unit: Seconds</p>
|
|
3816
3877
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
3817
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3878
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3818
3879
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-greeting-time-agent-historical">Average agent greeting time</a>
|
|
3819
3880
|
* </p>
|
|
3820
3881
|
* </dd>
|
|
@@ -3833,7 +3894,7 @@ export interface GetMetricDataV2Request {
|
|
|
3833
3894
|
* <dd>
|
|
3834
3895
|
* <p>Unit: Seconds</p>
|
|
3835
3896
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature,
|
|
3836
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3897
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3837
3898
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-customer-hold-time-historical">Average customer hold time</a>
|
|
3838
3899
|
* </p>
|
|
3839
3900
|
* <note>
|
|
@@ -3844,7 +3905,7 @@ export interface GetMetricDataV2Request {
|
|
|
3844
3905
|
* <dd>
|
|
3845
3906
|
* <p>Unit: Seconds</p>
|
|
3846
3907
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
3847
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3908
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3848
3909
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#avg-customer-hold-time-all-contacts-historical">Average customer hold time all contacts</a>
|
|
3849
3910
|
* </p>
|
|
3850
3911
|
* </dd>
|
|
@@ -3852,7 +3913,7 @@ export interface GetMetricDataV2Request {
|
|
|
3852
3913
|
* <dd>
|
|
3853
3914
|
* <p>Unit: Count</p>
|
|
3854
3915
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature,
|
|
3855
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3916
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3856
3917
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-holds-historical">Average holds</a>
|
|
3857
3918
|
* </p>
|
|
3858
3919
|
* <note>
|
|
@@ -3863,7 +3924,7 @@ export interface GetMetricDataV2Request {
|
|
|
3863
3924
|
* <dd>
|
|
3864
3925
|
* <p>Unit: Seconds</p>
|
|
3865
3926
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
3866
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3927
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3867
3928
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-customer-hold-time-historical">Average agent interaction and customer hold time</a>
|
|
3868
3929
|
* </p>
|
|
3869
3930
|
* </dd>
|
|
@@ -3873,7 +3934,7 @@ export interface GetMetricDataV2Request {
|
|
|
3873
3934
|
* <p>Valid metric filter key: <code>INITIATION_METHOD</code>
|
|
3874
3935
|
* </p>
|
|
3875
3936
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Feature,
|
|
3876
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3937
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3877
3938
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-time-historical">Average agent interaction time</a>
|
|
3878
3939
|
* </p>
|
|
3879
3940
|
* <note>
|
|
@@ -3886,7 +3947,7 @@ export interface GetMetricDataV2Request {
|
|
|
3886
3947
|
* analytics.</p>
|
|
3887
3948
|
* <p>Unit: Count</p>
|
|
3888
3949
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
3889
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3950
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3890
3951
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-agent-historical">Average agent interruptions</a>
|
|
3891
3952
|
* </p>
|
|
3892
3953
|
* </dd>
|
|
@@ -3896,7 +3957,7 @@ export interface GetMetricDataV2Request {
|
|
|
3896
3957
|
* analytics.</p>
|
|
3897
3958
|
* <p>Unit: Seconds</p>
|
|
3898
3959
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
3899
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3960
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3900
3961
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-time-agent-historical">Average agent interruption time</a>
|
|
3901
3962
|
* </p>
|
|
3902
3963
|
* </dd>
|
|
@@ -3906,7 +3967,7 @@ export interface GetMetricDataV2Request {
|
|
|
3906
3967
|
* analytics.</p>
|
|
3907
3968
|
* <p>Unit: Seconds</p>
|
|
3908
3969
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
3909
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3970
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3910
3971
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##average-non-talk-time-historical">Average non-talk time</a>
|
|
3911
3972
|
* </p>
|
|
3912
3973
|
* </dd>
|
|
@@ -3914,7 +3975,7 @@ export interface GetMetricDataV2Request {
|
|
|
3914
3975
|
* <dd>
|
|
3915
3976
|
* <p>Unit: Seconds</p>
|
|
3916
3977
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Feature,
|
|
3917
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3978
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3918
3979
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-answer-time-historical">Average queue answer time</a>
|
|
3919
3980
|
* </p>
|
|
3920
3981
|
* <note>
|
|
@@ -3924,8 +3985,8 @@ export interface GetMetricDataV2Request {
|
|
|
3924
3985
|
* <dt>AVG_RESOLUTION_TIME</dt>
|
|
3925
3986
|
* <dd>
|
|
3926
3987
|
* <p>Unit: Seconds</p>
|
|
3927
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile,
|
|
3928
|
-
*
|
|
3988
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype,
|
|
3989
|
+
* Q in Connect</p>
|
|
3929
3990
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-resolution-time-historical">Average resolution time</a>
|
|
3930
3991
|
* </p>
|
|
3931
3992
|
* </dd>
|
|
@@ -3935,7 +3996,7 @@ export interface GetMetricDataV2Request {
|
|
|
3935
3996
|
* analytics.</p>
|
|
3936
3997
|
* <p>Unit: Seconds</p>
|
|
3937
3998
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
3938
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3999
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3939
4000
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-historical">Average talk time</a>
|
|
3940
4001
|
* </p>
|
|
3941
4002
|
* </dd>
|
|
@@ -3945,7 +4006,7 @@ export interface GetMetricDataV2Request {
|
|
|
3945
4006
|
* analytics.</p>
|
|
3946
4007
|
* <p>Unit: Seconds</p>
|
|
3947
4008
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
3948
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4009
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3949
4010
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-agent-historical">Average agent talk time</a>
|
|
3950
4011
|
* </p>
|
|
3951
4012
|
* </dd>
|
|
@@ -3955,7 +4016,7 @@ export interface GetMetricDataV2Request {
|
|
|
3955
4016
|
* analytics.</p>
|
|
3956
4017
|
* <p>Unit: Seconds</p>
|
|
3957
4018
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
3958
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4019
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3959
4020
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-customer-historical">Average customer talk time</a>
|
|
3960
4021
|
* </p>
|
|
3961
4022
|
* </dd>
|
|
@@ -3971,7 +4032,7 @@ export interface GetMetricDataV2Request {
|
|
|
3971
4032
|
* <dd>
|
|
3972
4033
|
* <p>Unit: Count</p>
|
|
3973
4034
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
3974
|
-
* contact/segmentAttributes/connect:Subtype, RoutingStepExpression</p>
|
|
4035
|
+
* contact/segmentAttributes/connect:Subtype, RoutingStepExpression, Q in Connect</p>
|
|
3975
4036
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical">Contact abandoned</a>
|
|
3976
4037
|
* </p>
|
|
3977
4038
|
* </dd>
|
|
@@ -3981,7 +4042,7 @@ export interface GetMetricDataV2Request {
|
|
|
3981
4042
|
* <p>Valid metric filter key: <code>INITIATION_METHOD</code>
|
|
3982
4043
|
* </p>
|
|
3983
4044
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Feature,
|
|
3984
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4045
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
3985
4046
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-created-historical">Contacts created</a>
|
|
3986
4047
|
* </p>
|
|
3987
4048
|
* <note>
|
|
@@ -3995,7 +4056,7 @@ export interface GetMetricDataV2Request {
|
|
|
3995
4056
|
* <code>DISCONNECT_REASON</code>
|
|
3996
4057
|
* </p>
|
|
3997
4058
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature,
|
|
3998
|
-
* contact/segmentAttributes/connect:Subtype, RoutingStepExpression</p>
|
|
4059
|
+
* contact/segmentAttributes/connect:Subtype, RoutingStepExpression, Q in Connect</p>
|
|
3999
4060
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#api-contacts-handled-historical">API contacts handled</a>
|
|
4000
4061
|
* </p>
|
|
4001
4062
|
* <note>
|
|
@@ -4008,7 +4069,7 @@ export interface GetMetricDataV2Request {
|
|
|
4008
4069
|
* <p>Valid metric filter key: <code>INITIATION_METHOD</code>
|
|
4009
4070
|
* </p>
|
|
4010
4071
|
* <p>Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
|
|
4011
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4072
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
4012
4073
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-handled-by-connected-to-agent-historical">Contacts handled (connected to agent timestamp)</a>
|
|
4013
4074
|
* </p>
|
|
4014
4075
|
* </dd>
|
|
@@ -4016,42 +4077,42 @@ export interface GetMetricDataV2Request {
|
|
|
4016
4077
|
* <dd>
|
|
4017
4078
|
* <p>Unit: Count</p>
|
|
4018
4079
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
4019
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4080
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
4020
4081
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-handled-by-connected-to-agent-historical">Contacts hold disconnect</a>
|
|
4021
4082
|
* </p>
|
|
4022
4083
|
* </dd>
|
|
4023
4084
|
* <dt>CONTACTS_ON_HOLD_AGENT_DISCONNECT</dt>
|
|
4024
4085
|
* <dd>
|
|
4025
4086
|
* <p>Unit: Count</p>
|
|
4026
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy</p>
|
|
4087
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect</p>
|
|
4027
4088
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-agent-disconnect-historical">Contacts hold agent disconnect</a>
|
|
4028
4089
|
* </p>
|
|
4029
4090
|
* </dd>
|
|
4030
4091
|
* <dt>CONTACTS_ON_HOLD_CUSTOMER_DISCONNECT</dt>
|
|
4031
4092
|
* <dd>
|
|
4032
4093
|
* <p>Unit: Count</p>
|
|
4033
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy</p>
|
|
4094
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect</p>
|
|
4034
4095
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-customer-disconnect-historical">Contacts hold customer disconnect</a>
|
|
4035
4096
|
* </p>
|
|
4036
4097
|
* </dd>
|
|
4037
4098
|
* <dt>CONTACTS_PUT_ON_HOLD</dt>
|
|
4038
4099
|
* <dd>
|
|
4039
4100
|
* <p>Unit: Count</p>
|
|
4040
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy</p>
|
|
4101
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect</p>
|
|
4041
4102
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-customer-disconnect-historical">Contacts put on hold</a>
|
|
4042
4103
|
* </p>
|
|
4043
4104
|
* </dd>
|
|
4044
4105
|
* <dt>CONTACTS_TRANSFERRED_OUT_EXTERNAL</dt>
|
|
4045
4106
|
* <dd>
|
|
4046
4107
|
* <p>Unit: Count</p>
|
|
4047
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy</p>
|
|
4108
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect</p>
|
|
4048
4109
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-external-historical">Contacts transferred out external</a>
|
|
4049
4110
|
* </p>
|
|
4050
4111
|
* </dd>
|
|
4051
4112
|
* <dt>CONTACTS_TRANSFERRED_OUT_INTERNAL</dt>
|
|
4052
4113
|
* <dd>
|
|
4053
4114
|
* <p>Unit: Percent</p>
|
|
4054
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy</p>
|
|
4115
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect</p>
|
|
4055
4116
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-internal-historical">Contacts transferred out internal</a>
|
|
4056
4117
|
* </p>
|
|
4057
4118
|
* </dd>
|
|
@@ -4059,7 +4120,7 @@ export interface GetMetricDataV2Request {
|
|
|
4059
4120
|
* <dd>
|
|
4060
4121
|
* <p>Unit: Count</p>
|
|
4061
4122
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
4062
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4123
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
4063
4124
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-historical">Contacts queued</a>
|
|
4064
4125
|
* </p>
|
|
4065
4126
|
* </dd>
|
|
@@ -4074,8 +4135,8 @@ export interface GetMetricDataV2Request {
|
|
|
4074
4135
|
* <dt>CONTACTS_RESOLVED_IN_X</dt>
|
|
4075
4136
|
* <dd>
|
|
4076
4137
|
* <p>Unit: Count</p>
|
|
4077
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile,
|
|
4078
|
-
*
|
|
4138
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype,
|
|
4139
|
+
* Q in Connect</p>
|
|
4079
4140
|
* <p>Threshold: For <code>ThresholdValue</code> enter any whole number from 1 to 604800
|
|
4080
4141
|
* (inclusive), in seconds. For <code>Comparison</code>, you must enter <code>LT</code> (for
|
|
4081
4142
|
* "Less than").</p>
|
|
@@ -4086,7 +4147,7 @@ export interface GetMetricDataV2Request {
|
|
|
4086
4147
|
* <dd>
|
|
4087
4148
|
* <p>Unit: Count</p>
|
|
4088
4149
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature,
|
|
4089
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4150
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
4090
4151
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-historical">Contacts transferred out</a>
|
|
4091
4152
|
* </p>
|
|
4092
4153
|
* <note>
|
|
@@ -4097,7 +4158,7 @@ export interface GetMetricDataV2Request {
|
|
|
4097
4158
|
* <dd>
|
|
4098
4159
|
* <p>Unit: Count</p>
|
|
4099
4160
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
4100
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4161
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
4101
4162
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical">Contacts transferred out by agent</a>
|
|
4102
4163
|
* </p>
|
|
4103
4164
|
* </dd>
|
|
@@ -4105,7 +4166,7 @@ export interface GetMetricDataV2Request {
|
|
|
4105
4166
|
* <dd>
|
|
4106
4167
|
* <p>Unit: Count</p>
|
|
4107
4168
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
4108
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4169
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
4109
4170
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical">Contacts transferred out queue</a>
|
|
4110
4171
|
* </p>
|
|
4111
4172
|
* </dd>
|
|
@@ -4121,7 +4182,7 @@ export interface GetMetricDataV2Request {
|
|
|
4121
4182
|
* <dd>
|
|
4122
4183
|
* <p>Unit: Seconds</p>
|
|
4123
4184
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
4124
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4185
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
4125
4186
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-queued-time-historical">Maximum queued time</a>
|
|
4126
4187
|
* </p>
|
|
4127
4188
|
* </dd>
|
|
@@ -4151,7 +4212,7 @@ export interface GetMetricDataV2Request {
|
|
|
4151
4212
|
* analytics.</p>
|
|
4152
4213
|
* <p>Unit: Percentage</p>
|
|
4153
4214
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
4154
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4215
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
4155
4216
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ntt-historical">Non-talk
|
|
4156
4217
|
* time percent</a>
|
|
4157
4218
|
* </p>
|
|
@@ -4162,7 +4223,7 @@ export interface GetMetricDataV2Request {
|
|
|
4162
4223
|
* analytics.</p>
|
|
4163
4224
|
* <p>Unit: Percentage</p>
|
|
4164
4225
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
4165
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4226
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
4166
4227
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#tt-historical">Talk time
|
|
4167
4228
|
* percent</a>
|
|
4168
4229
|
* </p>
|
|
@@ -4173,7 +4234,7 @@ export interface GetMetricDataV2Request {
|
|
|
4173
4234
|
* analytics.</p>
|
|
4174
4235
|
* <p>Unit: Percentage</p>
|
|
4175
4236
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
4176
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4237
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
4177
4238
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttagent-historical">Agent
|
|
4178
4239
|
* talk time percent</a>
|
|
4179
4240
|
* </p>
|
|
@@ -4184,7 +4245,7 @@ export interface GetMetricDataV2Request {
|
|
|
4184
4245
|
* analytics.</p>
|
|
4185
4246
|
* <p>Unit: Percentage</p>
|
|
4186
4247
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
4187
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4248
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
4188
4249
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttcustomer-historical">Customer talk time percent</a>
|
|
4189
4250
|
* </p>
|
|
4190
4251
|
* </dd>
|
|
@@ -4208,7 +4269,7 @@ export interface GetMetricDataV2Request {
|
|
|
4208
4269
|
* <dd>
|
|
4209
4270
|
* <p>You can include up to 20 SERVICE_LEVEL metrics in a request.</p>
|
|
4210
4271
|
* <p>Unit: Percent</p>
|
|
4211
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile</p>
|
|
4272
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Q in Connect</p>
|
|
4212
4273
|
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
4213
4274
|
* (inclusive), in seconds. For <code>Comparison</code>, you must enter <code>LT</code> (for
|
|
4214
4275
|
* "Less than"). </p>
|
|
@@ -4224,7 +4285,7 @@ export interface GetMetricDataV2Request {
|
|
|
4224
4285
|
* <dt>SUM_AFTER_CONTACT_WORK_TIME</dt>
|
|
4225
4286
|
* <dd>
|
|
4226
4287
|
* <p>Unit: Seconds</p>
|
|
4227
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy</p>
|
|
4288
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect</p>
|
|
4228
4289
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#acw-historical">After
|
|
4229
4290
|
* contact work time</a>
|
|
4230
4291
|
* </p>
|
|
@@ -4247,7 +4308,7 @@ export interface GetMetricDataV2Request {
|
|
|
4247
4308
|
* <dt>SUM_CONTACT_FLOW_TIME</dt>
|
|
4248
4309
|
* <dd>
|
|
4249
4310
|
* <p>Unit: Seconds</p>
|
|
4250
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy</p>
|
|
4311
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect</p>
|
|
4251
4312
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-flow-time-historical">Contact flow time</a>
|
|
4252
4313
|
* </p>
|
|
4253
4314
|
* </dd>
|
|
@@ -4261,8 +4322,8 @@ export interface GetMetricDataV2Request {
|
|
|
4261
4322
|
* <dt>SUM_CONTACTS_ANSWERED_IN_X</dt>
|
|
4262
4323
|
* <dd>
|
|
4263
4324
|
* <p>Unit: Count</p>
|
|
4264
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile,
|
|
4265
|
-
*
|
|
4325
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype,
|
|
4326
|
+
* Q in Connect</p>
|
|
4266
4327
|
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
4267
4328
|
* (inclusive), in seconds. For <code>Comparison</code>, you must enter <code>LT</code> (for
|
|
4268
4329
|
* "Less than"). </p>
|
|
@@ -4272,8 +4333,8 @@ export interface GetMetricDataV2Request {
|
|
|
4272
4333
|
* <dt>SUM_CONTACTS_ABANDONED_IN_X</dt>
|
|
4273
4334
|
* <dd>
|
|
4274
4335
|
* <p>Unit: Count</p>
|
|
4275
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile,
|
|
4276
|
-
*
|
|
4336
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype,
|
|
4337
|
+
* Q in Connect</p>
|
|
4277
4338
|
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
4278
4339
|
* (inclusive), in seconds. For <code>Comparison</code>, you must enter <code>LT</code> (for
|
|
4279
4340
|
* "Less than"). </p>
|
|
@@ -4286,7 +4347,7 @@ export interface GetMetricDataV2Request {
|
|
|
4286
4347
|
* </p>
|
|
4287
4348
|
* <p>Unit: Count</p>
|
|
4288
4349
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
4289
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
4350
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
4290
4351
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-disconnected-historical">Contact disconnected</a>
|
|
4291
4352
|
* </p>
|
|
4292
4353
|
* </dd>
|
|
@@ -4300,14 +4361,14 @@ export interface GetMetricDataV2Request {
|
|
|
4300
4361
|
* <dt>SUM_HANDLE_TIME</dt>
|
|
4301
4362
|
* <dd>
|
|
4302
4363
|
* <p>Unit: Seconds</p>
|
|
4303
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy</p>
|
|
4364
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect</p>
|
|
4304
4365
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-handle-time-historical">Contact handle time</a>
|
|
4305
4366
|
* </p>
|
|
4306
4367
|
* </dd>
|
|
4307
4368
|
* <dt>SUM_HOLD_TIME</dt>
|
|
4308
4369
|
* <dd>
|
|
4309
4370
|
* <p>Unit: Count</p>
|
|
4310
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy</p>
|
|
4371
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect</p>
|
|
4311
4372
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#customer-hold-time-historical">Customer hold time</a>
|
|
4312
4373
|
* </p>
|
|
4313
4374
|
* </dd>
|
|
@@ -4321,7 +4382,7 @@ export interface GetMetricDataV2Request {
|
|
|
4321
4382
|
* <dt>SUM_INTERACTION_AND_HOLD_TIME</dt>
|
|
4322
4383
|
* <dd>
|
|
4323
4384
|
* <p>Unit: Seconds</p>
|
|
4324
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy</p>
|
|
4385
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect</p>
|
|
4325
4386
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-hold-time-historical">Agent interaction and hold time</a>
|
|
4326
4387
|
* </p>
|
|
4327
4388
|
* </dd>
|
|
@@ -4349,8 +4410,8 @@ export interface GetMetricDataV2Request {
|
|
|
4349
4410
|
* <dt>SUM_RETRY_CALLBACK_ATTEMPTS</dt>
|
|
4350
4411
|
* <dd>
|
|
4351
4412
|
* <p>Unit: Count</p>
|
|
4352
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile,
|
|
4353
|
-
*
|
|
4413
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype,
|
|
4414
|
+
* Q in Connect</p>
|
|
4354
4415
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#callback-attempts-historical">Callback attempts</a>
|
|
4355
4416
|
* </p>
|
|
4356
4417
|
* </dd>
|
|
@@ -5120,6 +5181,11 @@ export interface ContactFlowSummary {
|
|
|
5120
5181
|
* @public
|
|
5121
5182
|
*/
|
|
5122
5183
|
ContactFlowState?: ContactFlowState;
|
|
5184
|
+
/**
|
|
5185
|
+
* <p>The status of the contact flow.</p>
|
|
5186
|
+
* @public
|
|
5187
|
+
*/
|
|
5188
|
+
ContactFlowStatus?: ContactFlowStatus;
|
|
5123
5189
|
}
|
|
5124
5190
|
/**
|
|
5125
5191
|
* @public
|
|
@@ -8500,34 +8566,6 @@ export interface ReleasePhoneNumberRequest {
|
|
|
8500
8566
|
*/
|
|
8501
8567
|
ClientToken?: string;
|
|
8502
8568
|
}
|
|
8503
|
-
/**
|
|
8504
|
-
* @public
|
|
8505
|
-
*/
|
|
8506
|
-
export interface ReplicateInstanceRequest {
|
|
8507
|
-
/**
|
|
8508
|
-
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance. You can provide the <code>InstanceId</code>, or the entire ARN.</p>
|
|
8509
|
-
* @public
|
|
8510
|
-
*/
|
|
8511
|
-
InstanceId: string | undefined;
|
|
8512
|
-
/**
|
|
8513
|
-
* <p>The Amazon Web Services Region where to replicate the Amazon Connect instance.</p>
|
|
8514
|
-
* @public
|
|
8515
|
-
*/
|
|
8516
|
-
ReplicaRegion: string | undefined;
|
|
8517
|
-
/**
|
|
8518
|
-
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
8519
|
-
* request. If not provided, the Amazon Web Services
|
|
8520
|
-
* SDK populates this field. For more information about idempotency, see
|
|
8521
|
-
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
8522
|
-
* @public
|
|
8523
|
-
*/
|
|
8524
|
-
ClientToken?: string;
|
|
8525
|
-
/**
|
|
8526
|
-
* <p>The alias for the replicated instance. The <code>ReplicaAlias</code> must be unique.</p>
|
|
8527
|
-
* @public
|
|
8528
|
-
*/
|
|
8529
|
-
ReplicaAlias: string | undefined;
|
|
8530
|
-
}
|
|
8531
8569
|
/**
|
|
8532
8570
|
* @internal
|
|
8533
8571
|
*/
|
|
@@ -8580,7 +8618,3 @@ export declare const ViewVersionSummaryFilterSensitiveLog: (obj: ViewVersionSumm
|
|
|
8580
8618
|
* @internal
|
|
8581
8619
|
*/
|
|
8582
8620
|
export declare const ListViewVersionsResponseFilterSensitiveLog: (obj: ListViewVersionsResponse) => any;
|
|
8583
|
-
/**
|
|
8584
|
-
* @internal
|
|
8585
|
-
*/
|
|
8586
|
-
export declare const ReplicateInstanceRequestFilterSensitiveLog: (obj: ReplicateInstanceRequest) => any;
|