@aws-sdk/client-connect 3.606.0 → 3.608.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 +38 -0
- package/dist-cjs/index.js +184 -5
- package/dist-es/Connect.js +6 -0
- package/dist-es/commands/DescribeAuthenticationProfileCommand.js +24 -0
- package/dist-es/commands/ListAuthenticationProfilesCommand.js +24 -0
- package/dist-es/commands/UpdateAuthenticationProfileCommand.js +24 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +0 -4
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/pagination/ListAuthenticationProfilesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +116 -0
- package/dist-types/Connect.d.ts +36 -1
- package/dist-types/ConnectClient.d.ts +20 -3
- package/dist-types/commands/DescribeAuthenticationProfileCommand.d.ts +95 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +14 -0
- package/dist-types/commands/ImportPhoneNumberCommand.d.ts +16 -0
- package/dist-types/commands/ListAuthenticationProfilesCommand.d.ts +89 -0
- package/dist-types/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListUserProficienciesCommand.d.ts +1 -1
- package/dist-types/commands/ListUsersCommand.d.ts +1 -1
- package/dist-types/commands/ListViewsCommand.d.ts +1 -2
- package/dist-types/commands/StartAttachedFileUploadCommand.d.ts +1 -2
- package/dist-types/commands/StartChatContactCommand.d.ts +14 -2
- package/dist-types/commands/StartContactStreamingCommand.d.ts +14 -0
- package/dist-types/commands/UpdateAuthenticationProfileCommand.d.ts +85 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/index.d.ts +15 -1
- package/dist-types/models/models_0.d.ts +152 -141
- package/dist-types/models/models_1.d.ts +268 -228
- package/dist-types/models/models_2.d.ts +255 -13
- package/dist-types/pagination/ListAuthenticationProfilesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/Connect.d.ts +51 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DescribeAuthenticationProfileCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListAuthenticationProfilesCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUserProficienciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListViewsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/UpdateAuthenticationProfileCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +28 -32
- package/dist-types/ts3.4/models/models_1.d.ts +50 -47
- package/dist-types/ts3.4/models/models_2.d.ts +55 -2
- package/dist-types/ts3.4/pagination/ListAuthenticationProfilesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +1 -1
|
@@ -1,6 +1,139 @@
|
|
|
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, ContactFlowStatus, ContactFlowType, ContactState, CreatedByInfo, DirectoryType, Distribution,
|
|
3
|
+
import { ActionSummary, AgentAvailabilityTimer, AgentConfig, AgentContactReference, AgentStatusReference, AgentStatusSummary, AgentStatusType, AnalyticsDataAssociationResult, Application, Channel, ContactFlowStatus, ContactFlowType, ContactState, CreatedByInfo, DirectoryType, Distribution, EvaluationAnswerOutput, EventSourceName, FileStatusType, FileUseCaseType, FlowAssociationResourceType, FlowAssociationSummary, HoursOfOperationConfig, InstanceStorageConfig, InstanceStorageResourceType, IntegrationType, LexBot, LexV2Bot, ListFlowAssociationResourceType, MediaConcurrency, OutboundCallerConfig, ParticipantRole, PredefinedAttributeValues, QueueReference, QuickConnectConfig, QuickConnectType, ReferenceType, RoutingProfileQueueReference, RuleAction, RulePublishStatus, RuleTriggerEventSource, SourceType, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UseCaseType, UserIdentityInfo, UserPhoneConfig, View, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Information about scores of a contact evaluation item (section or question).</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface EvaluationScore {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The score percentage for an item in a contact evaluation.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
Percentage?: number;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The flag to mark the item as not applicable for scoring.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
NotApplicable?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The flag that marks the item as automatic fail. If the item or a child item gets an
|
|
21
|
+
* automatic fail answer, this flag will be true.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
AutomaticFail?: boolean;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* <p>Metadata information about a contact evaluation.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
export interface EvaluationMetadata {
|
|
31
|
+
/**
|
|
32
|
+
* <p>The identifier of the contact in this instance of Amazon Connect. </p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
ContactId: string | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* <p>The Amazon Resource Name (ARN) of the user who last updated the evaluation.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
EvaluatorArn: string | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* <p>The identifier of the agent who performed the contact.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
ContactAgentId?: string;
|
|
46
|
+
/**
|
|
47
|
+
* <p>The overall score of the contact evaluation.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
Score?: EvaluationScore;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* <p>Information about notes for a contact evaluation.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export interface EvaluationNote {
|
|
57
|
+
/**
|
|
58
|
+
* <p>The note for an item (section or question) in a contact evaluation.</p>
|
|
59
|
+
* <note>
|
|
60
|
+
* <p>Even though a note in an evaluation can have up to 3072 chars, there is also a limit on the
|
|
61
|
+
* total number of chars for all the notes in the evaluation combined. Assuming there are N
|
|
62
|
+
* questions in the evaluation being submitted, then the max char limit for all notes combined is N
|
|
63
|
+
* x 1024.</p>
|
|
64
|
+
* </note>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
Value?: string;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
* @enum
|
|
72
|
+
*/
|
|
73
|
+
export declare const EvaluationStatus: {
|
|
74
|
+
readonly DRAFT: "DRAFT";
|
|
75
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export type EvaluationStatus = (typeof EvaluationStatus)[keyof typeof EvaluationStatus];
|
|
81
|
+
/**
|
|
82
|
+
* <p>Information about a contact evaluation.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export interface Evaluation {
|
|
86
|
+
/**
|
|
87
|
+
* <p>A unique identifier for the contact evaluation.</p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
EvaluationId: string | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* <p>The Amazon Resource Name (ARN) for the contact evaluation resource.</p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
EvaluationArn: string | undefined;
|
|
96
|
+
/**
|
|
97
|
+
* <p>Metadata about the contact evaluation.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
Metadata: EvaluationMetadata | undefined;
|
|
101
|
+
/**
|
|
102
|
+
* <p>A map of question identifiers to answer value.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
Answers: Record<string, EvaluationAnswerOutput> | undefined;
|
|
106
|
+
/**
|
|
107
|
+
* <p>A map of question identifiers to note value.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
Notes: Record<string, EvaluationNote> | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* <p>The status of the contact evaluation.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
Status: EvaluationStatus | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* <p>A map of item (section or question) identifiers to score value.</p>
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
Scores?: Record<string, EvaluationScore>;
|
|
121
|
+
/**
|
|
122
|
+
* <p>The timestamp for when the evaluation was created.</p>
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
CreatedTime: Date | undefined;
|
|
126
|
+
/**
|
|
127
|
+
* <p>The timestamp for when the evaluation was last updated.</p>
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
LastModifiedTime: Date | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
Tags?: Record<string, string>;
|
|
136
|
+
}
|
|
4
137
|
/**
|
|
5
138
|
* <p>The flow has not been published.</p>
|
|
6
139
|
* @public
|
|
@@ -4295,45 +4428,6 @@ export interface GetMetricDataV2Request {
|
|
|
4295
4428
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##cases-created-historical">Cases created</a>
|
|
4296
4429
|
* </p>
|
|
4297
4430
|
* </dd>
|
|
4298
|
-
* <dt>CONTACTS_ABANDONED</dt>
|
|
4299
|
-
* <dd>
|
|
4300
|
-
* <p>Unit: Count</p>
|
|
4301
|
-
* <p>Metric filter: </p>
|
|
4302
|
-
* <ul>
|
|
4303
|
-
* <li>
|
|
4304
|
-
* <p>Valid values: <code>API</code>| <code>Incoming</code> | <code>Outbound</code> |
|
|
4305
|
-
* <code>Transfer</code> | <code>Callback</code> | <code>Queue_Transfer</code>|
|
|
4306
|
-
* <code>Disconnect</code>
|
|
4307
|
-
* </p>
|
|
4308
|
-
* </li>
|
|
4309
|
-
* </ul>
|
|
4310
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
4311
|
-
* contact/segmentAttributes/connect:Subtype, RoutingStepExpression, Q in Connect</p>
|
|
4312
|
-
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical">Contact abandoned</a>
|
|
4313
|
-
* </p>
|
|
4314
|
-
* </dd>
|
|
4315
|
-
* <dt>CONTACTS_ABANDONED_IN_X</dt>
|
|
4316
|
-
* <dd>
|
|
4317
|
-
* <p>Unit: Count</p>
|
|
4318
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype,
|
|
4319
|
-
* Q in Connect</p>
|
|
4320
|
-
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
4321
|
-
* (inclusive), in seconds. For <code>Comparison</code>, you must enter <code>LT</code> (for
|
|
4322
|
-
* "Less than"). </p>
|
|
4323
|
-
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical">Contacts abandoned in X seconds</a>
|
|
4324
|
-
* </p>
|
|
4325
|
-
* </dd>
|
|
4326
|
-
* <dt>CONTACTS_ANSWERED_IN_X</dt>
|
|
4327
|
-
* <dd>
|
|
4328
|
-
* <p>Unit: Count</p>
|
|
4329
|
-
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype,
|
|
4330
|
-
* Q in Connect</p>
|
|
4331
|
-
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
4332
|
-
* (inclusive), in seconds. For <code>Comparison</code>, you must enter <code>LT</code> (for
|
|
4333
|
-
* "Less than"). </p>
|
|
4334
|
-
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical">Contacts answered in X seconds</a>
|
|
4335
|
-
* </p>
|
|
4336
|
-
* </dd>
|
|
4337
4431
|
* <dt>CONTACTS_CREATED</dt>
|
|
4338
4432
|
* <dd>
|
|
4339
4433
|
* <p>Unit: Count</p>
|
|
@@ -4430,6 +4524,15 @@ export interface GetMetricDataV2Request {
|
|
|
4430
4524
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-by-enqueue-historical">Contacts queued (enqueue timestamp)</a>
|
|
4431
4525
|
* </p>
|
|
4432
4526
|
* </dd>
|
|
4527
|
+
* <dt>CONTACTS_REMOVED_FROM_QUEUE_IN_X</dt>
|
|
4528
|
+
* <dd>
|
|
4529
|
+
* <p>Unit: Count</p>
|
|
4530
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Q in Connect</p>
|
|
4531
|
+
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
4532
|
+
* (inclusive), in seconds. For <code>Comparison</code>, you must enter <code>LT</code> (for
|
|
4533
|
+
* "Less than").</p>
|
|
4534
|
+
* <p>UI name: This metric is not available in Amazon Connect admin website. </p>
|
|
4535
|
+
* </dd>
|
|
4433
4536
|
* <dt>CONTACTS_RESOLVED_IN_X</dt>
|
|
4434
4537
|
* <dd>
|
|
4435
4538
|
* <p>Unit: Count</p>
|
|
@@ -4531,13 +4634,15 @@ export interface GetMetricDataV2Request {
|
|
|
4531
4634
|
* <dd>
|
|
4532
4635
|
* <p>Unit: Percent</p>
|
|
4533
4636
|
* <p>Valid groupings and filters: Queue, RoutingStepExpression</p>
|
|
4534
|
-
* <p>UI name:
|
|
4637
|
+
* <p>UI name: This metric is available in Real-time Metrics UI but not on the Historical
|
|
4638
|
+
* Metrics UI.</p>
|
|
4535
4639
|
* </dd>
|
|
4536
4640
|
* <dt>PERCENT_CONTACTS_STEP_JOINED</dt>
|
|
4537
4641
|
* <dd>
|
|
4538
4642
|
* <p>Unit: Percent</p>
|
|
4539
4643
|
* <p>Valid groupings and filters: Queue, RoutingStepExpression</p>
|
|
4540
|
-
* <p>UI name:
|
|
4644
|
+
* <p>UI name: This metric is available in Real-time Metrics UI but not on the Historical
|
|
4645
|
+
* Metrics UI.</p>
|
|
4541
4646
|
* </dd>
|
|
4542
4647
|
* <dt>PERCENT_FLOWS_OUTCOME</dt>
|
|
4543
4648
|
* <dd>
|
|
@@ -4608,7 +4713,7 @@ export interface GetMetricDataV2Request {
|
|
|
4608
4713
|
* <p>Unit: Count</p>
|
|
4609
4714
|
* <p>Required filter key: CASE_TEMPLATE_ARN</p>
|
|
4610
4715
|
* <p>Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS</p>
|
|
4611
|
-
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-
|
|
4716
|
+
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-historical">Cases resolved</a>
|
|
4612
4717
|
* </p>
|
|
4613
4718
|
* </dd>
|
|
4614
4719
|
* <dt>SERVICE_LEVEL</dt>
|
|
@@ -4626,7 +4731,8 @@ export interface GetMetricDataV2Request {
|
|
|
4626
4731
|
* <dd>
|
|
4627
4732
|
* <p>Unit: Count</p>
|
|
4628
4733
|
* <p>Valid groupings and filters: Queue, RoutingStepExpression</p>
|
|
4629
|
-
* <p>UI name:
|
|
4734
|
+
* <p>UI name: This metric is available in Real-time Metrics UI but not on the Historical
|
|
4735
|
+
* Metrics UI.</p>
|
|
4630
4736
|
* </dd>
|
|
4631
4737
|
* <dt>SUM_AFTER_CONTACT_WORK_TIME</dt>
|
|
4632
4738
|
* <dd>
|
|
@@ -4651,6 +4757,45 @@ export interface GetMetricDataV2Request {
|
|
|
4651
4757
|
* metric.</p>
|
|
4652
4758
|
* </note>
|
|
4653
4759
|
* </dd>
|
|
4760
|
+
* <dt>SUM_CONTACTS_ABANDONED</dt>
|
|
4761
|
+
* <dd>
|
|
4762
|
+
* <p>Unit: Count</p>
|
|
4763
|
+
* <p>Metric filter: </p>
|
|
4764
|
+
* <ul>
|
|
4765
|
+
* <li>
|
|
4766
|
+
* <p>Valid values: <code>API</code>| <code>Incoming</code> | <code>Outbound</code> |
|
|
4767
|
+
* <code>Transfer</code> | <code>Callback</code> | <code>Queue_Transfer</code>|
|
|
4768
|
+
* <code>Disconnect</code>
|
|
4769
|
+
* </p>
|
|
4770
|
+
* </li>
|
|
4771
|
+
* </ul>
|
|
4772
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
4773
|
+
* contact/segmentAttributes/connect:Subtype, RoutingStepExpression, Q in Connect</p>
|
|
4774
|
+
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical">Contact abandoned</a>
|
|
4775
|
+
* </p>
|
|
4776
|
+
* </dd>
|
|
4777
|
+
* <dt>SUM_CONTACTS_ABANDONED_IN_X</dt>
|
|
4778
|
+
* <dd>
|
|
4779
|
+
* <p>Unit: Count</p>
|
|
4780
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype,
|
|
4781
|
+
* Q in Connect</p>
|
|
4782
|
+
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
4783
|
+
* (inclusive), in seconds. For <code>Comparison</code>, you must enter <code>LT</code> (for
|
|
4784
|
+
* "Less than"). </p>
|
|
4785
|
+
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical">Contacts abandoned in X seconds</a>
|
|
4786
|
+
* </p>
|
|
4787
|
+
* </dd>
|
|
4788
|
+
* <dt>SUM_CONTACTS_ANSWERED_IN_X</dt>
|
|
4789
|
+
* <dd>
|
|
4790
|
+
* <p>Unit: Count</p>
|
|
4791
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype,
|
|
4792
|
+
* Q in Connect</p>
|
|
4793
|
+
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
4794
|
+
* (inclusive), in seconds. For <code>Comparison</code>, you must enter <code>LT</code> (for
|
|
4795
|
+
* "Less than"). </p>
|
|
4796
|
+
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical">Contacts answered in X seconds</a>
|
|
4797
|
+
* </p>
|
|
4798
|
+
* </dd>
|
|
4654
4799
|
* <dt>SUM_CONTACT_FLOW_TIME</dt>
|
|
4655
4800
|
* <dd>
|
|
4656
4801
|
* <p>Unit: Seconds</p>
|
|
@@ -4661,7 +4806,7 @@ export interface GetMetricDataV2Request {
|
|
|
4661
4806
|
* <dt>SUM_CONTACT_TIME_AGENT</dt>
|
|
4662
4807
|
* <dd>
|
|
4663
4808
|
* <p>Unit: Seconds</p>
|
|
4664
|
-
* <p>Valid groupings and filters:
|
|
4809
|
+
* <p>Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy</p>
|
|
4665
4810
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-on-contact-time-historical">Agent on contact time</a>
|
|
4666
4811
|
* </p>
|
|
4667
4812
|
* </dd>
|
|
@@ -4678,7 +4823,7 @@ export interface GetMetricDataV2Request {
|
|
|
4678
4823
|
* <dt>SUM_ERROR_STATUS_TIME_AGENT</dt>
|
|
4679
4824
|
* <dd>
|
|
4680
4825
|
* <p>Unit: Seconds</p>
|
|
4681
|
-
* <p>Valid groupings and filters:
|
|
4826
|
+
* <p>Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy</p>
|
|
4682
4827
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#error-status-time-historical">Error status time</a>
|
|
4683
4828
|
* </p>
|
|
4684
4829
|
* </dd>
|
|
@@ -5216,6 +5361,83 @@ export interface ListApprovedOriginsResponse {
|
|
|
5216
5361
|
*/
|
|
5217
5362
|
NextToken?: string;
|
|
5218
5363
|
}
|
|
5364
|
+
/**
|
|
5365
|
+
* @public
|
|
5366
|
+
*/
|
|
5367
|
+
export interface ListAuthenticationProfilesRequest {
|
|
5368
|
+
/**
|
|
5369
|
+
* <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.</p>
|
|
5370
|
+
* @public
|
|
5371
|
+
*/
|
|
5372
|
+
InstanceId: string | undefined;
|
|
5373
|
+
/**
|
|
5374
|
+
* <p>The maximum number of results to return per page.</p>
|
|
5375
|
+
* @public
|
|
5376
|
+
*/
|
|
5377
|
+
MaxResults?: number;
|
|
5378
|
+
/**
|
|
5379
|
+
* <p>The token for the next set of results. Use the value returned in the previous
|
|
5380
|
+
* response in the next request to retrieve the next set of results.</p>
|
|
5381
|
+
* @public
|
|
5382
|
+
*/
|
|
5383
|
+
NextToken?: string;
|
|
5384
|
+
}
|
|
5385
|
+
/**
|
|
5386
|
+
* <p>This API is in preview release for Amazon Connect and is subject to change. To
|
|
5387
|
+
* request access to this API, contact Amazon Web Services Support.</p>
|
|
5388
|
+
* <p>A summary of a given authentication profile.</p>
|
|
5389
|
+
* @public
|
|
5390
|
+
*/
|
|
5391
|
+
export interface AuthenticationProfileSummary {
|
|
5392
|
+
/**
|
|
5393
|
+
* <p>The unique identifier of the authentication profile.</p>
|
|
5394
|
+
* @public
|
|
5395
|
+
*/
|
|
5396
|
+
Id?: string;
|
|
5397
|
+
/**
|
|
5398
|
+
* <p>The Amazon Resource Name (ARN) of the authentication profile summary.</p>
|
|
5399
|
+
* @public
|
|
5400
|
+
*/
|
|
5401
|
+
Arn?: string;
|
|
5402
|
+
/**
|
|
5403
|
+
* <p>The name of the authentication profile summary.</p>
|
|
5404
|
+
* @public
|
|
5405
|
+
*/
|
|
5406
|
+
Name?: string;
|
|
5407
|
+
/**
|
|
5408
|
+
* <p>Shows whether the authentication profile is the default authentication profile for the
|
|
5409
|
+
* Amazon Connect instance. The default authentication profile applies to all agents in an
|
|
5410
|
+
* Amazon Connect instance, unless overridden by another authentication profile.</p>
|
|
5411
|
+
* @public
|
|
5412
|
+
*/
|
|
5413
|
+
IsDefault?: boolean;
|
|
5414
|
+
/**
|
|
5415
|
+
* <p>The timestamp when the authentication profile summary was last modified.</p>
|
|
5416
|
+
* @public
|
|
5417
|
+
*/
|
|
5418
|
+
LastModifiedTime?: Date;
|
|
5419
|
+
/**
|
|
5420
|
+
* <p>The Amazon Web Services Region when the authentication profile summary was last
|
|
5421
|
+
* modified.</p>
|
|
5422
|
+
* @public
|
|
5423
|
+
*/
|
|
5424
|
+
LastModifiedRegion?: string;
|
|
5425
|
+
}
|
|
5426
|
+
/**
|
|
5427
|
+
* @public
|
|
5428
|
+
*/
|
|
5429
|
+
export interface ListAuthenticationProfilesResponse {
|
|
5430
|
+
/**
|
|
5431
|
+
* <p>A summary of a given authentication profile.</p>
|
|
5432
|
+
* @public
|
|
5433
|
+
*/
|
|
5434
|
+
AuthenticationProfileSummaryList?: AuthenticationProfileSummary[];
|
|
5435
|
+
/**
|
|
5436
|
+
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
5437
|
+
* @public
|
|
5438
|
+
*/
|
|
5439
|
+
NextToken?: string;
|
|
5440
|
+
}
|
|
5219
5441
|
/**
|
|
5220
5442
|
* @public
|
|
5221
5443
|
* @enum
|
|
@@ -8436,188 +8658,6 @@ export interface ListUseCasesResponse {
|
|
|
8436
8658
|
*/
|
|
8437
8659
|
NextToken?: string;
|
|
8438
8660
|
}
|
|
8439
|
-
/**
|
|
8440
|
-
* @public
|
|
8441
|
-
*/
|
|
8442
|
-
export interface ListUserHierarchyGroupsRequest {
|
|
8443
|
-
/**
|
|
8444
|
-
* <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.</p>
|
|
8445
|
-
* @public
|
|
8446
|
-
*/
|
|
8447
|
-
InstanceId: string | undefined;
|
|
8448
|
-
/**
|
|
8449
|
-
* <p>The token for the next set of results. Use the value returned in the previous
|
|
8450
|
-
* response in the next request to retrieve the next set of results.</p>
|
|
8451
|
-
* @public
|
|
8452
|
-
*/
|
|
8453
|
-
NextToken?: string;
|
|
8454
|
-
/**
|
|
8455
|
-
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
8456
|
-
* @public
|
|
8457
|
-
*/
|
|
8458
|
-
MaxResults?: number;
|
|
8459
|
-
}
|
|
8460
|
-
/**
|
|
8461
|
-
* @public
|
|
8462
|
-
*/
|
|
8463
|
-
export interface ListUserHierarchyGroupsResponse {
|
|
8464
|
-
/**
|
|
8465
|
-
* <p>Information about the hierarchy groups.</p>
|
|
8466
|
-
* @public
|
|
8467
|
-
*/
|
|
8468
|
-
UserHierarchyGroupSummaryList?: HierarchyGroupSummary[];
|
|
8469
|
-
/**
|
|
8470
|
-
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
8471
|
-
* @public
|
|
8472
|
-
*/
|
|
8473
|
-
NextToken?: string;
|
|
8474
|
-
}
|
|
8475
|
-
/**
|
|
8476
|
-
* @public
|
|
8477
|
-
*/
|
|
8478
|
-
export interface ListUserProficienciesRequest {
|
|
8479
|
-
/**
|
|
8480
|
-
* <p>The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource
|
|
8481
|
-
* Name (ARN) of the instance.</p>
|
|
8482
|
-
* @public
|
|
8483
|
-
*/
|
|
8484
|
-
InstanceId: string | undefined;
|
|
8485
|
-
/**
|
|
8486
|
-
* <p>The identifier of the user account.</p>
|
|
8487
|
-
* @public
|
|
8488
|
-
*/
|
|
8489
|
-
UserId: string | undefined;
|
|
8490
|
-
/**
|
|
8491
|
-
* <p>The token for the next set of results. Use the value returned in the previous response in
|
|
8492
|
-
* the next request to retrieve the next set of results.</p>
|
|
8493
|
-
* @public
|
|
8494
|
-
*/
|
|
8495
|
-
NextToken?: string;
|
|
8496
|
-
/**
|
|
8497
|
-
* <p>The maximum number of results to return per page.</p>
|
|
8498
|
-
* @public
|
|
8499
|
-
*/
|
|
8500
|
-
MaxResults?: number;
|
|
8501
|
-
}
|
|
8502
|
-
/**
|
|
8503
|
-
* @public
|
|
8504
|
-
*/
|
|
8505
|
-
export interface ListUserProficienciesResponse {
|
|
8506
|
-
/**
|
|
8507
|
-
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
8508
|
-
* @public
|
|
8509
|
-
*/
|
|
8510
|
-
NextToken?: string;
|
|
8511
|
-
/**
|
|
8512
|
-
* <p>Information about the user proficiencies.</p>
|
|
8513
|
-
* @public
|
|
8514
|
-
*/
|
|
8515
|
-
UserProficiencyList?: UserProficiency[];
|
|
8516
|
-
/**
|
|
8517
|
-
* <p>The last time that the user's proficiencies are were modified.</p>
|
|
8518
|
-
* @public
|
|
8519
|
-
*/
|
|
8520
|
-
LastModifiedTime?: Date;
|
|
8521
|
-
/**
|
|
8522
|
-
* <p>The region in which a user's proficiencies were last modified.</p>
|
|
8523
|
-
* @public
|
|
8524
|
-
*/
|
|
8525
|
-
LastModifiedRegion?: string;
|
|
8526
|
-
}
|
|
8527
|
-
/**
|
|
8528
|
-
* @public
|
|
8529
|
-
*/
|
|
8530
|
-
export interface ListUsersRequest {
|
|
8531
|
-
/**
|
|
8532
|
-
* <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.</p>
|
|
8533
|
-
* @public
|
|
8534
|
-
*/
|
|
8535
|
-
InstanceId: string | undefined;
|
|
8536
|
-
/**
|
|
8537
|
-
* <p>The token for the next set of results. Use the value returned in the previous
|
|
8538
|
-
* response in the next request to retrieve the next set of results.</p>
|
|
8539
|
-
* @public
|
|
8540
|
-
*/
|
|
8541
|
-
NextToken?: string;
|
|
8542
|
-
/**
|
|
8543
|
-
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
8544
|
-
* @public
|
|
8545
|
-
*/
|
|
8546
|
-
MaxResults?: number;
|
|
8547
|
-
}
|
|
8548
|
-
/**
|
|
8549
|
-
* <p>Contains summary information about a user.</p>
|
|
8550
|
-
* @public
|
|
8551
|
-
*/
|
|
8552
|
-
export interface UserSummary {
|
|
8553
|
-
/**
|
|
8554
|
-
* <p>The identifier of the user account.</p>
|
|
8555
|
-
* @public
|
|
8556
|
-
*/
|
|
8557
|
-
Id?: string;
|
|
8558
|
-
/**
|
|
8559
|
-
* <p>The Amazon Resource Name (ARN) of the user account.</p>
|
|
8560
|
-
* @public
|
|
8561
|
-
*/
|
|
8562
|
-
Arn?: string;
|
|
8563
|
-
/**
|
|
8564
|
-
* <p>The Amazon Connect user name of the user account.</p>
|
|
8565
|
-
* @public
|
|
8566
|
-
*/
|
|
8567
|
-
Username?: string;
|
|
8568
|
-
/**
|
|
8569
|
-
* <p>The timestamp when this resource was last modified.</p>
|
|
8570
|
-
* @public
|
|
8571
|
-
*/
|
|
8572
|
-
LastModifiedTime?: Date;
|
|
8573
|
-
/**
|
|
8574
|
-
* <p>The Amazon Web Services Region where this resource was last modified.</p>
|
|
8575
|
-
* @public
|
|
8576
|
-
*/
|
|
8577
|
-
LastModifiedRegion?: string;
|
|
8578
|
-
}
|
|
8579
|
-
/**
|
|
8580
|
-
* @public
|
|
8581
|
-
*/
|
|
8582
|
-
export interface ListUsersResponse {
|
|
8583
|
-
/**
|
|
8584
|
-
* <p>Information about the users.</p>
|
|
8585
|
-
* @public
|
|
8586
|
-
*/
|
|
8587
|
-
UserSummaryList?: UserSummary[];
|
|
8588
|
-
/**
|
|
8589
|
-
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
8590
|
-
* @public
|
|
8591
|
-
*/
|
|
8592
|
-
NextToken?: string;
|
|
8593
|
-
}
|
|
8594
|
-
/**
|
|
8595
|
-
* @public
|
|
8596
|
-
*/
|
|
8597
|
-
export interface ListViewsRequest {
|
|
8598
|
-
/**
|
|
8599
|
-
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of
|
|
8600
|
-
* the instance.</p>
|
|
8601
|
-
* @public
|
|
8602
|
-
*/
|
|
8603
|
-
InstanceId: string | undefined;
|
|
8604
|
-
/**
|
|
8605
|
-
* <p>The type of the view.</p>
|
|
8606
|
-
* @public
|
|
8607
|
-
*/
|
|
8608
|
-
Type?: ViewType;
|
|
8609
|
-
/**
|
|
8610
|
-
* <p>The token for the next set of results. Use the value returned in the previous response in
|
|
8611
|
-
* the next request to retrieve the next set of results.</p>
|
|
8612
|
-
* @public
|
|
8613
|
-
*/
|
|
8614
|
-
NextToken?: string;
|
|
8615
|
-
/**
|
|
8616
|
-
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
8617
|
-
* @public
|
|
8618
|
-
*/
|
|
8619
|
-
MaxResults?: number;
|
|
8620
|
-
}
|
|
8621
8661
|
/**
|
|
8622
8662
|
* @internal
|
|
8623
8663
|
*/
|