@aws-sdk/client-connect 3.583.0 → 3.587.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/dist-cjs/index.js +220 -106
- package/dist-es/commands/DescribeContactCommand.js +1 -1
- package/dist-es/commands/ListViewVersionsCommand.js +1 -1
- package/dist-es/commands/ListViewsCommand.js +1 -1
- package/dist-es/models/models_0.js +25 -41
- package/dist-es/models/models_1.js +29 -33
- package/dist-es/models/models_2.js +42 -0
- package/dist-es/protocols/Aws_restJson1.js +103 -11
- package/dist-types/commands/ClaimPhoneNumberCommand.d.ts +6 -6
- package/dist-types/commands/DescribeContactCommand.d.ts +112 -1
- package/dist-types/commands/DescribeContactFlowCommand.d.ts +1 -1
- package/dist-types/commands/DescribeContactFlowModuleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEvaluationFormCommand.d.ts +1 -1
- package/dist-types/commands/DescribeHoursOfOperationCommand.d.ts +1 -2
- package/dist-types/commands/DescribeRoutingProfileCommand.d.ts +3 -0
- package/dist-types/commands/ListViewVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListViewsCommand.d.ts +2 -1
- package/dist-types/commands/MonitorContactCommand.d.ts +1 -1
- package/dist-types/commands/PauseContactCommand.d.ts +1 -1
- package/dist-types/commands/PutUserStatusCommand.d.ts +1 -1
- package/dist-types/commands/ReleasePhoneNumberCommand.d.ts +10 -10
- package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +3 -0
- package/dist-types/commands/StopContactCommand.d.ts +6 -0
- package/dist-types/commands/UpdateContactRoutingDataCommand.d.ts +5 -2
- package/dist-types/models/models_0.d.ts +255 -384
- package/dist-types/models/models_1.d.ts +253 -289
- package/dist-types/models/models_2.d.ts +553 -16
- package/dist-types/ts3.4/commands/DescribeContactCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeContactFlowCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeContactFlowModuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeEvaluationFormCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeHoursOfOperationCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListViewVersionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListViewsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/MonitorContactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PauseContactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutUserStatusCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ReleasePhoneNumberCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +89 -118
- package/dist-types/ts3.4/models/models_1.d.ts +80 -79
- package/dist-types/ts3.4/models/models_2.d.ts +150 -8
- package/package.json +18 -18
|
@@ -1,6 +1,253 @@
|
|
|
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,
|
|
3
|
+
import { ActionSummary, AgentAvailabilityTimer, AgentConfig, AgentContactReference, AgentStatusReference, AgentStatusSummary, AgentStatusType, AnalyticsDataAssociationResult, Application, Channel, ContactFlowStatus, ContactFlowType, ContactState, CreatedByInfo, DirectoryType, Distribution, EvaluationScore, EvaluationStatus, 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, UserProficiency, View, ViewType, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p>The flow has not been published.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class ContactFlowNotPublishedException extends __BaseException {
|
|
9
|
+
readonly name: "ContactFlowNotPublishedException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
Message?: string;
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
15
|
+
constructor(opts: __ExceptionOptionType<ContactFlowNotPublishedException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export interface DescribeContactFlowRequest {
|
|
21
|
+
/**
|
|
22
|
+
* <p>The identifier of the Amazon Connect instance.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
InstanceId: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The identifier of the flow.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
ContactFlowId: string | undefined;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
* @enum
|
|
35
|
+
*/
|
|
36
|
+
export declare const ContactFlowState: {
|
|
37
|
+
readonly ACTIVE: "ACTIVE";
|
|
38
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export type ContactFlowState = (typeof ContactFlowState)[keyof typeof ContactFlowState];
|
|
44
|
+
/**
|
|
45
|
+
* <p>Contains information about a flow.</p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
export interface ContactFlow {
|
|
49
|
+
/**
|
|
50
|
+
* <p>The Amazon Resource Name (ARN) of the flow.</p>
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
Arn?: string;
|
|
54
|
+
/**
|
|
55
|
+
* <p>The identifier of the flow.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
Id?: string;
|
|
59
|
+
/**
|
|
60
|
+
* <p>The name of the flow.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
Name?: string;
|
|
64
|
+
/**
|
|
65
|
+
* <p>The type of the flow. For descriptions of the available types, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/create-contact-flow.html#contact-flow-types">Choose a flow type</a> in the <i>Amazon Connect Administrator
|
|
66
|
+
* Guide</i>.</p>
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
Type?: ContactFlowType;
|
|
70
|
+
/**
|
|
71
|
+
* <p>The type of flow.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
State?: ContactFlowState;
|
|
75
|
+
/**
|
|
76
|
+
* <p>The status of the contact flow.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
Status?: ContactFlowStatus;
|
|
80
|
+
/**
|
|
81
|
+
* <p>The description of the flow.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
Description?: string;
|
|
85
|
+
/**
|
|
86
|
+
* <p>The JSON string that represents the content of the flow. For an example, see <a href="https://docs.aws.amazon.com/connect/latest/APIReference/flow-language-example.html">Example
|
|
87
|
+
* flow in Amazon Connect Flow language</a>. </p>
|
|
88
|
+
* <p>Length Constraints: Minimum length of 1. Maximum length of 256000.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
Content?: string;
|
|
92
|
+
/**
|
|
93
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
Tags?: Record<string, string>;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
export interface DescribeContactFlowResponse {
|
|
102
|
+
/**
|
|
103
|
+
* <p>Information about the flow.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
ContactFlow?: ContactFlow;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export interface DescribeContactFlowModuleRequest {
|
|
112
|
+
/**
|
|
113
|
+
* <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>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
InstanceId: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p>The identifier of the flow module.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
ContactFlowModuleId: string | undefined;
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* @public
|
|
125
|
+
* @enum
|
|
126
|
+
*/
|
|
127
|
+
export declare const ContactFlowModuleState: {
|
|
128
|
+
readonly ACTIVE: "ACTIVE";
|
|
129
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
export type ContactFlowModuleState = (typeof ContactFlowModuleState)[keyof typeof ContactFlowModuleState];
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
* @enum
|
|
138
|
+
*/
|
|
139
|
+
export declare const ContactFlowModuleStatus: {
|
|
140
|
+
readonly PUBLISHED: "PUBLISHED";
|
|
141
|
+
readonly SAVED: "SAVED";
|
|
142
|
+
};
|
|
143
|
+
/**
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
export type ContactFlowModuleStatus = (typeof ContactFlowModuleStatus)[keyof typeof ContactFlowModuleStatus];
|
|
147
|
+
/**
|
|
148
|
+
* <p>Contains information about a flow module.</p>
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
export interface ContactFlowModule {
|
|
152
|
+
/**
|
|
153
|
+
* <p>The Amazon Resource Name (ARN).</p>
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
Arn?: string;
|
|
157
|
+
/**
|
|
158
|
+
* <p>The identifier of the flow module.</p>
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
Id?: string;
|
|
162
|
+
/**
|
|
163
|
+
* <p>The name of the flow module.</p>
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
Name?: string;
|
|
167
|
+
/**
|
|
168
|
+
* <p>The JSON string that represents the content of the flow. For an example, see <a href="https://docs.aws.amazon.com/connect/latest/APIReference/flow-language-example.html">Example
|
|
169
|
+
* flow in Amazon Connect Flow language</a>. </p>
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
Content?: string;
|
|
173
|
+
/**
|
|
174
|
+
* <p>The description of the flow module.</p>
|
|
175
|
+
* @public
|
|
176
|
+
*/
|
|
177
|
+
Description?: string;
|
|
178
|
+
/**
|
|
179
|
+
* <p>The type of flow module.</p>
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
182
|
+
State?: ContactFlowModuleState;
|
|
183
|
+
/**
|
|
184
|
+
* <p>The status of the flow module.</p>
|
|
185
|
+
* @public
|
|
186
|
+
*/
|
|
187
|
+
Status?: ContactFlowModuleStatus;
|
|
188
|
+
/**
|
|
189
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
190
|
+
* @public
|
|
191
|
+
*/
|
|
192
|
+
Tags?: Record<string, string>;
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
*/
|
|
197
|
+
export interface DescribeContactFlowModuleResponse {
|
|
198
|
+
/**
|
|
199
|
+
* <p>Information about the flow module.</p>
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
202
|
+
ContactFlowModule?: ContactFlowModule;
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* @public
|
|
206
|
+
*/
|
|
207
|
+
export interface DescribeEvaluationFormRequest {
|
|
208
|
+
/**
|
|
209
|
+
* <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>
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
InstanceId: string | undefined;
|
|
213
|
+
/**
|
|
214
|
+
* <p>A unique identifier for the contact evaluation.</p>
|
|
215
|
+
* @public
|
|
216
|
+
*/
|
|
217
|
+
EvaluationFormId: string | undefined;
|
|
218
|
+
/**
|
|
219
|
+
* <p>A version of the evaluation form.</p>
|
|
220
|
+
* @public
|
|
221
|
+
*/
|
|
222
|
+
EvaluationFormVersion?: number;
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* @public
|
|
226
|
+
* @enum
|
|
227
|
+
*/
|
|
228
|
+
export declare const EvaluationFormVersionStatus: {
|
|
229
|
+
readonly ACTIVE: "ACTIVE";
|
|
230
|
+
readonly DRAFT: "DRAFT";
|
|
231
|
+
};
|
|
232
|
+
/**
|
|
233
|
+
* @public
|
|
234
|
+
*/
|
|
235
|
+
export type EvaluationFormVersionStatus = (typeof EvaluationFormVersionStatus)[keyof typeof EvaluationFormVersionStatus];
|
|
236
|
+
/**
|
|
237
|
+
* @public
|
|
238
|
+
*/
|
|
239
|
+
export interface DescribeHoursOfOperationRequest {
|
|
240
|
+
/**
|
|
241
|
+
* <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>
|
|
242
|
+
* @public
|
|
243
|
+
*/
|
|
244
|
+
InstanceId: string | undefined;
|
|
245
|
+
/**
|
|
246
|
+
* <p>The identifier for the hours of operation.</p>
|
|
247
|
+
* @public
|
|
248
|
+
*/
|
|
249
|
+
HoursOfOperationId: string | undefined;
|
|
250
|
+
}
|
|
4
251
|
/**
|
|
5
252
|
* <p>Information about of the hours of operation.</p>
|
|
6
253
|
* @public
|
|
@@ -1074,6 +1321,11 @@ export interface RoutingProfile {
|
|
|
1074
1321
|
* @public
|
|
1075
1322
|
*/
|
|
1076
1323
|
IsDefault?: boolean;
|
|
1324
|
+
/**
|
|
1325
|
+
* <p>The IDs of the associated queue.</p>
|
|
1326
|
+
* @public
|
|
1327
|
+
*/
|
|
1328
|
+
AssociatedQueueIds?: string[];
|
|
1077
1329
|
}
|
|
1078
1330
|
/**
|
|
1079
1331
|
* @public
|
|
@@ -8366,278 +8618,6 @@ export interface ListViewsRequest {
|
|
|
8366
8618
|
*/
|
|
8367
8619
|
MaxResults?: number;
|
|
8368
8620
|
}
|
|
8369
|
-
/**
|
|
8370
|
-
* <p>A summary of a view's metadata.</p>
|
|
8371
|
-
* @public
|
|
8372
|
-
*/
|
|
8373
|
-
export interface ViewSummary {
|
|
8374
|
-
/**
|
|
8375
|
-
* <p>The identifier of the view.</p>
|
|
8376
|
-
* @public
|
|
8377
|
-
*/
|
|
8378
|
-
Id?: string;
|
|
8379
|
-
/**
|
|
8380
|
-
* <p>The Amazon Resource Name (ARN) of the view.</p>
|
|
8381
|
-
* @public
|
|
8382
|
-
*/
|
|
8383
|
-
Arn?: string;
|
|
8384
|
-
/**
|
|
8385
|
-
* <p>The name of the view.</p>
|
|
8386
|
-
* @public
|
|
8387
|
-
*/
|
|
8388
|
-
Name?: string;
|
|
8389
|
-
/**
|
|
8390
|
-
* <p>The type of the view.</p>
|
|
8391
|
-
* @public
|
|
8392
|
-
*/
|
|
8393
|
-
Type?: ViewType;
|
|
8394
|
-
/**
|
|
8395
|
-
* <p>Indicates the view status as either <code>SAVED</code> or <code>PUBLISHED</code>. The
|
|
8396
|
-
* <code>PUBLISHED</code> status will initiate validation on the content.</p>
|
|
8397
|
-
* @public
|
|
8398
|
-
*/
|
|
8399
|
-
Status?: ViewStatus;
|
|
8400
|
-
/**
|
|
8401
|
-
* <p>The description of the view.</p>
|
|
8402
|
-
* @public
|
|
8403
|
-
*/
|
|
8404
|
-
Description?: string;
|
|
8405
|
-
}
|
|
8406
|
-
/**
|
|
8407
|
-
* @public
|
|
8408
|
-
*/
|
|
8409
|
-
export interface ListViewsResponse {
|
|
8410
|
-
/**
|
|
8411
|
-
* <p>A list of view summaries.</p>
|
|
8412
|
-
* @public
|
|
8413
|
-
*/
|
|
8414
|
-
ViewsSummaryList?: ViewSummary[];
|
|
8415
|
-
/**
|
|
8416
|
-
* <p>The token for the next set of results. Use the value returned in the previous response in
|
|
8417
|
-
* the next request to retrieve the next set of results.</p>
|
|
8418
|
-
* @public
|
|
8419
|
-
*/
|
|
8420
|
-
NextToken?: string;
|
|
8421
|
-
}
|
|
8422
|
-
/**
|
|
8423
|
-
* @public
|
|
8424
|
-
*/
|
|
8425
|
-
export interface ListViewVersionsRequest {
|
|
8426
|
-
/**
|
|
8427
|
-
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of
|
|
8428
|
-
* the instance.</p>
|
|
8429
|
-
* @public
|
|
8430
|
-
*/
|
|
8431
|
-
InstanceId: string | undefined;
|
|
8432
|
-
/**
|
|
8433
|
-
* <p>The identifier of the view. Both <code>ViewArn</code> and <code>ViewId</code> can be
|
|
8434
|
-
* used.</p>
|
|
8435
|
-
* @public
|
|
8436
|
-
*/
|
|
8437
|
-
ViewId: string | undefined;
|
|
8438
|
-
/**
|
|
8439
|
-
* <p>The token for the next set of results. Use the value returned in the previous response in
|
|
8440
|
-
* the next request to retrieve the next set of results.</p>
|
|
8441
|
-
* @public
|
|
8442
|
-
*/
|
|
8443
|
-
NextToken?: string;
|
|
8444
|
-
/**
|
|
8445
|
-
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
8446
|
-
* @public
|
|
8447
|
-
*/
|
|
8448
|
-
MaxResults?: number;
|
|
8449
|
-
}
|
|
8450
|
-
/**
|
|
8451
|
-
* <p>A summary of a view version's metadata.</p>
|
|
8452
|
-
* @public
|
|
8453
|
-
*/
|
|
8454
|
-
export interface ViewVersionSummary {
|
|
8455
|
-
/**
|
|
8456
|
-
* <p>The identifier of the view version.</p>
|
|
8457
|
-
* @public
|
|
8458
|
-
*/
|
|
8459
|
-
Id?: string;
|
|
8460
|
-
/**
|
|
8461
|
-
* <p>The Amazon Resource Name (ARN) of the view version.</p>
|
|
8462
|
-
* @public
|
|
8463
|
-
*/
|
|
8464
|
-
Arn?: string;
|
|
8465
|
-
/**
|
|
8466
|
-
* <p>The description of the view version.</p>
|
|
8467
|
-
* @public
|
|
8468
|
-
*/
|
|
8469
|
-
Description?: string;
|
|
8470
|
-
/**
|
|
8471
|
-
* <p>The name of the view version.</p>
|
|
8472
|
-
* @public
|
|
8473
|
-
*/
|
|
8474
|
-
Name?: string;
|
|
8475
|
-
/**
|
|
8476
|
-
* <p>The type of the view version.</p>
|
|
8477
|
-
* @public
|
|
8478
|
-
*/
|
|
8479
|
-
Type?: ViewType;
|
|
8480
|
-
/**
|
|
8481
|
-
* <p>The sequentially incremented version of the view version.</p>
|
|
8482
|
-
* @public
|
|
8483
|
-
*/
|
|
8484
|
-
Version?: number;
|
|
8485
|
-
/**
|
|
8486
|
-
* <p>The description of the view version.</p>
|
|
8487
|
-
* @public
|
|
8488
|
-
*/
|
|
8489
|
-
VersionDescription?: string;
|
|
8490
|
-
}
|
|
8491
|
-
/**
|
|
8492
|
-
* @public
|
|
8493
|
-
*/
|
|
8494
|
-
export interface ListViewVersionsResponse {
|
|
8495
|
-
/**
|
|
8496
|
-
* <p>A list of view version summaries.</p>
|
|
8497
|
-
* @public
|
|
8498
|
-
*/
|
|
8499
|
-
ViewVersionSummaryList?: ViewVersionSummary[];
|
|
8500
|
-
/**
|
|
8501
|
-
* <p>The token for the next set of results. Use the value returned in the previous response in
|
|
8502
|
-
* the next request to retrieve the next set of results.</p>
|
|
8503
|
-
* @public
|
|
8504
|
-
*/
|
|
8505
|
-
NextToken?: string;
|
|
8506
|
-
}
|
|
8507
|
-
/**
|
|
8508
|
-
* @public
|
|
8509
|
-
*/
|
|
8510
|
-
export interface MonitorContactRequest {
|
|
8511
|
-
/**
|
|
8512
|
-
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of
|
|
8513
|
-
* the instance.</p>
|
|
8514
|
-
* @public
|
|
8515
|
-
*/
|
|
8516
|
-
InstanceId: string | undefined;
|
|
8517
|
-
/**
|
|
8518
|
-
* <p>The identifier of the contact.</p>
|
|
8519
|
-
* @public
|
|
8520
|
-
*/
|
|
8521
|
-
ContactId: string | undefined;
|
|
8522
|
-
/**
|
|
8523
|
-
* <p>The identifier of the user account.</p>
|
|
8524
|
-
* @public
|
|
8525
|
-
*/
|
|
8526
|
-
UserId: string | undefined;
|
|
8527
|
-
/**
|
|
8528
|
-
* <p>Specify which monitoring actions the user is allowed to take. For example, whether the user
|
|
8529
|
-
* is allowed to escalate from silent monitoring to barge. AllowedMonitorCapabilities is required if
|
|
8530
|
-
* barge is enabled.</p>
|
|
8531
|
-
* @public
|
|
8532
|
-
*/
|
|
8533
|
-
AllowedMonitorCapabilities?: MonitorCapability[];
|
|
8534
|
-
/**
|
|
8535
|
-
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
8536
|
-
* request. If not provided, the Amazon Web Services
|
|
8537
|
-
* SDK populates this field. For more information about idempotency, see
|
|
8538
|
-
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
8539
|
-
* @public
|
|
8540
|
-
*/
|
|
8541
|
-
ClientToken?: string;
|
|
8542
|
-
}
|
|
8543
|
-
/**
|
|
8544
|
-
* @public
|
|
8545
|
-
*/
|
|
8546
|
-
export interface MonitorContactResponse {
|
|
8547
|
-
/**
|
|
8548
|
-
* <p>The identifier of the contact.</p>
|
|
8549
|
-
* @public
|
|
8550
|
-
*/
|
|
8551
|
-
ContactId?: string;
|
|
8552
|
-
/**
|
|
8553
|
-
* <p>The ARN of the contact.</p>
|
|
8554
|
-
* @public
|
|
8555
|
-
*/
|
|
8556
|
-
ContactArn?: string;
|
|
8557
|
-
}
|
|
8558
|
-
/**
|
|
8559
|
-
* <p>Operation cannot be performed at this time as there is a conflict with another operation or
|
|
8560
|
-
* contact state.</p>
|
|
8561
|
-
* @public
|
|
8562
|
-
*/
|
|
8563
|
-
export declare class ConflictException extends __BaseException {
|
|
8564
|
-
readonly name: "ConflictException";
|
|
8565
|
-
readonly $fault: "client";
|
|
8566
|
-
Message?: string;
|
|
8567
|
-
/**
|
|
8568
|
-
* @internal
|
|
8569
|
-
*/
|
|
8570
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
8571
|
-
}
|
|
8572
|
-
/**
|
|
8573
|
-
* @public
|
|
8574
|
-
*/
|
|
8575
|
-
export interface PauseContactRequest {
|
|
8576
|
-
/**
|
|
8577
|
-
* <p>The identifier of the contact.</p>
|
|
8578
|
-
* @public
|
|
8579
|
-
*/
|
|
8580
|
-
ContactId: string | undefined;
|
|
8581
|
-
/**
|
|
8582
|
-
* <p>The identifier of the Amazon Connect instance. You can find the <code>instanceId</code> in the ARN of
|
|
8583
|
-
* the instance.</p>
|
|
8584
|
-
* @public
|
|
8585
|
-
*/
|
|
8586
|
-
InstanceId: string | undefined;
|
|
8587
|
-
/**
|
|
8588
|
-
* <p>The identifier of the flow.</p>
|
|
8589
|
-
* @public
|
|
8590
|
-
*/
|
|
8591
|
-
ContactFlowId?: string;
|
|
8592
|
-
}
|
|
8593
|
-
/**
|
|
8594
|
-
* @public
|
|
8595
|
-
*/
|
|
8596
|
-
export interface PauseContactResponse {
|
|
8597
|
-
}
|
|
8598
|
-
/**
|
|
8599
|
-
* @public
|
|
8600
|
-
*/
|
|
8601
|
-
export interface PutUserStatusRequest {
|
|
8602
|
-
/**
|
|
8603
|
-
* <p>The identifier of the user.</p>
|
|
8604
|
-
* @public
|
|
8605
|
-
*/
|
|
8606
|
-
UserId: string | undefined;
|
|
8607
|
-
/**
|
|
8608
|
-
* <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>
|
|
8609
|
-
* @public
|
|
8610
|
-
*/
|
|
8611
|
-
InstanceId: string | undefined;
|
|
8612
|
-
/**
|
|
8613
|
-
* <p>The identifier of the agent status.</p>
|
|
8614
|
-
* @public
|
|
8615
|
-
*/
|
|
8616
|
-
AgentStatusId: string | undefined;
|
|
8617
|
-
}
|
|
8618
|
-
/**
|
|
8619
|
-
* @public
|
|
8620
|
-
*/
|
|
8621
|
-
export interface PutUserStatusResponse {
|
|
8622
|
-
}
|
|
8623
|
-
/**
|
|
8624
|
-
* @public
|
|
8625
|
-
*/
|
|
8626
|
-
export interface ReleasePhoneNumberRequest {
|
|
8627
|
-
/**
|
|
8628
|
-
* <p>A unique identifier for the phone number.</p>
|
|
8629
|
-
* @public
|
|
8630
|
-
*/
|
|
8631
|
-
PhoneNumberId: string | undefined;
|
|
8632
|
-
/**
|
|
8633
|
-
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
8634
|
-
* request. If not provided, the Amazon Web Services
|
|
8635
|
-
* SDK populates this field. For more information about idempotency, see
|
|
8636
|
-
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
8637
|
-
* @public
|
|
8638
|
-
*/
|
|
8639
|
-
ClientToken?: string;
|
|
8640
|
-
}
|
|
8641
8621
|
/**
|
|
8642
8622
|
* @internal
|
|
8643
8623
|
*/
|
|
@@ -8674,19 +8654,3 @@ export declare const InstanceSummaryFilterSensitiveLog: (obj: InstanceSummary) =
|
|
|
8674
8654
|
* @internal
|
|
8675
8655
|
*/
|
|
8676
8656
|
export declare const ListInstancesResponseFilterSensitiveLog: (obj: ListInstancesResponse) => any;
|
|
8677
|
-
/**
|
|
8678
|
-
* @internal
|
|
8679
|
-
*/
|
|
8680
|
-
export declare const ViewSummaryFilterSensitiveLog: (obj: ViewSummary) => any;
|
|
8681
|
-
/**
|
|
8682
|
-
* @internal
|
|
8683
|
-
*/
|
|
8684
|
-
export declare const ListViewsResponseFilterSensitiveLog: (obj: ListViewsResponse) => any;
|
|
8685
|
-
/**
|
|
8686
|
-
* @internal
|
|
8687
|
-
*/
|
|
8688
|
-
export declare const ViewVersionSummaryFilterSensitiveLog: (obj: ViewVersionSummary) => any;
|
|
8689
|
-
/**
|
|
8690
|
-
* @internal
|
|
8691
|
-
*/
|
|
8692
|
-
export declare const ListViewVersionsResponseFilterSensitiveLog: (obj: ListViewVersionsResponse) => any;
|