@aws-sdk/client-connect 3.677.0 → 3.679.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 +9 -1
- package/dist-cjs/index.js +49 -0
- package/dist-es/Connect.js +2 -0
- package/dist-es/commands/StartScreenSharingCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +25 -0
- package/dist-types/Connect.d.ts +7 -0
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/AssociateTrafficDistributionGroupUserCommand.d.ts +2 -1
- package/dist-types/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeContactCommand.d.ts +2 -0
- package/dist-types/commands/DisassociateTrafficDistributionGroupUserCommand.d.ts +2 -1
- package/dist-types/commands/GetMetricDataV2Command.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/StartScreenSharingCommand.d.ts +90 -0
- package/dist-types/commands/StartWebRTCContactCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +29 -44
- package/dist-types/models/models_1.d.ts +72 -35
- package/dist-types/models/models_2.d.ts +40 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Connect.d.ts +17 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartScreenSharingCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +6 -7
- package/dist-types/ts3.4/models/models_1.d.ts +8 -3
- package/dist-types/ts3.4/models/models_2.d.ts +10 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +14 -14
|
@@ -357,6 +357,17 @@ export interface AgentHierarchyGroups {
|
|
|
357
357
|
*/
|
|
358
358
|
L5Ids?: string[];
|
|
359
359
|
}
|
|
360
|
+
/**
|
|
361
|
+
* @public
|
|
362
|
+
* @enum
|
|
363
|
+
*/
|
|
364
|
+
export declare const ScreenShareCapability: {
|
|
365
|
+
readonly SEND: "SEND";
|
|
366
|
+
};
|
|
367
|
+
/**
|
|
368
|
+
* @public
|
|
369
|
+
*/
|
|
370
|
+
export type ScreenShareCapability = (typeof ScreenShareCapability)[keyof typeof ScreenShareCapability];
|
|
360
371
|
/**
|
|
361
372
|
* @public
|
|
362
373
|
* @enum
|
|
@@ -369,17 +380,23 @@ export declare const VideoCapability: {
|
|
|
369
380
|
*/
|
|
370
381
|
export type VideoCapability = (typeof VideoCapability)[keyof typeof VideoCapability];
|
|
371
382
|
/**
|
|
372
|
-
* <p>The configuration for the allowed capabilities for participants present over the
|
|
373
|
-
* call
|
|
383
|
+
* <p>The configuration for the allowed video and screen sharing capabilities for participants present over the
|
|
384
|
+
* call. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/inapp-calling.html">Set up in-app, web,
|
|
385
|
+
* video calling, and screen sharing capabilities</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
374
386
|
* @public
|
|
375
387
|
*/
|
|
376
388
|
export interface ParticipantCapabilities {
|
|
377
389
|
/**
|
|
378
|
-
* <p>The configuration having the video sharing capabilities for participants over the
|
|
390
|
+
* <p>The configuration having the video and screen sharing capabilities for participants over the
|
|
379
391
|
* call.</p>
|
|
380
392
|
* @public
|
|
381
393
|
*/
|
|
382
394
|
Video?: VideoCapability;
|
|
395
|
+
/**
|
|
396
|
+
* <p>The screen sharing capability that is enabled for the participant. <code>SEND</code> indicates the participant can share their screen.</p>
|
|
397
|
+
* @public
|
|
398
|
+
*/
|
|
399
|
+
ScreenShare?: ScreenShareCapability;
|
|
383
400
|
}
|
|
384
401
|
/**
|
|
385
402
|
* <p>Information regarding the device.</p>
|
|
@@ -465,8 +482,9 @@ export interface AgentInfo {
|
|
|
465
482
|
*/
|
|
466
483
|
DeviceInfo?: DeviceInfo;
|
|
467
484
|
/**
|
|
468
|
-
* <p>The configuration for the allowed capabilities for participants present over the
|
|
469
|
-
* call
|
|
485
|
+
* <p>The configuration for the allowed video and screen sharing capabilities for participants present over the
|
|
486
|
+
* call. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/inapp-calling.html">Set up in-app, web,
|
|
487
|
+
* video calling, and screen sharing capabilities</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
470
488
|
* @public
|
|
471
489
|
*/
|
|
472
490
|
Capabilities?: ParticipantCapabilities;
|
|
@@ -1502,8 +1520,7 @@ export interface AssociateSecurityKeyResponse {
|
|
|
1502
1520
|
export interface AssociateTrafficDistributionGroupUserRequest {
|
|
1503
1521
|
/**
|
|
1504
1522
|
* <p>The identifier of the traffic distribution group.
|
|
1505
|
-
* This can be the ID or the ARN
|
|
1506
|
-
* The ARN must be provided if the call is from the replicated Region.</p>
|
|
1523
|
+
* This can be the ID or the ARN of the traffic distribution group.</p>
|
|
1507
1524
|
* @public
|
|
1508
1525
|
*/
|
|
1509
1526
|
TrafficDistributionGroupId: string | undefined;
|
|
@@ -4688,8 +4705,7 @@ export interface CreateTrafficDistributionGroupRequest {
|
|
|
4688
4705
|
export interface CreateTrafficDistributionGroupResponse {
|
|
4689
4706
|
/**
|
|
4690
4707
|
* <p>The identifier of the traffic distribution group.
|
|
4691
|
-
* This can be the ID or the ARN
|
|
4692
|
-
* The ARN must be provided if the call is from the replicated Region.</p>
|
|
4708
|
+
* This can be the ID or the ARN of the traffic distribution group.</p>
|
|
4693
4709
|
* @public
|
|
4694
4710
|
*/
|
|
4695
4711
|
Id?: string;
|
|
@@ -5668,8 +5684,7 @@ export interface DeleteTaskTemplateResponse {
|
|
|
5668
5684
|
export interface DeleteTrafficDistributionGroupRequest {
|
|
5669
5685
|
/**
|
|
5670
5686
|
* <p>The identifier of the traffic distribution group.
|
|
5671
|
-
* This can be the ID or the ARN
|
|
5672
|
-
* The ARN must be provided if the call is from the replicated Region.</p>
|
|
5687
|
+
* This can be the ID or the ARN of the traffic distribution group.</p>
|
|
5673
5688
|
* @public
|
|
5674
5689
|
*/
|
|
5675
5690
|
TrafficDistributionGroupId: string | undefined;
|
|
@@ -5998,8 +6013,9 @@ export interface Customer {
|
|
|
5998
6013
|
*/
|
|
5999
6014
|
DeviceInfo?: DeviceInfo;
|
|
6000
6015
|
/**
|
|
6001
|
-
* <p>The configuration for the allowed capabilities for participants present over the
|
|
6002
|
-
* call
|
|
6016
|
+
* <p>The configuration for the allowed video and screen sharing capabilities for participants present over the
|
|
6017
|
+
* call. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/inapp-calling.html">Set up in-app, web,
|
|
6018
|
+
* video calling, and screen sharing capabilities</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
6003
6019
|
* @public
|
|
6004
6020
|
*/
|
|
6005
6021
|
Capabilities?: ParticipantCapabilities;
|
|
@@ -6103,37 +6119,6 @@ export interface MatchCriteria {
|
|
|
6103
6119
|
*/
|
|
6104
6120
|
AgentsCriteria?: AgentsCriteria;
|
|
6105
6121
|
}
|
|
6106
|
-
/**
|
|
6107
|
-
* <p>An object to specify the predefined attribute condition.</p>
|
|
6108
|
-
* @public
|
|
6109
|
-
*/
|
|
6110
|
-
export interface AttributeCondition {
|
|
6111
|
-
/**
|
|
6112
|
-
* <p>The name of predefined attribute.</p>
|
|
6113
|
-
* @public
|
|
6114
|
-
*/
|
|
6115
|
-
Name?: string;
|
|
6116
|
-
/**
|
|
6117
|
-
* <p>The value of predefined attribute.</p>
|
|
6118
|
-
* @public
|
|
6119
|
-
*/
|
|
6120
|
-
Value?: string;
|
|
6121
|
-
/**
|
|
6122
|
-
* <p>The proficiency level of the condition.</p>
|
|
6123
|
-
* @public
|
|
6124
|
-
*/
|
|
6125
|
-
ProficiencyLevel?: number;
|
|
6126
|
-
/**
|
|
6127
|
-
* <p>An object to define <code>AgentsCriteria</code>.</p>
|
|
6128
|
-
* @public
|
|
6129
|
-
*/
|
|
6130
|
-
MatchCriteria?: MatchCriteria;
|
|
6131
|
-
/**
|
|
6132
|
-
* <p>The operator of the condition.</p>
|
|
6133
|
-
* @public
|
|
6134
|
-
*/
|
|
6135
|
-
ComparisonOperator?: string;
|
|
6136
|
-
}
|
|
6137
6122
|
/**
|
|
6138
6123
|
* @internal
|
|
6139
6124
|
*/
|
|
@@ -1,6 +1,37 @@
|
|
|
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, 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, UserIdentityInfo, UserPhoneConfig, View, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
3
|
+
import { ActionSummary, AgentAvailabilityTimer, AgentConfig, AgentContactReference, AgentStatusReference, AgentStatusSummary, AgentStatusType, AnalyticsDataAssociationResult, Application, Channel, ContactFlowStatus, ContactFlowType, ContactState, CreatedByInfo, DirectoryType, Distribution, EventSourceName, FileStatusType, FileUseCaseType, FlowAssociationResourceType, FlowAssociationSummary, HoursOfOperationConfig, InstanceStorageConfig, InstanceStorageResourceType, IntegrationType, LexBot, LexV2Bot, ListFlowAssociationResourceType, MatchCriteria, MediaConcurrency, OutboundCallerConfig, ParticipantRole, PredefinedAttributeValues, QueueReference, QuickConnectConfig, QuickConnectType, ReferenceType, RoutingProfileQueueReference, RuleAction, RulePublishStatus, RuleTriggerEventSource, SourceType, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserPhoneConfig, View, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p>An object to specify the predefined attribute condition.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface AttributeCondition {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The name of predefined attribute.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
Name?: string;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The value of predefined attribute.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
Value?: string;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The proficiency level of the condition.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
ProficiencyLevel?: number;
|
|
24
|
+
/**
|
|
25
|
+
* <p>An object to define <code>AgentsCriteria</code>.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
MatchCriteria?: MatchCriteria;
|
|
29
|
+
/**
|
|
30
|
+
* <p>The operator of the condition.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
ComparisonOperator?: string;
|
|
34
|
+
}
|
|
4
35
|
/**
|
|
5
36
|
* @public
|
|
6
37
|
* @enum
|
|
@@ -2614,8 +2645,7 @@ export interface DisassociateSecurityKeyRequest {
|
|
|
2614
2645
|
export interface DisassociateTrafficDistributionGroupUserRequest {
|
|
2615
2646
|
/**
|
|
2616
2647
|
* <p>The identifier of the traffic distribution group.
|
|
2617
|
-
* This can be the ID or the ARN
|
|
2618
|
-
* The ARN must be provided if the call is from the replicated Region.</p>
|
|
2648
|
+
* This can be the ID or the ARN of the traffic distribution group.</p>
|
|
2619
2649
|
* @public
|
|
2620
2650
|
*/
|
|
2621
2651
|
TrafficDistributionGroupId: string | undefined;
|
|
@@ -4060,33 +4090,50 @@ export interface IntervalDetails {
|
|
|
4060
4090
|
export interface MetricFilterV2 {
|
|
4061
4091
|
/**
|
|
4062
4092
|
* <p>The key to use for filtering data. </p>
|
|
4063
|
-
* <p>Valid metric filter keys:
|
|
4064
|
-
*
|
|
4065
|
-
*
|
|
4066
|
-
*
|
|
4093
|
+
* <p>Valid metric filter keys: </p>
|
|
4094
|
+
* <ul>
|
|
4095
|
+
* <li>
|
|
4096
|
+
* <p>ANSWERING_MACHINE_DETECTION_STATUS</p>
|
|
4097
|
+
* </li>
|
|
4098
|
+
* <li>
|
|
4099
|
+
* <p>CASE_STATUS</p>
|
|
4100
|
+
* </li>
|
|
4101
|
+
* <li>
|
|
4102
|
+
* <p>DISCONNECT_REASON</p>
|
|
4103
|
+
* </li>
|
|
4104
|
+
* <li>
|
|
4105
|
+
* <p>FLOWS_ACTION_IDENTIFIER</p>
|
|
4106
|
+
* </li>
|
|
4107
|
+
* <li>
|
|
4108
|
+
* <p>FLOWS_NEXT_ACTION_IDENTIFIER</p>
|
|
4109
|
+
* </li>
|
|
4110
|
+
* <li>
|
|
4111
|
+
* <p>FLOWS_OUTCOME_TYPE</p>
|
|
4112
|
+
* </li>
|
|
4113
|
+
* <li>
|
|
4114
|
+
* <p>FLOWS_RESOURCE_TYPE</p>
|
|
4115
|
+
* </li>
|
|
4116
|
+
* <li>
|
|
4117
|
+
* <p>INITIATION_METHOD</p>
|
|
4118
|
+
* </li>
|
|
4119
|
+
* </ul>
|
|
4067
4120
|
* @public
|
|
4068
4121
|
*/
|
|
4069
4122
|
MetricFilterKey?: string;
|
|
4070
4123
|
/**
|
|
4071
|
-
* <p>The values to use for filtering data.
|
|
4072
|
-
*
|
|
4073
|
-
*
|
|
4074
|
-
* <code>
|
|
4075
|
-
*
|
|
4076
|
-
*
|
|
4077
|
-
*
|
|
4078
|
-
* <code>CUSTOMER_DISCONNECT</code> | <code>AGENT_DISCONNECT</code> |
|
|
4079
|
-
* <code>THIRD_PARTY_DISCONNECT</code> | <code>TELECOM_PROBLEM</code> | <code>BARGED</code> |
|
|
4080
|
-
* <code>CONTACT_FLOW_DISCONNECT</code> | <code>OTHER</code> | <code>EXPIRED</code> |
|
|
4081
|
-
* <code>API</code>
|
|
4082
|
-
* </p>
|
|
4124
|
+
* <p>The values to use for filtering data. Values for metric-level filters can be either a fixed
|
|
4125
|
+
* set of values or a customized list, depending on the use case.</p>
|
|
4126
|
+
* <p>For valid values of metric-level filters <code>INITIATION_METHOD</code>,
|
|
4127
|
+
* <code>DISCONNECT_REASON</code>, and <code>ANSWERING_MACHINE_DETECTION_STATUS</code>, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/ctr-data-model.html#ctr-ContactTraceRecord">ContactTraceRecord</a> in the <i>Amazon Connect Administrator Guide</i>. </p>
|
|
4128
|
+
* <p>For valid values of the metric-level filter <code>FLOWS_OUTCOME_TYPE</code>, see the description
|
|
4129
|
+
* for the <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-historical">Flow outcome</a> metric in the <i>Amazon Connect Administrator
|
|
4130
|
+
* Guide</i>.</p>
|
|
4083
4131
|
* @public
|
|
4084
4132
|
*/
|
|
4085
4133
|
MetricFilterValues?: string[];
|
|
4086
4134
|
/**
|
|
4087
|
-
* <p>
|
|
4088
|
-
* metric
|
|
4089
|
-
* the requested metric filter. </p>
|
|
4135
|
+
* <p>If set to <code>true</code>, the API response contains results that filter out the results matched
|
|
4136
|
+
* by the metric-level filters condition. By default, <code>Negate</code> is set to <code>false</code>. </p>
|
|
4090
4137
|
* @public
|
|
4091
4138
|
*/
|
|
4092
4139
|
Negate?: boolean;
|
|
@@ -4436,7 +4483,7 @@ export interface GetMetricDataV2Request {
|
|
|
4436
4483
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-avg-agent-api-connecting-time">Average agent API connecting time</a>
|
|
4437
4484
|
* </p>
|
|
4438
4485
|
* <note>
|
|
4439
|
-
* <p>The <code>Negate</code> key in
|
|
4486
|
+
* <p>The <code>Negate</code> key in metric-level filters is not applicable for this
|
|
4440
4487
|
* metric.</p>
|
|
4441
4488
|
* </note>
|
|
4442
4489
|
* </dd>
|
|
@@ -4803,7 +4850,7 @@ export interface GetMetricDataV2Request {
|
|
|
4803
4850
|
* <p>Unit: Count</p>
|
|
4804
4851
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype,
|
|
4805
4852
|
* Q in Connect</p>
|
|
4806
|
-
* <p>Threshold: For <code>ThresholdValue</code
|
|
4853
|
+
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
4807
4854
|
* (inclusive), in seconds. For <code>Comparison</code>, you can use <code>LT</code> (for "Less
|
|
4808
4855
|
* than") or <code>LTE</code> (for "Less than equal").</p>
|
|
4809
4856
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical">Contacts resolved in X</a>
|
|
@@ -5056,7 +5103,7 @@ export interface GetMetricDataV2Request {
|
|
|
5056
5103
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-agent-api-connecting-time">Agent API connecting time</a>
|
|
5057
5104
|
* </p>
|
|
5058
5105
|
* <note>
|
|
5059
|
-
* <p>The <code>Negate</code> key in
|
|
5106
|
+
* <p>The <code>Negate</code> key in metric-level filters is not applicable for this
|
|
5060
5107
|
* metric.</p>
|
|
5061
5108
|
* </note>
|
|
5062
5109
|
* </dd>
|
|
@@ -8724,16 +8771,6 @@ export interface ListTagsForResourceRequest {
|
|
|
8724
8771
|
*/
|
|
8725
8772
|
resourceArn: string | undefined;
|
|
8726
8773
|
}
|
|
8727
|
-
/**
|
|
8728
|
-
* @public
|
|
8729
|
-
*/
|
|
8730
|
-
export interface ListTagsForResourceResponse {
|
|
8731
|
-
/**
|
|
8732
|
-
* <p>Information about the tags.</p>
|
|
8733
|
-
* @public
|
|
8734
|
-
*/
|
|
8735
|
-
tags?: Record<string, string>;
|
|
8736
|
-
}
|
|
8737
8774
|
/**
|
|
8738
8775
|
* @internal
|
|
8739
8776
|
*/
|
|
@@ -1,7 +1,17 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
|
-
import { AgentAvailabilityTimer, AgentConfig, AgentHierarchyGroups, AgentInfo, AgentStatus, AgentStatusSearchFilter, AgentStatusState, AllowedCapabilities, AnsweringMachineDetectionStatus, Application,
|
|
4
|
-
import { ContactFlow, ContactFlowModule, ContactFlowModuleState, ContactFlowState, Evaluation, EvaluationAnswerData, EvaluationFormVersionStatus, EvaluationNote, HierarchyGroup, HierarchyGroupSummary, HoursOfOperation, InstanceAttributeType, PhoneNumberCountryCode, PhoneNumberType, PredefinedAttribute, Prompt, Queue, QueueStatus, QuickConnect, RoutingCriteriaStepStatus, RoutingProfile, SegmentAttributeValue, SignInConfig, SortOrder, TelephonyConfig, TrafficDistributionGroupStatus, WisdomInfo } from "./models_1";
|
|
3
|
+
import { AgentAvailabilityTimer, AgentConfig, AgentHierarchyGroups, AgentInfo, AgentStatus, AgentStatusSearchFilter, AgentStatusState, AllowedCapabilities, AnsweringMachineDetectionStatus, Application, Campaign, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ControlPlaneAttributeFilter, CreatedByInfo, Customer, CustomerVoiceActivity, DisconnectDetails, Endpoint, EvaluationFormQuestion, EvaluationFormScoringStrategy, Expiry, FileStatusType, FileUseCaseType, HoursOfOperationConfig, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, MonitorCapability, OutboundCallerConfig, ParticipantRole, PredefinedAttributeValues, QualityMetrics, QueueInfo, QuickConnectConfig, Reference, RehydrationType, RoutingProfileQueueConfig, RuleAction, RulePublishStatus, StringComparisonType, StringCondition, TagCondition, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UseCaseType, UserIdentityInfo, UserPhoneConfig, UserProficiency, View, ViewInputContent, ViewStatus, ViewType, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
|
+
import { AttributeCondition, ContactFlow, ContactFlowModule, ContactFlowModuleState, ContactFlowState, Evaluation, EvaluationAnswerData, EvaluationFormVersionStatus, EvaluationNote, HierarchyGroup, HierarchyGroupSummary, HoursOfOperation, InstanceAttributeType, PhoneNumberCountryCode, PhoneNumberType, PredefinedAttribute, Prompt, Queue, QueueStatus, QuickConnect, RoutingCriteriaStepStatus, RoutingProfile, SegmentAttributeValue, SignInConfig, SortOrder, TelephonyConfig, TrafficDistributionGroupStatus, WisdomInfo } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface ListTagsForResourceResponse {
|
|
9
|
+
/**
|
|
10
|
+
* <p>Information about the tags.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
tags?: Record<string, string>;
|
|
14
|
+
}
|
|
5
15
|
/**
|
|
6
16
|
* @public
|
|
7
17
|
*/
|
|
@@ -3353,6 +3363,34 @@ export interface StartOutboundVoiceContactResponse {
|
|
|
3353
3363
|
*/
|
|
3354
3364
|
ContactId?: string;
|
|
3355
3365
|
}
|
|
3366
|
+
/**
|
|
3367
|
+
* @public
|
|
3368
|
+
*/
|
|
3369
|
+
export interface StartScreenSharingRequest {
|
|
3370
|
+
/**
|
|
3371
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
3372
|
+
* request. If not provided, the Amazon Web Services
|
|
3373
|
+
* SDK populates this field. For more information about idempotency, see
|
|
3374
|
+
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
3375
|
+
* @public
|
|
3376
|
+
*/
|
|
3377
|
+
ClientToken?: string;
|
|
3378
|
+
/**
|
|
3379
|
+
* <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>
|
|
3380
|
+
* @public
|
|
3381
|
+
*/
|
|
3382
|
+
InstanceId: string | undefined;
|
|
3383
|
+
/**
|
|
3384
|
+
* <p>The identifier of the contact in this instance of Amazon Connect. </p>
|
|
3385
|
+
* @public
|
|
3386
|
+
*/
|
|
3387
|
+
ContactId: string | undefined;
|
|
3388
|
+
}
|
|
3389
|
+
/**
|
|
3390
|
+
* @public
|
|
3391
|
+
*/
|
|
3392
|
+
export interface StartScreenSharingResponse {
|
|
3393
|
+
}
|
|
3356
3394
|
/**
|
|
3357
3395
|
* @public
|
|
3358
3396
|
*/
|
|
@@ -197,6 +197,7 @@ import { StartContactRecordingCommandInput, StartContactRecordingCommandOutput }
|
|
|
197
197
|
import { StartContactStreamingCommandInput, StartContactStreamingCommandOutput } from "../commands/StartContactStreamingCommand";
|
|
198
198
|
import { StartOutboundChatContactCommandInput, StartOutboundChatContactCommandOutput } from "../commands/StartOutboundChatContactCommand";
|
|
199
199
|
import { StartOutboundVoiceContactCommandInput, StartOutboundVoiceContactCommandOutput } from "../commands/StartOutboundVoiceContactCommand";
|
|
200
|
+
import { StartScreenSharingCommandInput, StartScreenSharingCommandOutput } from "../commands/StartScreenSharingCommand";
|
|
200
201
|
import { StartTaskContactCommandInput, StartTaskContactCommandOutput } from "../commands/StartTaskContactCommand";
|
|
201
202
|
import { StartWebRTCContactCommandInput, StartWebRTCContactCommandOutput } from "../commands/StartWebRTCContactCommand";
|
|
202
203
|
import { StopContactCommandInput, StopContactCommandOutput } from "../commands/StopContactCommand";
|
|
@@ -1044,6 +1045,10 @@ export declare const se_StartOutboundChatContactCommand: (input: StartOutboundCh
|
|
|
1044
1045
|
* serializeAws_restJson1StartOutboundVoiceContactCommand
|
|
1045
1046
|
*/
|
|
1046
1047
|
export declare const se_StartOutboundVoiceContactCommand: (input: StartOutboundVoiceContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1048
|
+
/**
|
|
1049
|
+
* serializeAws_restJson1StartScreenSharingCommand
|
|
1050
|
+
*/
|
|
1051
|
+
export declare const se_StartScreenSharingCommand: (input: StartScreenSharingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1047
1052
|
/**
|
|
1048
1053
|
* serializeAws_restJson1StartTaskContactCommand
|
|
1049
1054
|
*/
|
|
@@ -2068,6 +2073,10 @@ export declare const de_StartOutboundChatContactCommand: (output: __HttpResponse
|
|
|
2068
2073
|
* deserializeAws_restJson1StartOutboundVoiceContactCommand
|
|
2069
2074
|
*/
|
|
2070
2075
|
export declare const de_StartOutboundVoiceContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartOutboundVoiceContactCommandOutput>;
|
|
2076
|
+
/**
|
|
2077
|
+
* deserializeAws_restJson1StartScreenSharingCommand
|
|
2078
|
+
*/
|
|
2079
|
+
export declare const de_StartScreenSharingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartScreenSharingCommandOutput>;
|
|
2071
2080
|
/**
|
|
2072
2081
|
* deserializeAws_restJson1StartTaskContactCommand
|
|
2073
2082
|
*/
|
|
@@ -787,6 +787,10 @@ import {
|
|
|
787
787
|
StartOutboundVoiceContactCommandInput,
|
|
788
788
|
StartOutboundVoiceContactCommandOutput,
|
|
789
789
|
} from "./commands/StartOutboundVoiceContactCommand";
|
|
790
|
+
import {
|
|
791
|
+
StartScreenSharingCommandInput,
|
|
792
|
+
StartScreenSharingCommandOutput,
|
|
793
|
+
} from "./commands/StartScreenSharingCommand";
|
|
790
794
|
import {
|
|
791
795
|
StartTaskContactCommandInput,
|
|
792
796
|
StartTaskContactCommandOutput,
|
|
@@ -3637,6 +3641,19 @@ export interface Connect {
|
|
|
3637
3641
|
options: __HttpHandlerOptions,
|
|
3638
3642
|
cb: (err: any, data?: StartOutboundVoiceContactCommandOutput) => void
|
|
3639
3643
|
): void;
|
|
3644
|
+
startScreenSharing(
|
|
3645
|
+
args: StartScreenSharingCommandInput,
|
|
3646
|
+
options?: __HttpHandlerOptions
|
|
3647
|
+
): Promise<StartScreenSharingCommandOutput>;
|
|
3648
|
+
startScreenSharing(
|
|
3649
|
+
args: StartScreenSharingCommandInput,
|
|
3650
|
+
cb: (err: any, data?: StartScreenSharingCommandOutput) => void
|
|
3651
|
+
): void;
|
|
3652
|
+
startScreenSharing(
|
|
3653
|
+
args: StartScreenSharingCommandInput,
|
|
3654
|
+
options: __HttpHandlerOptions,
|
|
3655
|
+
cb: (err: any, data?: StartScreenSharingCommandOutput) => void
|
|
3656
|
+
): void;
|
|
3640
3657
|
startTaskContact(
|
|
3641
3658
|
args: StartTaskContactCommandInput,
|
|
3642
3659
|
options?: __HttpHandlerOptions
|
|
@@ -833,6 +833,10 @@ import {
|
|
|
833
833
|
StartOutboundVoiceContactCommandInput,
|
|
834
834
|
StartOutboundVoiceContactCommandOutput,
|
|
835
835
|
} from "./commands/StartOutboundVoiceContactCommand";
|
|
836
|
+
import {
|
|
837
|
+
StartScreenSharingCommandInput,
|
|
838
|
+
StartScreenSharingCommandOutput,
|
|
839
|
+
} from "./commands/StartScreenSharingCommand";
|
|
836
840
|
import {
|
|
837
841
|
StartTaskContactCommandInput,
|
|
838
842
|
StartTaskContactCommandOutput,
|
|
@@ -1274,6 +1278,7 @@ export type ServiceInputTypes =
|
|
|
1274
1278
|
| StartContactStreamingCommandInput
|
|
1275
1279
|
| StartOutboundChatContactCommandInput
|
|
1276
1280
|
| StartOutboundVoiceContactCommandInput
|
|
1281
|
+
| StartScreenSharingCommandInput
|
|
1277
1282
|
| StartTaskContactCommandInput
|
|
1278
1283
|
| StartWebRTCContactCommandInput
|
|
1279
1284
|
| StopContactCommandInput
|
|
@@ -1531,6 +1536,7 @@ export type ServiceOutputTypes =
|
|
|
1531
1536
|
| StartContactStreamingCommandOutput
|
|
1532
1537
|
| StartOutboundChatContactCommandOutput
|
|
1533
1538
|
| StartOutboundVoiceContactCommandOutput
|
|
1539
|
+
| StartScreenSharingCommandOutput
|
|
1534
1540
|
| StartTaskContactCommandOutput
|
|
1535
1541
|
| StartWebRTCContactCommandOutput
|
|
1536
1542
|
| StopContactCommandOutput
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ConnectClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
ListTagsForResourceResponse,
|
|
11
|
-
} from "../models/models_1";
|
|
8
|
+
import { ListTagsForResourceRequest } from "../models/models_1";
|
|
9
|
+
import { ListTagsForResourceResponse } from "../models/models_2";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface ListTagsForResourceCommandInput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectClient";
|
|
8
|
+
import {
|
|
9
|
+
StartScreenSharingRequest,
|
|
10
|
+
StartScreenSharingResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartScreenSharingCommandInput
|
|
15
|
+
extends StartScreenSharingRequest {}
|
|
16
|
+
export interface StartScreenSharingCommandOutput
|
|
17
|
+
extends StartScreenSharingResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartScreenSharingCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartScreenSharingCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartScreenSharingCommandInput,
|
|
24
|
+
StartScreenSharingCommandOutput,
|
|
25
|
+
ConnectClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StartScreenSharingCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartScreenSharingCommandInput,
|
|
33
|
+
StartScreenSharingCommandOutput,
|
|
34
|
+
ConnectClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartScreenSharingCommand extends StartScreenSharingCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartScreenSharingRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartScreenSharingCommandInput;
|
|
48
|
+
output: StartScreenSharingCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -195,6 +195,7 @@ export * from "./StartContactRecordingCommand";
|
|
|
195
195
|
export * from "./StartContactStreamingCommand";
|
|
196
196
|
export * from "./StartOutboundChatContactCommand";
|
|
197
197
|
export * from "./StartOutboundVoiceContactCommand";
|
|
198
|
+
export * from "./StartScreenSharingCommand";
|
|
198
199
|
export * from "./StartTaskContactCommand";
|
|
199
200
|
export * from "./StartWebRTCContactCommand";
|
|
200
201
|
export * from "./StopContactCommand";
|
|
@@ -139,6 +139,11 @@ export interface AgentHierarchyGroups {
|
|
|
139
139
|
L4Ids?: string[];
|
|
140
140
|
L5Ids?: string[];
|
|
141
141
|
}
|
|
142
|
+
export declare const ScreenShareCapability: {
|
|
143
|
+
readonly SEND: "SEND";
|
|
144
|
+
};
|
|
145
|
+
export type ScreenShareCapability =
|
|
146
|
+
(typeof ScreenShareCapability)[keyof typeof ScreenShareCapability];
|
|
142
147
|
export declare const VideoCapability: {
|
|
143
148
|
readonly SEND: "SEND";
|
|
144
149
|
};
|
|
@@ -146,6 +151,7 @@ export type VideoCapability =
|
|
|
146
151
|
(typeof VideoCapability)[keyof typeof VideoCapability];
|
|
147
152
|
export interface ParticipantCapabilities {
|
|
148
153
|
Video?: VideoCapability;
|
|
154
|
+
ScreenShare?: ScreenShareCapability;
|
|
149
155
|
}
|
|
150
156
|
export interface DeviceInfo {
|
|
151
157
|
PlatformName?: string;
|
|
@@ -1798,13 +1804,6 @@ export interface Expiry {
|
|
|
1798
1804
|
export interface MatchCriteria {
|
|
1799
1805
|
AgentsCriteria?: AgentsCriteria;
|
|
1800
1806
|
}
|
|
1801
|
-
export interface AttributeCondition {
|
|
1802
|
-
Name?: string;
|
|
1803
|
-
Value?: string;
|
|
1804
|
-
ProficiencyLevel?: number;
|
|
1805
|
-
MatchCriteria?: MatchCriteria;
|
|
1806
|
-
ComparisonOperator?: string;
|
|
1807
|
-
}
|
|
1808
1807
|
export declare const CreateInstanceRequestFilterSensitiveLog: (
|
|
1809
1808
|
obj: CreateInstanceRequest
|
|
1810
1809
|
) => any;
|
|
@@ -29,6 +29,7 @@ import {
|
|
|
29
29
|
LexBot,
|
|
30
30
|
LexV2Bot,
|
|
31
31
|
ListFlowAssociationResourceType,
|
|
32
|
+
MatchCriteria,
|
|
32
33
|
MediaConcurrency,
|
|
33
34
|
OutboundCallerConfig,
|
|
34
35
|
ParticipantRole,
|
|
@@ -52,6 +53,13 @@ import {
|
|
|
52
53
|
VocabularyLanguageCode,
|
|
53
54
|
VocabularyState,
|
|
54
55
|
} from "./models_0";
|
|
56
|
+
export interface AttributeCondition {
|
|
57
|
+
Name?: string;
|
|
58
|
+
Value?: string;
|
|
59
|
+
ProficiencyLevel?: number;
|
|
60
|
+
MatchCriteria?: MatchCriteria;
|
|
61
|
+
ComparisonOperator?: string;
|
|
62
|
+
}
|
|
55
63
|
export declare const RoutingCriteriaStepStatus: {
|
|
56
64
|
readonly ACTIVE: "ACTIVE";
|
|
57
65
|
readonly EXPIRED: "EXPIRED";
|
|
@@ -2227,9 +2235,6 @@ export interface ListSecurityProfilesResponse {
|
|
|
2227
2235
|
export interface ListTagsForResourceRequest {
|
|
2228
2236
|
resourceArn: string | undefined;
|
|
2229
2237
|
}
|
|
2230
|
-
export interface ListTagsForResourceResponse {
|
|
2231
|
-
tags?: Record<string, string>;
|
|
2232
|
-
}
|
|
2233
2238
|
export declare const InstanceFilterSensitiveLog: (obj: Instance) => any;
|
|
2234
2239
|
export declare const DescribeInstanceResponseFilterSensitiveLog: (
|
|
2235
2240
|
obj: DescribeInstanceResponse
|
|
@@ -11,7 +11,6 @@ import {
|
|
|
11
11
|
AllowedCapabilities,
|
|
12
12
|
AnsweringMachineDetectionStatus,
|
|
13
13
|
Application,
|
|
14
|
-
AttributeCondition,
|
|
15
14
|
Campaign,
|
|
16
15
|
Channel,
|
|
17
16
|
ContactFlowStatus,
|
|
@@ -63,6 +62,7 @@ import {
|
|
|
63
62
|
VocabularyState,
|
|
64
63
|
} from "./models_0";
|
|
65
64
|
import {
|
|
65
|
+
AttributeCondition,
|
|
66
66
|
ContactFlow,
|
|
67
67
|
ContactFlowModule,
|
|
68
68
|
ContactFlowModuleState,
|
|
@@ -91,6 +91,9 @@ import {
|
|
|
91
91
|
TrafficDistributionGroupStatus,
|
|
92
92
|
WisdomInfo,
|
|
93
93
|
} from "./models_1";
|
|
94
|
+
export interface ListTagsForResourceResponse {
|
|
95
|
+
tags?: Record<string, string>;
|
|
96
|
+
}
|
|
94
97
|
export interface ListTaskTemplatesRequest {
|
|
95
98
|
InstanceId: string | undefined;
|
|
96
99
|
NextToken?: string;
|
|
@@ -811,6 +814,12 @@ export interface StartOutboundVoiceContactRequest {
|
|
|
811
814
|
export interface StartOutboundVoiceContactResponse {
|
|
812
815
|
ContactId?: string;
|
|
813
816
|
}
|
|
817
|
+
export interface StartScreenSharingRequest {
|
|
818
|
+
ClientToken?: string;
|
|
819
|
+
InstanceId: string | undefined;
|
|
820
|
+
ContactId: string | undefined;
|
|
821
|
+
}
|
|
822
|
+
export interface StartScreenSharingResponse {}
|
|
814
823
|
export interface StartTaskContactRequest {
|
|
815
824
|
InstanceId: string | undefined;
|
|
816
825
|
PreviousContactId?: string;
|
|
@@ -791,6 +791,10 @@ import {
|
|
|
791
791
|
StartOutboundVoiceContactCommandInput,
|
|
792
792
|
StartOutboundVoiceContactCommandOutput,
|
|
793
793
|
} from "../commands/StartOutboundVoiceContactCommand";
|
|
794
|
+
import {
|
|
795
|
+
StartScreenSharingCommandInput,
|
|
796
|
+
StartScreenSharingCommandOutput,
|
|
797
|
+
} from "../commands/StartScreenSharingCommand";
|
|
794
798
|
import {
|
|
795
799
|
StartTaskContactCommandInput,
|
|
796
800
|
StartTaskContactCommandOutput,
|
|
@@ -1815,6 +1819,10 @@ export declare const se_StartOutboundVoiceContactCommand: (
|
|
|
1815
1819
|
input: StartOutboundVoiceContactCommandInput,
|
|
1816
1820
|
context: __SerdeContext
|
|
1817
1821
|
) => Promise<__HttpRequest>;
|
|
1822
|
+
export declare const se_StartScreenSharingCommand: (
|
|
1823
|
+
input: StartScreenSharingCommandInput,
|
|
1824
|
+
context: __SerdeContext
|
|
1825
|
+
) => Promise<__HttpRequest>;
|
|
1818
1826
|
export declare const se_StartTaskContactCommand: (
|
|
1819
1827
|
input: StartTaskContactCommandInput,
|
|
1820
1828
|
context: __SerdeContext
|
|
@@ -2839,6 +2847,10 @@ export declare const de_StartOutboundVoiceContactCommand: (
|
|
|
2839
2847
|
output: __HttpResponse,
|
|
2840
2848
|
context: __SerdeContext
|
|
2841
2849
|
) => Promise<StartOutboundVoiceContactCommandOutput>;
|
|
2850
|
+
export declare const de_StartScreenSharingCommand: (
|
|
2851
|
+
output: __HttpResponse,
|
|
2852
|
+
context: __SerdeContext
|
|
2853
|
+
) => Promise<StartScreenSharingCommandOutput>;
|
|
2842
2854
|
export declare const de_StartTaskContactCommand: (
|
|
2843
2855
|
output: __HttpResponse,
|
|
2844
2856
|
context: __SerdeContext
|