@aws-sdk/client-connect 3.896.0 → 3.899.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 +233 -59
- package/dist-es/Connect.js +4 -0
- package/dist-es/commands/AssociateContactWithUserCommand.js +22 -0
- package/dist-es/commands/ListInstancesCommand.js +1 -1
- package/dist-es/commands/ListRoutingProfileManualAssignmentQueuesCommand.js +22 -0
- package/dist-es/commands/SearchContactsCommand.js +2 -1
- package/dist-es/commands/UpdateEmailAddressMetadataCommand.js +1 -1
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_1.js +0 -10
- package/dist-es/models/models_2.js +28 -33
- package/dist-es/models/models_3.js +29 -0
- package/dist-es/pagination/ListRoutingProfileManualAssignmentQueuesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +116 -4
- package/dist-types/Connect.d.ts +14 -0
- package/dist-types/ConnectClient.d.ts +4 -2
- package/dist-types/commands/AssociateContactWithUserCommand.d.ts +136 -0
- package/dist-types/commands/AssociateRoutingProfileQueuesCommand.d.ts +9 -1
- package/dist-types/commands/CreateRoutingProfileCommand.d.ts +8 -0
- package/dist-types/commands/DeleteHoursOfOperationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteHoursOfOperationOverrideCommand.d.ts +1 -1
- package/dist-types/commands/DeleteInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRoutingProfileCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateRoutingProfileQueuesCommand.d.ts +7 -1
- package/dist-types/commands/GetContactMetricsCommand.d.ts +2 -2
- package/dist-types/commands/ListInstanceStorageConfigsCommand.d.ts +1 -2
- package/dist-types/commands/ListInstancesCommand.d.ts +2 -1
- package/dist-types/commands/ListRoutingProfileManualAssignmentQueuesCommand.d.ts +128 -0
- package/dist-types/commands/SearchContactsCommand.d.ts +161 -8
- package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +4 -0
- package/dist-types/commands/StopContactCommand.d.ts +1 -2
- package/dist-types/commands/UpdateContactRoutingDataCommand.d.ts +1 -2
- package/dist-types/commands/UpdateContactScheduleCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEmailAddressMetadataCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEvaluationFormCommand.d.ts +1 -2
- package/dist-types/commands/UpdateHoursOfOperationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateHoursOfOperationOverrideCommand.d.ts +1 -1
- package/dist-types/commands/UpdateInstanceAttributeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateInstanceStorageConfigCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +53 -54
- package/dist-types/models/models_1.d.ts +69 -106
- package/dist-types/models/models_2.d.ts +388 -443
- package/dist-types/models/models_3.d.ts +394 -3
- package/dist-types/pagination/ListRoutingProfileManualAssignmentQueuesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/Connect.d.ts +40 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/AssociateContactWithUserCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteHoursOfOperationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteHoursOfOperationOverrideCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteInstanceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListInstanceStorageConfigsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListRoutingProfileManualAssignmentQueuesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SearchContactsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateContactRoutingDataCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateContactScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEmailAddressMetadataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEvaluationFormCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateHoursOfOperationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateHoursOfOperationOverrideCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateInstanceAttributeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateInstanceStorageConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +16 -14
- package/dist-types/ts3.4/models/models_1.d.ts +17 -29
- package/dist-types/ts3.4/models/models_2.d.ts +102 -114
- package/dist-types/ts3.4/models/models_3.d.ts +110 -0
- package/dist-types/ts3.4/pagination/ListRoutingProfileManualAssignmentQueuesPaginator.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 +24 -0
- package/package.json +11 -11
|
@@ -1,6 +1,265 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
|
+
import { AdditionalEmailRecipients, AgentAvailabilityTimer, AgentConfig, AgentInfo, AgentStatusSearchFilter, Application, Campaign, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, Endpoint, EvaluationFormQuestion, EvaluationFormScoringStrategy, HoursOfOperationConfig, HoursOfOperationOverrideConfig, InitiateAs, InputPredefinedAttributeConfiguration, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, OutboundCallerConfig, OutboundEmailConfig, PredefinedAttributeValues, QuickConnectConfig, Reference, RoutingProfileQueueConfig, RuleAction, RulePublishStatus, StringCondition, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserInfo, UserPhoneConfig, UserProficiency, View, ViewInputContent, ViewStatus } from "./models_0";
|
|
4
|
+
import { AnsweringMachineDetectionStatus, AttributeCondition, ChatMetrics, ContactDetails, ContactEvaluation, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, Customer, CustomerVoiceActivity, DisconnectDetails, EndpointInfo, Evaluation, EvaluationFormVersionStatus, Expiry, InstanceAttributeType, QualityMetrics, QueueInfo, QueueStatus, RecordingInfo, RoutingCriteriaStepStatus, SignInConfig, TelephonyConfig, WisdomInfo } from "./models_1";
|
|
5
|
+
import { ChatMessage, ContactFlowModuleSearchFilter, ContactFlowSearchFilter, ContactSearchSummaryAgentInfo, ContactSearchSummaryQueueInfo, DateCondition, EmailAddressInfo, EmailAddressSearchFilter, EmailAttachment, HierarchyGroupCondition, HoursOfOperationSearchFilter, InboundAdditionalRecipients, InboundEmailContent, ListCondition, ParticipantDetails, PersistentChat, PromptSearchFilter, QueueInfoInput, QueueSearchFilter, QuickConnectSearchFilter, RoutingCriteriaInputStepExpiry, RoutingProfileSearchFilter, SearchableQueueType, SecurityProfilesSearchFilter, UserHierarchyGroupSearchFilter, UserSearchFilter } from "./models_2";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface UpdateContactRoutingDataResponse {
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export interface UpdateContactScheduleRequest {
|
|
15
|
+
/**
|
|
16
|
+
* <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>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
InstanceId: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The identifier of the contact.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
ContactId: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* <p>The timestamp, in Unix Epoch seconds format, at which to start running the inbound flow. The scheduled time cannot be in the past. It must be within up to 6 days in future. </p>
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
ScheduledTime: Date | undefined;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
export interface UpdateContactScheduleResponse {
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export interface UpdateEmailAddressMetadataRequest {
|
|
40
|
+
/**
|
|
41
|
+
* <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>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
InstanceId: string | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* <p>The identifier of the email address.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
EmailAddressId: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* <p>The description of the email address.</p>
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
Description?: string | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* <p>The display name of email address.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
DisplayName?: string | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
62
|
+
* request. If not provided, the Amazon Web Services
|
|
63
|
+
* SDK populates this field. For more information about idempotency, see
|
|
64
|
+
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
ClientToken?: string | undefined;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export interface UpdateEmailAddressMetadataResponse {
|
|
73
|
+
/**
|
|
74
|
+
* <p>The identifier of the email address.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
EmailAddressId?: string | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* <p>The Amazon Resource Name (ARN) of the email address.</p>
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
EmailAddressArn?: string | undefined;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export interface UpdateEvaluationFormResponse {
|
|
88
|
+
/**
|
|
89
|
+
* <p>The unique identifier for the evaluation form.</p>
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
EvaluationFormId: string | undefined;
|
|
93
|
+
/**
|
|
94
|
+
* <p>The Amazon Resource Name (ARN) for the contact evaluation resource.</p>
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
EvaluationFormArn: string | undefined;
|
|
98
|
+
/**
|
|
99
|
+
* <p>The version of the updated evaluation form resource.</p>
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
EvaluationFormVersion: number | undefined;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
export interface UpdateHoursOfOperationRequest {
|
|
108
|
+
/**
|
|
109
|
+
* <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>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
InstanceId: string | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* <p>The identifier of the hours of operation.</p>
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
HoursOfOperationId: string | undefined;
|
|
118
|
+
/**
|
|
119
|
+
* <p>The name of the hours of operation.</p>
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
Name?: string | undefined;
|
|
123
|
+
/**
|
|
124
|
+
* <p>The description of the hours of operation.</p>
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
Description?: string | undefined;
|
|
128
|
+
/**
|
|
129
|
+
* <p>The time zone of the hours of operation.</p>
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
TimeZone?: string | undefined;
|
|
133
|
+
/**
|
|
134
|
+
* <p>Configuration information of the hours of operation.</p>
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
Config?: HoursOfOperationConfig[] | undefined;
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* <p>Request processing failed because dependent condition failed.</p>
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
export declare class ConditionalOperationFailedException extends __BaseException {
|
|
144
|
+
readonly name: "ConditionalOperationFailedException";
|
|
145
|
+
readonly $fault: "client";
|
|
146
|
+
Message?: string | undefined;
|
|
147
|
+
/**
|
|
148
|
+
* @internal
|
|
149
|
+
*/
|
|
150
|
+
constructor(opts: __ExceptionOptionType<ConditionalOperationFailedException, __BaseException>);
|
|
151
|
+
}
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
155
|
+
export interface UpdateHoursOfOperationOverrideRequest {
|
|
156
|
+
/**
|
|
157
|
+
* <p>The identifier of the Amazon Connect instance.</p>
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
InstanceId: string | undefined;
|
|
161
|
+
/**
|
|
162
|
+
* <p>The identifier for the hours of operation.</p>
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
HoursOfOperationId: string | undefined;
|
|
166
|
+
/**
|
|
167
|
+
* <p>The identifier for the hours of operation override.</p>
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
170
|
+
HoursOfOperationOverrideId: string | undefined;
|
|
171
|
+
/**
|
|
172
|
+
* <p>The name of the hours of operation override.</p>
|
|
173
|
+
* @public
|
|
174
|
+
*/
|
|
175
|
+
Name?: string | undefined;
|
|
176
|
+
/**
|
|
177
|
+
* <p>The description of the hours of operation override.</p>
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
Description?: string | undefined;
|
|
181
|
+
/**
|
|
182
|
+
* <p>Configuration information for the hours of operation override: day, start time, and end
|
|
183
|
+
* time.</p>
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
Config?: HoursOfOperationOverrideConfig[] | undefined;
|
|
187
|
+
/**
|
|
188
|
+
* <p>The date from when the hours of operation override would be effective.</p>
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
EffectiveFrom?: string | undefined;
|
|
192
|
+
/**
|
|
193
|
+
* <p>The date until the hours of operation override is effective.</p>
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
196
|
+
EffectiveTill?: string | undefined;
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
201
|
+
export interface UpdateInstanceAttributeRequest {
|
|
202
|
+
/**
|
|
203
|
+
* <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>
|
|
204
|
+
* @public
|
|
205
|
+
*/
|
|
206
|
+
InstanceId: string | undefined;
|
|
207
|
+
/**
|
|
208
|
+
* <p>The type of attribute.</p>
|
|
209
|
+
* <note>
|
|
210
|
+
* <p>Only allowlisted customers can consume USE_CUSTOM_TTS_VOICES. To access this feature,
|
|
211
|
+
* contact Amazon Web Services Support for allowlisting.</p>
|
|
212
|
+
* </note>
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
AttributeType: InstanceAttributeType | undefined;
|
|
216
|
+
/**
|
|
217
|
+
* <p>The value for the attribute. Maximum character limit is 100. </p>
|
|
218
|
+
* @public
|
|
219
|
+
*/
|
|
220
|
+
Value: string | undefined;
|
|
221
|
+
/**
|
|
222
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
223
|
+
* request. If not provided, the Amazon Web Services
|
|
224
|
+
* SDK populates this field. For more information about idempotency, see
|
|
225
|
+
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
226
|
+
* @public
|
|
227
|
+
*/
|
|
228
|
+
ClientToken?: string | undefined;
|
|
229
|
+
}
|
|
230
|
+
/**
|
|
231
|
+
* @public
|
|
232
|
+
*/
|
|
233
|
+
export interface UpdateInstanceStorageConfigRequest {
|
|
234
|
+
/**
|
|
235
|
+
* <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>
|
|
236
|
+
* @public
|
|
237
|
+
*/
|
|
238
|
+
InstanceId: string | undefined;
|
|
239
|
+
/**
|
|
240
|
+
* <p>The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.</p>
|
|
241
|
+
* @public
|
|
242
|
+
*/
|
|
243
|
+
AssociationId: string | undefined;
|
|
244
|
+
/**
|
|
245
|
+
* <p>A valid resource type.</p>
|
|
246
|
+
* @public
|
|
247
|
+
*/
|
|
248
|
+
ResourceType: InstanceStorageResourceType | undefined;
|
|
249
|
+
/**
|
|
250
|
+
* <p>The storage configuration for the instance.</p>
|
|
251
|
+
* @public
|
|
252
|
+
*/
|
|
253
|
+
StorageConfig: InstanceStorageConfig | undefined;
|
|
254
|
+
/**
|
|
255
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
256
|
+
* request. If not provided, the Amazon Web Services
|
|
257
|
+
* SDK populates this field. For more information about idempotency, see
|
|
258
|
+
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
259
|
+
* @public
|
|
260
|
+
*/
|
|
261
|
+
ClientToken?: string | undefined;
|
|
262
|
+
}
|
|
4
263
|
/**
|
|
5
264
|
* @public
|
|
6
265
|
*/
|
|
@@ -2454,6 +2713,24 @@ export interface Step {
|
|
|
2454
2713
|
*/
|
|
2455
2714
|
Status?: RoutingCriteriaStepStatus | undefined;
|
|
2456
2715
|
}
|
|
2716
|
+
/**
|
|
2717
|
+
* <p>The value of a segment attribute. This is structured as a map with a single key-value pair.
|
|
2718
|
+
* The key 'valueString' indicates that the attribute type is a string, and its corresponding value
|
|
2719
|
+
* is the actual string value of the segment attribute.</p>
|
|
2720
|
+
* @public
|
|
2721
|
+
*/
|
|
2722
|
+
export interface ContactSearchSummarySegmentAttributeValue {
|
|
2723
|
+
/**
|
|
2724
|
+
* <p>The value of a segment attribute represented as a string.</p>
|
|
2725
|
+
* @public
|
|
2726
|
+
*/
|
|
2727
|
+
ValueString?: string | undefined;
|
|
2728
|
+
/**
|
|
2729
|
+
* <p>The key and value of a segment attribute.</p>
|
|
2730
|
+
* @public
|
|
2731
|
+
*/
|
|
2732
|
+
ValueMap?: Record<string, SegmentAttributeValue> | undefined;
|
|
2733
|
+
}
|
|
2457
2734
|
/**
|
|
2458
2735
|
* @public
|
|
2459
2736
|
*/
|
|
@@ -3441,6 +3718,88 @@ export interface Contact {
|
|
|
3441
3718
|
*/
|
|
3442
3719
|
Attributes?: Record<string, string> | undefined;
|
|
3443
3720
|
}
|
|
3721
|
+
/**
|
|
3722
|
+
* <p>Information of returned contact.</p>
|
|
3723
|
+
* @public
|
|
3724
|
+
*/
|
|
3725
|
+
export interface ContactSearchSummary {
|
|
3726
|
+
/**
|
|
3727
|
+
* <p>The Amazon Resource Name (ARN) of the contact.</p>
|
|
3728
|
+
* @public
|
|
3729
|
+
*/
|
|
3730
|
+
Arn?: string | undefined;
|
|
3731
|
+
/**
|
|
3732
|
+
* <p>The identifier of the contact summary.</p>
|
|
3733
|
+
* @public
|
|
3734
|
+
*/
|
|
3735
|
+
Id?: string | undefined;
|
|
3736
|
+
/**
|
|
3737
|
+
* <p>If this contact is related to other contacts, this is the ID of the initial contact.</p>
|
|
3738
|
+
* @public
|
|
3739
|
+
*/
|
|
3740
|
+
InitialContactId?: string | undefined;
|
|
3741
|
+
/**
|
|
3742
|
+
* <p>If this contact is not the first contact, this is the ID of the previous contact.</p>
|
|
3743
|
+
* @public
|
|
3744
|
+
*/
|
|
3745
|
+
PreviousContactId?: string | undefined;
|
|
3746
|
+
/**
|
|
3747
|
+
* <p>Indicates how the contact was initiated.</p>
|
|
3748
|
+
* @public
|
|
3749
|
+
*/
|
|
3750
|
+
InitiationMethod?: ContactInitiationMethod | undefined;
|
|
3751
|
+
/**
|
|
3752
|
+
* <p>How the contact reached your contact center.</p>
|
|
3753
|
+
* @public
|
|
3754
|
+
*/
|
|
3755
|
+
Channel?: Channel | undefined;
|
|
3756
|
+
/**
|
|
3757
|
+
* <p>If this contact was queued, this contains information about the queue.</p>
|
|
3758
|
+
* @public
|
|
3759
|
+
*/
|
|
3760
|
+
QueueInfo?: ContactSearchSummaryQueueInfo | undefined;
|
|
3761
|
+
/**
|
|
3762
|
+
* <p>Information about the agent who accepted the contact.</p>
|
|
3763
|
+
* @public
|
|
3764
|
+
*/
|
|
3765
|
+
AgentInfo?: ContactSearchSummaryAgentInfo | undefined;
|
|
3766
|
+
/**
|
|
3767
|
+
* <p>The date and time this contact was initiated, in UTC time. For <code>INBOUND</code>, this is
|
|
3768
|
+
* when the contact arrived. For <code>OUTBOUND</code>, this is when the agent began dialing. For
|
|
3769
|
+
* <code>CALLBACK</code>, this is when the callback contact was created. For <code>TRANSFER</code>
|
|
3770
|
+
* and <code>QUEUE_TRANSFER</code>, this is when the transfer was initiated. For API, this is when
|
|
3771
|
+
* the request arrived. For <code>EXTERNAL_OUTBOUND</code>, this is when the agent started dialing
|
|
3772
|
+
* the external participant. For <code>MONITOR</code>, this is when the supervisor started listening
|
|
3773
|
+
* to a contact.</p>
|
|
3774
|
+
* @public
|
|
3775
|
+
*/
|
|
3776
|
+
InitiationTimestamp?: Date | undefined;
|
|
3777
|
+
/**
|
|
3778
|
+
* <p>The timestamp when the customer endpoint disconnected from Amazon Connect.</p>
|
|
3779
|
+
* @public
|
|
3780
|
+
*/
|
|
3781
|
+
DisconnectTimestamp?: Date | undefined;
|
|
3782
|
+
/**
|
|
3783
|
+
* <p>The timestamp, in Unix epoch time format, at which to start running the inbound flow.</p>
|
|
3784
|
+
* @public
|
|
3785
|
+
*/
|
|
3786
|
+
ScheduledTimestamp?: Date | undefined;
|
|
3787
|
+
/**
|
|
3788
|
+
* <p>Set of segment attributes for a contact.</p>
|
|
3789
|
+
* @public
|
|
3790
|
+
*/
|
|
3791
|
+
SegmentAttributes?: Record<string, ContactSearchSummarySegmentAttributeValue> | undefined;
|
|
3792
|
+
/**
|
|
3793
|
+
* <p>Indicates name of the contact.</p>
|
|
3794
|
+
* @public
|
|
3795
|
+
*/
|
|
3796
|
+
Name?: string | undefined;
|
|
3797
|
+
/**
|
|
3798
|
+
* <p>Latest routing criteria on the contact.</p>
|
|
3799
|
+
* @public
|
|
3800
|
+
*/
|
|
3801
|
+
RoutingCriteria?: RoutingCriteria | undefined;
|
|
3802
|
+
}
|
|
3444
3803
|
/**
|
|
3445
3804
|
* @public
|
|
3446
3805
|
*/
|
|
@@ -3451,6 +3810,30 @@ export interface DescribeContactResponse {
|
|
|
3451
3810
|
*/
|
|
3452
3811
|
Contact?: Contact | undefined;
|
|
3453
3812
|
}
|
|
3813
|
+
/**
|
|
3814
|
+
* @public
|
|
3815
|
+
*/
|
|
3816
|
+
export interface SearchContactsResponse {
|
|
3817
|
+
/**
|
|
3818
|
+
* <p>Information about the contacts.</p>
|
|
3819
|
+
* @public
|
|
3820
|
+
*/
|
|
3821
|
+
Contacts: ContactSearchSummary[] | undefined;
|
|
3822
|
+
/**
|
|
3823
|
+
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
3824
|
+
* @public
|
|
3825
|
+
*/
|
|
3826
|
+
NextToken?: string | undefined;
|
|
3827
|
+
/**
|
|
3828
|
+
* <p>The total number of contacts which matched your search query.</p>
|
|
3829
|
+
* @public
|
|
3830
|
+
*/
|
|
3831
|
+
TotalCount?: number | undefined;
|
|
3832
|
+
}
|
|
3833
|
+
/**
|
|
3834
|
+
* @internal
|
|
3835
|
+
*/
|
|
3836
|
+
export declare const UpdateEmailAddressMetadataRequestFilterSensitiveLog: (obj: UpdateEmailAddressMetadataRequest) => any;
|
|
3454
3837
|
/**
|
|
3455
3838
|
* @internal
|
|
3456
3839
|
*/
|
|
@@ -3495,7 +3878,15 @@ export declare const UpdateContactRequestFilterSensitiveLog: (obj: UpdateContact
|
|
|
3495
3878
|
* @internal
|
|
3496
3879
|
*/
|
|
3497
3880
|
export declare const ContactFilterSensitiveLog: (obj: Contact) => any;
|
|
3881
|
+
/**
|
|
3882
|
+
* @internal
|
|
3883
|
+
*/
|
|
3884
|
+
export declare const ContactSearchSummaryFilterSensitiveLog: (obj: ContactSearchSummary) => any;
|
|
3498
3885
|
/**
|
|
3499
3886
|
* @internal
|
|
3500
3887
|
*/
|
|
3501
3888
|
export declare const DescribeContactResponseFilterSensitiveLog: (obj: DescribeContactResponse) => any;
|
|
3889
|
+
/**
|
|
3890
|
+
* @internal
|
|
3891
|
+
*/
|
|
3892
|
+
export declare const SearchContactsResponseFilterSensitiveLog: (obj: SearchContactsResponse) => any;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListRoutingProfileManualAssignmentQueuesCommandInput, ListRoutingProfileManualAssignmentQueuesCommandOutput } from "../commands/ListRoutingProfileManualAssignmentQueuesCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListRoutingProfileManualAssignmentQueues: (config: ConnectPaginationConfiguration, input: ListRoutingProfileManualAssignmentQueuesCommandInput, ...rest: any[]) => Paginator<ListRoutingProfileManualAssignmentQueuesCommandOutput>;
|
|
@@ -32,6 +32,7 @@ export * from "./ListQueueQuickConnectsPaginator";
|
|
|
32
32
|
export * from "./ListQueuesPaginator";
|
|
33
33
|
export * from "./ListQuickConnectsPaginator";
|
|
34
34
|
export * from "./ListRealtimeContactAnalysisSegmentsV2Paginator";
|
|
35
|
+
export * from "./ListRoutingProfileManualAssignmentQueuesPaginator";
|
|
35
36
|
export * from "./ListRoutingProfileQueuesPaginator";
|
|
36
37
|
export * from "./ListRoutingProfilesPaginator";
|
|
37
38
|
export * from "./ListRulesPaginator";
|
|
@@ -4,6 +4,7 @@ import { ActivateEvaluationFormCommandInput, ActivateEvaluationFormCommandOutput
|
|
|
4
4
|
import { AssociateAnalyticsDataSetCommandInput, AssociateAnalyticsDataSetCommandOutput } from "../commands/AssociateAnalyticsDataSetCommand";
|
|
5
5
|
import { AssociateApprovedOriginCommandInput, AssociateApprovedOriginCommandOutput } from "../commands/AssociateApprovedOriginCommand";
|
|
6
6
|
import { AssociateBotCommandInput, AssociateBotCommandOutput } from "../commands/AssociateBotCommand";
|
|
7
|
+
import { AssociateContactWithUserCommandInput, AssociateContactWithUserCommandOutput } from "../commands/AssociateContactWithUserCommand";
|
|
7
8
|
import { AssociateDefaultVocabularyCommandInput, AssociateDefaultVocabularyCommandOutput } from "../commands/AssociateDefaultVocabularyCommand";
|
|
8
9
|
import { AssociateFlowCommandInput, AssociateFlowCommandOutput } from "../commands/AssociateFlowCommand";
|
|
9
10
|
import { AssociateInstanceStorageConfigCommandInput, AssociateInstanceStorageConfigCommandOutput } from "../commands/AssociateInstanceStorageConfigCommand";
|
|
@@ -166,6 +167,7 @@ import { ListQueueQuickConnectsCommandInput, ListQueueQuickConnectsCommandOutput
|
|
|
166
167
|
import { ListQueuesCommandInput, ListQueuesCommandOutput } from "../commands/ListQueuesCommand";
|
|
167
168
|
import { ListQuickConnectsCommandInput, ListQuickConnectsCommandOutput } from "../commands/ListQuickConnectsCommand";
|
|
168
169
|
import { ListRealtimeContactAnalysisSegmentsV2CommandInput, ListRealtimeContactAnalysisSegmentsV2CommandOutput } from "../commands/ListRealtimeContactAnalysisSegmentsV2Command";
|
|
170
|
+
import { ListRoutingProfileManualAssignmentQueuesCommandInput, ListRoutingProfileManualAssignmentQueuesCommandOutput } from "../commands/ListRoutingProfileManualAssignmentQueuesCommand";
|
|
169
171
|
import { ListRoutingProfileQueuesCommandInput, ListRoutingProfileQueuesCommandOutput } from "../commands/ListRoutingProfileQueuesCommand";
|
|
170
172
|
import { ListRoutingProfilesCommandInput, ListRoutingProfilesCommandOutput } from "../commands/ListRoutingProfilesCommand";
|
|
171
173
|
import { ListRulesCommandInput, ListRulesCommandOutput } from "../commands/ListRulesCommand";
|
|
@@ -299,6 +301,10 @@ export declare const se_AssociateApprovedOriginCommand: (input: AssociateApprove
|
|
|
299
301
|
* serializeAws_restJson1AssociateBotCommand
|
|
300
302
|
*/
|
|
301
303
|
export declare const se_AssociateBotCommand: (input: AssociateBotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
304
|
+
/**
|
|
305
|
+
* serializeAws_restJson1AssociateContactWithUserCommand
|
|
306
|
+
*/
|
|
307
|
+
export declare const se_AssociateContactWithUserCommand: (input: AssociateContactWithUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
302
308
|
/**
|
|
303
309
|
* serializeAws_restJson1AssociateDefaultVocabularyCommand
|
|
304
310
|
*/
|
|
@@ -947,6 +953,10 @@ export declare const se_ListQuickConnectsCommand: (input: ListQuickConnectsComma
|
|
|
947
953
|
* serializeAws_restJson1ListRealtimeContactAnalysisSegmentsV2Command
|
|
948
954
|
*/
|
|
949
955
|
export declare const se_ListRealtimeContactAnalysisSegmentsV2Command: (input: ListRealtimeContactAnalysisSegmentsV2CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
956
|
+
/**
|
|
957
|
+
* serializeAws_restJson1ListRoutingProfileManualAssignmentQueuesCommand
|
|
958
|
+
*/
|
|
959
|
+
export declare const se_ListRoutingProfileManualAssignmentQueuesCommand: (input: ListRoutingProfileManualAssignmentQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
950
960
|
/**
|
|
951
961
|
* serializeAws_restJson1ListRoutingProfileQueuesCommand
|
|
952
962
|
*/
|
|
@@ -1431,6 +1441,10 @@ export declare const de_AssociateApprovedOriginCommand: (output: __HttpResponse,
|
|
|
1431
1441
|
* deserializeAws_restJson1AssociateBotCommand
|
|
1432
1442
|
*/
|
|
1433
1443
|
export declare const de_AssociateBotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateBotCommandOutput>;
|
|
1444
|
+
/**
|
|
1445
|
+
* deserializeAws_restJson1AssociateContactWithUserCommand
|
|
1446
|
+
*/
|
|
1447
|
+
export declare const de_AssociateContactWithUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateContactWithUserCommandOutput>;
|
|
1434
1448
|
/**
|
|
1435
1449
|
* deserializeAws_restJson1AssociateDefaultVocabularyCommand
|
|
1436
1450
|
*/
|
|
@@ -2079,6 +2093,10 @@ export declare const de_ListQuickConnectsCommand: (output: __HttpResponse, conte
|
|
|
2079
2093
|
* deserializeAws_restJson1ListRealtimeContactAnalysisSegmentsV2Command
|
|
2080
2094
|
*/
|
|
2081
2095
|
export declare const de_ListRealtimeContactAnalysisSegmentsV2Command: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRealtimeContactAnalysisSegmentsV2CommandOutput>;
|
|
2096
|
+
/**
|
|
2097
|
+
* deserializeAws_restJson1ListRoutingProfileManualAssignmentQueuesCommand
|
|
2098
|
+
*/
|
|
2099
|
+
export declare const de_ListRoutingProfileManualAssignmentQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRoutingProfileManualAssignmentQueuesCommandOutput>;
|
|
2082
2100
|
/**
|
|
2083
2101
|
* deserializeAws_restJson1ListRoutingProfileQueuesCommand
|
|
2084
2102
|
*/
|
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
AssociateBotCommandInput,
|
|
16
16
|
AssociateBotCommandOutput,
|
|
17
17
|
} from "./commands/AssociateBotCommand";
|
|
18
|
+
import {
|
|
19
|
+
AssociateContactWithUserCommandInput,
|
|
20
|
+
AssociateContactWithUserCommandOutput,
|
|
21
|
+
} from "./commands/AssociateContactWithUserCommand";
|
|
18
22
|
import {
|
|
19
23
|
AssociateDefaultVocabularyCommandInput,
|
|
20
24
|
AssociateDefaultVocabularyCommandOutput,
|
|
@@ -663,6 +667,10 @@ import {
|
|
|
663
667
|
ListRealtimeContactAnalysisSegmentsV2CommandInput,
|
|
664
668
|
ListRealtimeContactAnalysisSegmentsV2CommandOutput,
|
|
665
669
|
} from "./commands/ListRealtimeContactAnalysisSegmentsV2Command";
|
|
670
|
+
import {
|
|
671
|
+
ListRoutingProfileManualAssignmentQueuesCommandInput,
|
|
672
|
+
ListRoutingProfileManualAssignmentQueuesCommandOutput,
|
|
673
|
+
} from "./commands/ListRoutingProfileManualAssignmentQueuesCommand";
|
|
666
674
|
import {
|
|
667
675
|
ListRoutingProfileQueuesCommandInput,
|
|
668
676
|
ListRoutingProfileQueuesCommandOutput,
|
|
@@ -1185,6 +1193,19 @@ export interface Connect {
|
|
|
1185
1193
|
options: __HttpHandlerOptions,
|
|
1186
1194
|
cb: (err: any, data?: AssociateBotCommandOutput) => void
|
|
1187
1195
|
): void;
|
|
1196
|
+
associateContactWithUser(
|
|
1197
|
+
args: AssociateContactWithUserCommandInput,
|
|
1198
|
+
options?: __HttpHandlerOptions
|
|
1199
|
+
): Promise<AssociateContactWithUserCommandOutput>;
|
|
1200
|
+
associateContactWithUser(
|
|
1201
|
+
args: AssociateContactWithUserCommandInput,
|
|
1202
|
+
cb: (err: any, data?: AssociateContactWithUserCommandOutput) => void
|
|
1203
|
+
): void;
|
|
1204
|
+
associateContactWithUser(
|
|
1205
|
+
args: AssociateContactWithUserCommandInput,
|
|
1206
|
+
options: __HttpHandlerOptions,
|
|
1207
|
+
cb: (err: any, data?: AssociateContactWithUserCommandOutput) => void
|
|
1208
|
+
): void;
|
|
1188
1209
|
associateDefaultVocabulary(
|
|
1189
1210
|
args: AssociateDefaultVocabularyCommandInput,
|
|
1190
1211
|
options?: __HttpHandlerOptions
|
|
@@ -3347,6 +3368,25 @@ export interface Connect {
|
|
|
3347
3368
|
data?: ListRealtimeContactAnalysisSegmentsV2CommandOutput
|
|
3348
3369
|
) => void
|
|
3349
3370
|
): void;
|
|
3371
|
+
listRoutingProfileManualAssignmentQueues(
|
|
3372
|
+
args: ListRoutingProfileManualAssignmentQueuesCommandInput,
|
|
3373
|
+
options?: __HttpHandlerOptions
|
|
3374
|
+
): Promise<ListRoutingProfileManualAssignmentQueuesCommandOutput>;
|
|
3375
|
+
listRoutingProfileManualAssignmentQueues(
|
|
3376
|
+
args: ListRoutingProfileManualAssignmentQueuesCommandInput,
|
|
3377
|
+
cb: (
|
|
3378
|
+
err: any,
|
|
3379
|
+
data?: ListRoutingProfileManualAssignmentQueuesCommandOutput
|
|
3380
|
+
) => void
|
|
3381
|
+
): void;
|
|
3382
|
+
listRoutingProfileManualAssignmentQueues(
|
|
3383
|
+
args: ListRoutingProfileManualAssignmentQueuesCommandInput,
|
|
3384
|
+
options: __HttpHandlerOptions,
|
|
3385
|
+
cb: (
|
|
3386
|
+
err: any,
|
|
3387
|
+
data?: ListRoutingProfileManualAssignmentQueuesCommandOutput
|
|
3388
|
+
) => void
|
|
3389
|
+
): void;
|
|
3350
3390
|
listRoutingProfileQueues(
|
|
3351
3391
|
args: ListRoutingProfileQueuesCommandInput,
|
|
3352
3392
|
options?: __HttpHandlerOptions
|
|
@@ -61,6 +61,10 @@ import {
|
|
|
61
61
|
AssociateBotCommandInput,
|
|
62
62
|
AssociateBotCommandOutput,
|
|
63
63
|
} from "./commands/AssociateBotCommand";
|
|
64
|
+
import {
|
|
65
|
+
AssociateContactWithUserCommandInput,
|
|
66
|
+
AssociateContactWithUserCommandOutput,
|
|
67
|
+
} from "./commands/AssociateContactWithUserCommand";
|
|
64
68
|
import {
|
|
65
69
|
AssociateDefaultVocabularyCommandInput,
|
|
66
70
|
AssociateDefaultVocabularyCommandOutput,
|
|
@@ -709,6 +713,10 @@ import {
|
|
|
709
713
|
ListRealtimeContactAnalysisSegmentsV2CommandInput,
|
|
710
714
|
ListRealtimeContactAnalysisSegmentsV2CommandOutput,
|
|
711
715
|
} from "./commands/ListRealtimeContactAnalysisSegmentsV2Command";
|
|
716
|
+
import {
|
|
717
|
+
ListRoutingProfileManualAssignmentQueuesCommandInput,
|
|
718
|
+
ListRoutingProfileManualAssignmentQueuesCommandOutput,
|
|
719
|
+
} from "./commands/ListRoutingProfileManualAssignmentQueuesCommand";
|
|
712
720
|
import {
|
|
713
721
|
ListRoutingProfileQueuesCommandInput,
|
|
714
722
|
ListRoutingProfileQueuesCommandOutput,
|
|
@@ -1189,6 +1197,7 @@ export type ServiceInputTypes =
|
|
|
1189
1197
|
| AssociateAnalyticsDataSetCommandInput
|
|
1190
1198
|
| AssociateApprovedOriginCommandInput
|
|
1191
1199
|
| AssociateBotCommandInput
|
|
1200
|
+
| AssociateContactWithUserCommandInput
|
|
1192
1201
|
| AssociateDefaultVocabularyCommandInput
|
|
1193
1202
|
| AssociateFlowCommandInput
|
|
1194
1203
|
| AssociateInstanceStorageConfigCommandInput
|
|
@@ -1351,6 +1360,7 @@ export type ServiceInputTypes =
|
|
|
1351
1360
|
| ListQueuesCommandInput
|
|
1352
1361
|
| ListQuickConnectsCommandInput
|
|
1353
1362
|
| ListRealtimeContactAnalysisSegmentsV2CommandInput
|
|
1363
|
+
| ListRoutingProfileManualAssignmentQueuesCommandInput
|
|
1354
1364
|
| ListRoutingProfileQueuesCommandInput
|
|
1355
1365
|
| ListRoutingProfilesCommandInput
|
|
1356
1366
|
| ListRulesCommandInput
|
|
@@ -1473,6 +1483,7 @@ export type ServiceOutputTypes =
|
|
|
1473
1483
|
| AssociateAnalyticsDataSetCommandOutput
|
|
1474
1484
|
| AssociateApprovedOriginCommandOutput
|
|
1475
1485
|
| AssociateBotCommandOutput
|
|
1486
|
+
| AssociateContactWithUserCommandOutput
|
|
1476
1487
|
| AssociateDefaultVocabularyCommandOutput
|
|
1477
1488
|
| AssociateFlowCommandOutput
|
|
1478
1489
|
| AssociateInstanceStorageConfigCommandOutput
|
|
@@ -1635,6 +1646,7 @@ export type ServiceOutputTypes =
|
|
|
1635
1646
|
| ListQueuesCommandOutput
|
|
1636
1647
|
| ListQuickConnectsCommandOutput
|
|
1637
1648
|
| ListRealtimeContactAnalysisSegmentsV2CommandOutput
|
|
1649
|
+
| ListRoutingProfileManualAssignmentQueuesCommandOutput
|
|
1638
1650
|
| ListRoutingProfileQueuesCommandOutput
|
|
1639
1651
|
| ListRoutingProfilesCommandOutput
|
|
1640
1652
|
| ListRulesCommandOutput
|
|
@@ -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
|
+
AssociateContactWithUserRequest,
|
|
10
|
+
AssociateContactWithUserResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AssociateContactWithUserCommandInput
|
|
15
|
+
extends AssociateContactWithUserRequest {}
|
|
16
|
+
export interface AssociateContactWithUserCommandOutput
|
|
17
|
+
extends AssociateContactWithUserResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AssociateContactWithUserCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AssociateContactWithUserCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AssociateContactWithUserCommandInput,
|
|
24
|
+
AssociateContactWithUserCommandOutput,
|
|
25
|
+
ConnectClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: AssociateContactWithUserCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AssociateContactWithUserCommandInput,
|
|
33
|
+
AssociateContactWithUserCommandOutput,
|
|
34
|
+
ConnectClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AssociateContactWithUserCommand extends AssociateContactWithUserCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: AssociateContactWithUserRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: AssociateContactWithUserCommandInput;
|
|
48
|
+
output: AssociateContactWithUserCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|