@aws-sdk/client-connect 3.575.0 → 3.577.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist-cjs/index.js +167 -11
- package/dist-es/Connect.js +4 -0
- package/dist-es/commands/ReplicateInstanceCommand.js +1 -1
- package/dist-es/commands/SearchContactFlowModulesCommand.js +24 -0
- package/dist-es/commands/SearchContactFlowsCommand.js +24 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/models/models_1.js +0 -4
- package/dist-es/models/models_2.js +9 -5
- package/dist-es/pagination/SearchContactFlowModulesPaginator.js +4 -0
- package/dist-es/pagination/SearchContactFlowsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +98 -0
- package/dist-types/Connect.d.ts +14 -0
- package/dist-types/ConnectClient.d.ts +4 -2
- package/dist-types/commands/CreateContactFlowCommand.d.ts +1 -0
- package/dist-types/commands/DescribeContactFlowCommand.d.ts +10 -0
- package/dist-types/commands/DescribeContactFlowModuleCommand.d.ts +4 -0
- package/dist-types/commands/ListContactFlowsCommand.d.ts +1 -0
- package/dist-types/commands/ReplicateInstanceCommand.d.ts +1 -2
- package/dist-types/commands/SearchContactFlowModulesCommand.d.ts +135 -0
- package/dist-types/commands/SearchContactFlowsCommand.d.ts +143 -0
- package/dist-types/commands/UpdateContactFlowContentCommand.d.ts +4 -0
- package/dist-types/commands/UpdateContactFlowModuleContentCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +27 -52
- package/dist-types/models/models_1.d.ts +131 -97
- package/dist-types/models/models_2.d.ts +352 -92
- package/dist-types/pagination/SearchContactFlowModulesPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchContactFlowsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/Connect.d.ts +34 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/ReplicateInstanceCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchContactFlowModulesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/SearchContactFlowsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -11
- package/dist-types/ts3.4/models/models_1.d.ts +14 -10
- package/dist-types/ts3.4/models/models_2.d.ts +78 -22
- package/dist-types/ts3.4/pagination/SearchContactFlowModulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchContactFlowsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +14 -14
|
@@ -1,7 +1,35 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
|
-
import { AgentAvailabilityTimer, AgentConfig, AgentHierarchyGroups, AgentStatusState, AllowedCapabilities, Application, Channel, ContactFlowModuleState, ContactFlowState, ContactInitiationMethod, CreatedByInfo, Evaluation, EvaluationAnswerData, EvaluationFormQuestion, EvaluationFormScoringStrategy, EvaluationFormVersionStatus, EvaluationNote, FileStatusType, FileUseCaseType,
|
|
4
|
-
import { InstanceAttributeType, PhoneNumberCountryCode, PhoneNumberType, PredefinedAttribute, Prompt, Queue, QueueStatus, QuickConnect, RoutingProfile, SignInConfig, SortOrder, TelephonyConfig } from "./models_1";
|
|
3
|
+
import { AgentAvailabilityTimer, AgentConfig, AgentHierarchyGroups, AgentStatusState, AllowedCapabilities, Application, Channel, ContactFlow, ContactFlowModule, ContactFlowModuleState, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, CreatedByInfo, Evaluation, EvaluationAnswerData, EvaluationFormQuestion, EvaluationFormScoringStrategy, EvaluationFormVersionStatus, EvaluationNote, FileStatusType, FileUseCaseType, HoursOfOperationConfig, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, OutboundCallerConfig, ParticipantRole, PredefinedAttributeValues, QuickConnectConfig, Reference, RehydrationType, RoutingProfileQueueConfig, RuleAction, RulePublishStatus, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserPhoneConfig, UserProficiency, View, ViewInputContent, ViewStatus, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
|
+
import { HoursOfOperation, InstanceAttributeType, PhoneNumberCountryCode, PhoneNumberType, PredefinedAttribute, Prompt, Queue, QueueStatus, QuickConnect, RoutingProfile, SignInConfig, SortOrder, TelephonyConfig } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface ReplicateInstanceRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance. You can provide the <code>InstanceId</code>, or the entire ARN.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
InstanceId: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The Amazon Web Services Region where to replicate the Amazon Connect instance.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
ReplicaRegion: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
21
|
+
* request. If not provided, the Amazon Web Services
|
|
22
|
+
* SDK populates this field. For more information about idempotency, see
|
|
23
|
+
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
ClientToken?: string;
|
|
27
|
+
/**
|
|
28
|
+
* <p>The alias for the replicated instance. The <code>ReplicaAlias</code> must be unique.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
ReplicaAlias: string | undefined;
|
|
32
|
+
}
|
|
5
33
|
/**
|
|
6
34
|
* @public
|
|
7
35
|
*/
|
|
@@ -150,6 +178,179 @@ export interface SearchAvailablePhoneNumbersResponse {
|
|
|
150
178
|
*/
|
|
151
179
|
AvailableNumbersList?: AvailableNumberSummary[];
|
|
152
180
|
}
|
|
181
|
+
/**
|
|
182
|
+
* @public
|
|
183
|
+
* @enum
|
|
184
|
+
*/
|
|
185
|
+
export declare const StringComparisonType: {
|
|
186
|
+
readonly CONTAINS: "CONTAINS";
|
|
187
|
+
readonly EXACT: "EXACT";
|
|
188
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
189
|
+
};
|
|
190
|
+
/**
|
|
191
|
+
* @public
|
|
192
|
+
*/
|
|
193
|
+
export type StringComparisonType = (typeof StringComparisonType)[keyof typeof StringComparisonType];
|
|
194
|
+
/**
|
|
195
|
+
* <p>A leaf node condition which can be used to specify a string condition.</p>
|
|
196
|
+
* <note>
|
|
197
|
+
* <p>The currently supported values for <code>FieldName</code> are <code>name</code> and
|
|
198
|
+
* <code>description</code>.</p>
|
|
199
|
+
* </note>
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
202
|
+
export interface StringCondition {
|
|
203
|
+
/**
|
|
204
|
+
* <p>The name of the field in the string condition.</p>
|
|
205
|
+
* @public
|
|
206
|
+
*/
|
|
207
|
+
FieldName?: string;
|
|
208
|
+
/**
|
|
209
|
+
* <p>The value of the string.</p>
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
Value?: string;
|
|
213
|
+
/**
|
|
214
|
+
* <p>The type of comparison to be made when evaluating the string condition.</p>
|
|
215
|
+
* @public
|
|
216
|
+
*/
|
|
217
|
+
ComparisonType?: StringComparisonType;
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* <p>A leaf node condition which can be used to specify a tag condition, for example, <code>HAVE
|
|
221
|
+
* BPO = 123</code>. </p>
|
|
222
|
+
* @public
|
|
223
|
+
*/
|
|
224
|
+
export interface TagCondition {
|
|
225
|
+
/**
|
|
226
|
+
* <p>The tag key in the tag condition.</p>
|
|
227
|
+
* @public
|
|
228
|
+
*/
|
|
229
|
+
TagKey?: string;
|
|
230
|
+
/**
|
|
231
|
+
* <p>The tag value in the tag condition.</p>
|
|
232
|
+
* @public
|
|
233
|
+
*/
|
|
234
|
+
TagValue?: string;
|
|
235
|
+
}
|
|
236
|
+
/**
|
|
237
|
+
* <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>.
|
|
238
|
+
* This accepts an <code>OR</code> of <code>AND</code> (List of List) input where: </p>
|
|
239
|
+
* <ul>
|
|
240
|
+
* <li>
|
|
241
|
+
* <p>Top level list specifies conditions that need to be applied with <code>OR</code>
|
|
242
|
+
* operator</p>
|
|
243
|
+
* </li>
|
|
244
|
+
* <li>
|
|
245
|
+
* <p>Inner list specifies conditions that need to be applied with <code>AND</code>
|
|
246
|
+
* operator.</p>
|
|
247
|
+
* </li>
|
|
248
|
+
* </ul>
|
|
249
|
+
* @public
|
|
250
|
+
*/
|
|
251
|
+
export interface ControlPlaneTagFilter {
|
|
252
|
+
/**
|
|
253
|
+
* <p>A list of conditions which would be applied together with an <code>OR</code> condition.
|
|
254
|
+
* </p>
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
OrConditions?: TagCondition[][];
|
|
258
|
+
/**
|
|
259
|
+
* <p>A list of conditions which would be applied together with an <code>AND</code>
|
|
260
|
+
* condition.</p>
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
263
|
+
AndConditions?: TagCondition[];
|
|
264
|
+
/**
|
|
265
|
+
* <p>A leaf node condition which can be used to specify a tag condition. </p>
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
268
|
+
TagCondition?: TagCondition;
|
|
269
|
+
}
|
|
270
|
+
/**
|
|
271
|
+
* <p>The search criteria to be used to return flow modules.</p>
|
|
272
|
+
* @public
|
|
273
|
+
*/
|
|
274
|
+
export interface ContactFlowModuleSearchFilter {
|
|
275
|
+
/**
|
|
276
|
+
* <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>.
|
|
277
|
+
* This accepts an <code>OR</code> of <code>AND</code> (List of List) input where: </p>
|
|
278
|
+
* <ul>
|
|
279
|
+
* <li>
|
|
280
|
+
* <p>Top level list specifies conditions that need to be applied with <code>OR</code>
|
|
281
|
+
* operator</p>
|
|
282
|
+
* </li>
|
|
283
|
+
* <li>
|
|
284
|
+
* <p>Inner list specifies conditions that need to be applied with <code>AND</code>
|
|
285
|
+
* operator.</p>
|
|
286
|
+
* </li>
|
|
287
|
+
* </ul>
|
|
288
|
+
* @public
|
|
289
|
+
*/
|
|
290
|
+
TagFilter?: ControlPlaneTagFilter;
|
|
291
|
+
}
|
|
292
|
+
/**
|
|
293
|
+
* @public
|
|
294
|
+
*/
|
|
295
|
+
export interface SearchContactFlowModulesResponse {
|
|
296
|
+
/**
|
|
297
|
+
* <p>The search criteria to be used to return contact flow modules.</p>
|
|
298
|
+
* @public
|
|
299
|
+
*/
|
|
300
|
+
ContactFlowModules?: ContactFlowModule[];
|
|
301
|
+
/**
|
|
302
|
+
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
303
|
+
* @public
|
|
304
|
+
*/
|
|
305
|
+
NextToken?: string;
|
|
306
|
+
/**
|
|
307
|
+
* <p>The total number of contact flows which matched your search query.</p>
|
|
308
|
+
* @public
|
|
309
|
+
*/
|
|
310
|
+
ApproximateTotalCount?: number;
|
|
311
|
+
}
|
|
312
|
+
/**
|
|
313
|
+
* <p>Filters to be applied to search results.</p>
|
|
314
|
+
* @public
|
|
315
|
+
*/
|
|
316
|
+
export interface ContactFlowSearchFilter {
|
|
317
|
+
/**
|
|
318
|
+
* <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>.
|
|
319
|
+
* This accepts an <code>OR</code> of <code>AND</code> (List of List) input where: </p>
|
|
320
|
+
* <ul>
|
|
321
|
+
* <li>
|
|
322
|
+
* <p>Top level list specifies conditions that need to be applied with <code>OR</code>
|
|
323
|
+
* operator</p>
|
|
324
|
+
* </li>
|
|
325
|
+
* <li>
|
|
326
|
+
* <p>Inner list specifies conditions that need to be applied with <code>AND</code>
|
|
327
|
+
* operator.</p>
|
|
328
|
+
* </li>
|
|
329
|
+
* </ul>
|
|
330
|
+
* @public
|
|
331
|
+
*/
|
|
332
|
+
TagFilter?: ControlPlaneTagFilter;
|
|
333
|
+
}
|
|
334
|
+
/**
|
|
335
|
+
* @public
|
|
336
|
+
*/
|
|
337
|
+
export interface SearchContactFlowsResponse {
|
|
338
|
+
/**
|
|
339
|
+
* <p>Information about the contact flows.</p>
|
|
340
|
+
* @public
|
|
341
|
+
*/
|
|
342
|
+
ContactFlows?: ContactFlow[];
|
|
343
|
+
/**
|
|
344
|
+
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
345
|
+
* @public
|
|
346
|
+
*/
|
|
347
|
+
NextToken?: string;
|
|
348
|
+
/**
|
|
349
|
+
* <p>The total number of contact flows which matched your search query.</p>
|
|
350
|
+
* @public
|
|
351
|
+
*/
|
|
352
|
+
ApproximateTotalCount?: number;
|
|
353
|
+
}
|
|
153
354
|
/**
|
|
154
355
|
* @public
|
|
155
356
|
* @enum
|
|
@@ -522,95 +723,6 @@ export interface SearchContactsResponse {
|
|
|
522
723
|
*/
|
|
523
724
|
TotalCount?: number;
|
|
524
725
|
}
|
|
525
|
-
/**
|
|
526
|
-
* @public
|
|
527
|
-
* @enum
|
|
528
|
-
*/
|
|
529
|
-
export declare const StringComparisonType: {
|
|
530
|
-
readonly CONTAINS: "CONTAINS";
|
|
531
|
-
readonly EXACT: "EXACT";
|
|
532
|
-
readonly STARTS_WITH: "STARTS_WITH";
|
|
533
|
-
};
|
|
534
|
-
/**
|
|
535
|
-
* @public
|
|
536
|
-
*/
|
|
537
|
-
export type StringComparisonType = (typeof StringComparisonType)[keyof typeof StringComparisonType];
|
|
538
|
-
/**
|
|
539
|
-
* <p>A leaf node condition which can be used to specify a string condition.</p>
|
|
540
|
-
* <note>
|
|
541
|
-
* <p>The currently supported values for <code>FieldName</code> are <code>name</code> and
|
|
542
|
-
* <code>description</code>.</p>
|
|
543
|
-
* </note>
|
|
544
|
-
* @public
|
|
545
|
-
*/
|
|
546
|
-
export interface StringCondition {
|
|
547
|
-
/**
|
|
548
|
-
* <p>The name of the field in the string condition.</p>
|
|
549
|
-
* @public
|
|
550
|
-
*/
|
|
551
|
-
FieldName?: string;
|
|
552
|
-
/**
|
|
553
|
-
* <p>The value of the string.</p>
|
|
554
|
-
* @public
|
|
555
|
-
*/
|
|
556
|
-
Value?: string;
|
|
557
|
-
/**
|
|
558
|
-
* <p>The type of comparison to be made when evaluating the string condition.</p>
|
|
559
|
-
* @public
|
|
560
|
-
*/
|
|
561
|
-
ComparisonType?: StringComparisonType;
|
|
562
|
-
}
|
|
563
|
-
/**
|
|
564
|
-
* <p>A leaf node condition which can be used to specify a tag condition, for example, <code>HAVE
|
|
565
|
-
* BPO = 123</code>. </p>
|
|
566
|
-
* @public
|
|
567
|
-
*/
|
|
568
|
-
export interface TagCondition {
|
|
569
|
-
/**
|
|
570
|
-
* <p>The tag key in the tag condition.</p>
|
|
571
|
-
* @public
|
|
572
|
-
*/
|
|
573
|
-
TagKey?: string;
|
|
574
|
-
/**
|
|
575
|
-
* <p>The tag value in the tag condition.</p>
|
|
576
|
-
* @public
|
|
577
|
-
*/
|
|
578
|
-
TagValue?: string;
|
|
579
|
-
}
|
|
580
|
-
/**
|
|
581
|
-
* <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>.
|
|
582
|
-
* This accepts an <code>OR</code> of <code>AND</code> (List of List) input where: </p>
|
|
583
|
-
* <ul>
|
|
584
|
-
* <li>
|
|
585
|
-
* <p>Top level list specifies conditions that need to be applied with <code>OR</code>
|
|
586
|
-
* operator</p>
|
|
587
|
-
* </li>
|
|
588
|
-
* <li>
|
|
589
|
-
* <p>Inner list specifies conditions that need to be applied with <code>AND</code>
|
|
590
|
-
* operator.</p>
|
|
591
|
-
* </li>
|
|
592
|
-
* </ul>
|
|
593
|
-
* @public
|
|
594
|
-
*/
|
|
595
|
-
export interface ControlPlaneTagFilter {
|
|
596
|
-
/**
|
|
597
|
-
* <p>A list of conditions which would be applied together with an <code>OR</code> condition.
|
|
598
|
-
* </p>
|
|
599
|
-
* @public
|
|
600
|
-
*/
|
|
601
|
-
OrConditions?: TagCondition[][];
|
|
602
|
-
/**
|
|
603
|
-
* <p>A list of conditions which would be applied together with an <code>AND</code>
|
|
604
|
-
* condition.</p>
|
|
605
|
-
* @public
|
|
606
|
-
*/
|
|
607
|
-
AndConditions?: TagCondition[];
|
|
608
|
-
/**
|
|
609
|
-
* <p>A leaf node condition which can be used to specify a tag condition. </p>
|
|
610
|
-
* @public
|
|
611
|
-
*/
|
|
612
|
-
TagCondition?: TagCondition;
|
|
613
|
-
}
|
|
614
726
|
/**
|
|
615
727
|
* <p>Filters to be applied to search results.</p>
|
|
616
728
|
* @public
|
|
@@ -1580,7 +1692,8 @@ export interface StartAttachedFileUploadRequest {
|
|
|
1580
1692
|
*/
|
|
1581
1693
|
FileSizeInBytes: number | undefined;
|
|
1582
1694
|
/**
|
|
1583
|
-
* <p>Optional override for the expiry of the pre-signed S3 URL in seconds
|
|
1695
|
+
* <p>Optional override for the expiry of the pre-signed S3 URL in seconds. The default value is
|
|
1696
|
+
* 300.</p>
|
|
1584
1697
|
* @public
|
|
1585
1698
|
*/
|
|
1586
1699
|
UrlExpiryInSeconds?: number;
|
|
@@ -4476,6 +4589,75 @@ export interface EvaluationFormSection {
|
|
|
4476
4589
|
*/
|
|
4477
4590
|
Weight?: number;
|
|
4478
4591
|
}
|
|
4592
|
+
/**
|
|
4593
|
+
* <p>The search criteria to be used to return flow modules.</p>
|
|
4594
|
+
* @public
|
|
4595
|
+
*/
|
|
4596
|
+
export interface ContactFlowModuleSearchCriteria {
|
|
4597
|
+
/**
|
|
4598
|
+
* <p>A list of conditions which would be applied together with an <code>OR</code>
|
|
4599
|
+
* condition.</p>
|
|
4600
|
+
* @public
|
|
4601
|
+
*/
|
|
4602
|
+
OrConditions?: ContactFlowModuleSearchCriteria[];
|
|
4603
|
+
/**
|
|
4604
|
+
* <p>A list of conditions which would be applied together with an <code>AND</code>
|
|
4605
|
+
* condition.</p>
|
|
4606
|
+
* @public
|
|
4607
|
+
*/
|
|
4608
|
+
AndConditions?: ContactFlowModuleSearchCriteria[];
|
|
4609
|
+
/**
|
|
4610
|
+
* <p>A leaf node condition which can be used to specify a string condition.</p>
|
|
4611
|
+
* <note>
|
|
4612
|
+
* <p>The currently supported values for <code>FieldName</code> are <code>name</code> and
|
|
4613
|
+
* <code>description</code>.</p>
|
|
4614
|
+
* </note>
|
|
4615
|
+
* @public
|
|
4616
|
+
*/
|
|
4617
|
+
StringCondition?: StringCondition;
|
|
4618
|
+
}
|
|
4619
|
+
/**
|
|
4620
|
+
* <p>The search criteria to be used to return contact flows.</p>
|
|
4621
|
+
* @public
|
|
4622
|
+
*/
|
|
4623
|
+
export interface ContactFlowSearchCriteria {
|
|
4624
|
+
/**
|
|
4625
|
+
* <p>A list of conditions which would be applied together with an <code>OR</code>
|
|
4626
|
+
* condition.</p>
|
|
4627
|
+
* @public
|
|
4628
|
+
*/
|
|
4629
|
+
OrConditions?: ContactFlowSearchCriteria[];
|
|
4630
|
+
/**
|
|
4631
|
+
* <p>A list of conditions which would be applied together with an <code>AND</code>
|
|
4632
|
+
* condition.</p>
|
|
4633
|
+
* @public
|
|
4634
|
+
*/
|
|
4635
|
+
AndConditions?: ContactFlowSearchCriteria[];
|
|
4636
|
+
/**
|
|
4637
|
+
* <p>A leaf node condition which can be used to specify a string condition.</p>
|
|
4638
|
+
* <note>
|
|
4639
|
+
* <p>The currently supported values for <code>FieldName</code> are <code>name</code> and
|
|
4640
|
+
* <code>description</code>.</p>
|
|
4641
|
+
* </note>
|
|
4642
|
+
* @public
|
|
4643
|
+
*/
|
|
4644
|
+
StringCondition?: StringCondition;
|
|
4645
|
+
/**
|
|
4646
|
+
* <p>The type of flow.</p>
|
|
4647
|
+
* @public
|
|
4648
|
+
*/
|
|
4649
|
+
TypeCondition?: ContactFlowType;
|
|
4650
|
+
/**
|
|
4651
|
+
* <p>The state of the flow.</p>
|
|
4652
|
+
* @public
|
|
4653
|
+
*/
|
|
4654
|
+
StateCondition?: ContactFlowState;
|
|
4655
|
+
/**
|
|
4656
|
+
* <p>The status of the flow.</p>
|
|
4657
|
+
* @public
|
|
4658
|
+
*/
|
|
4659
|
+
StatusCondition?: ContactFlowStatus;
|
|
4660
|
+
}
|
|
4479
4661
|
/**
|
|
4480
4662
|
* @public
|
|
4481
4663
|
*/
|
|
@@ -4942,6 +5124,80 @@ export interface DescribeEvaluationFormResponse {
|
|
|
4942
5124
|
*/
|
|
4943
5125
|
EvaluationForm: EvaluationForm | undefined;
|
|
4944
5126
|
}
|
|
5127
|
+
/**
|
|
5128
|
+
* @public
|
|
5129
|
+
*/
|
|
5130
|
+
export interface SearchContactFlowModulesRequest {
|
|
5131
|
+
/**
|
|
5132
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instance ID in the
|
|
5133
|
+
* Amazon Resource Name (ARN) of the instance.</p>
|
|
5134
|
+
* @public
|
|
5135
|
+
*/
|
|
5136
|
+
InstanceId: string | undefined;
|
|
5137
|
+
/**
|
|
5138
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in
|
|
5139
|
+
* the next request to retrieve the next set of results.</p>
|
|
5140
|
+
* @public
|
|
5141
|
+
*/
|
|
5142
|
+
NextToken?: string;
|
|
5143
|
+
/**
|
|
5144
|
+
* <p>The maximum number of results to return per page.</p>
|
|
5145
|
+
* @public
|
|
5146
|
+
*/
|
|
5147
|
+
MaxResults?: number;
|
|
5148
|
+
/**
|
|
5149
|
+
* <p>Filters to be applied to search results.</p>
|
|
5150
|
+
* @public
|
|
5151
|
+
*/
|
|
5152
|
+
SearchFilter?: ContactFlowModuleSearchFilter;
|
|
5153
|
+
/**
|
|
5154
|
+
* <p>The search criteria to be used to return contact flow modules.</p>
|
|
5155
|
+
* <note>
|
|
5156
|
+
* <p>The <code>name</code> and <code>description</code> fields support "contains" queries with a
|
|
5157
|
+
* minimum of 2 characters and a maximum of 25 characters. Any queries with character lengths
|
|
5158
|
+
* outside of this range will result in invalid results.</p>
|
|
5159
|
+
* </note>
|
|
5160
|
+
* @public
|
|
5161
|
+
*/
|
|
5162
|
+
SearchCriteria?: ContactFlowModuleSearchCriteria;
|
|
5163
|
+
}
|
|
5164
|
+
/**
|
|
5165
|
+
* @public
|
|
5166
|
+
*/
|
|
5167
|
+
export interface SearchContactFlowsRequest {
|
|
5168
|
+
/**
|
|
5169
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instance ID in the
|
|
5170
|
+
* Amazon Resource Name (ARN) of the instance.</p>
|
|
5171
|
+
* @public
|
|
5172
|
+
*/
|
|
5173
|
+
InstanceId: string | undefined;
|
|
5174
|
+
/**
|
|
5175
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in
|
|
5176
|
+
* the next request to retrieve the next set of results.</p>
|
|
5177
|
+
* @public
|
|
5178
|
+
*/
|
|
5179
|
+
NextToken?: string;
|
|
5180
|
+
/**
|
|
5181
|
+
* <p>The maximum number of results to return per page.</p>
|
|
5182
|
+
* @public
|
|
5183
|
+
*/
|
|
5184
|
+
MaxResults?: number;
|
|
5185
|
+
/**
|
|
5186
|
+
* <p>Filters to be applied to search results.</p>
|
|
5187
|
+
* @public
|
|
5188
|
+
*/
|
|
5189
|
+
SearchFilter?: ContactFlowSearchFilter;
|
|
5190
|
+
/**
|
|
5191
|
+
* <p>The search criteria to be used to return flows.</p>
|
|
5192
|
+
* <note>
|
|
5193
|
+
* <p>The <code>name</code> and <code>description</code> fields support "contains" queries with a
|
|
5194
|
+
* minimum of 2 characters and a maximum of 25 characters. Any queries with character lengths
|
|
5195
|
+
* outside of this range will result in invalid results.</p>
|
|
5196
|
+
* </note>
|
|
5197
|
+
* @public
|
|
5198
|
+
*/
|
|
5199
|
+
SearchCriteria?: ContactFlowSearchCriteria;
|
|
5200
|
+
}
|
|
4945
5201
|
/**
|
|
4946
5202
|
* @public
|
|
4947
5203
|
*/
|
|
@@ -5213,6 +5469,10 @@ export interface SearchUsersRequest {
|
|
|
5213
5469
|
*/
|
|
5214
5470
|
SearchCriteria?: UserSearchCriteria;
|
|
5215
5471
|
}
|
|
5472
|
+
/**
|
|
5473
|
+
* @internal
|
|
5474
|
+
*/
|
|
5475
|
+
export declare const ReplicateInstanceRequestFilterSensitiveLog: (obj: ReplicateInstanceRequest) => any;
|
|
5216
5476
|
/**
|
|
5217
5477
|
* @internal
|
|
5218
5478
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { SearchContactFlowModulesCommandInput, SearchContactFlowModulesCommandOutput } from "../commands/SearchContactFlowModulesCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateSearchContactFlowModules: (config: ConnectPaginationConfiguration, input: SearchContactFlowModulesCommandInput, ...rest: any[]) => Paginator<SearchContactFlowModulesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { SearchContactFlowsCommandInput, SearchContactFlowsCommandOutput } from "../commands/SearchContactFlowsCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateSearchContactFlows: (config: ConnectPaginationConfiguration, input: SearchContactFlowsCommandInput, ...rest: any[]) => Paginator<SearchContactFlowsCommandOutput>;
|
|
@@ -46,6 +46,8 @@ export * from "./ListUsersPaginator";
|
|
|
46
46
|
export * from "./ListViewVersionsPaginator";
|
|
47
47
|
export * from "./ListViewsPaginator";
|
|
48
48
|
export * from "./SearchAvailablePhoneNumbersPaginator";
|
|
49
|
+
export * from "./SearchContactFlowModulesPaginator";
|
|
50
|
+
export * from "./SearchContactFlowsPaginator";
|
|
49
51
|
export * from "./SearchContactsPaginator";
|
|
50
52
|
export * from "./SearchHoursOfOperationsPaginator";
|
|
51
53
|
export * from "./SearchPredefinedAttributesPaginator";
|
|
@@ -172,6 +172,8 @@ import { ReplicateInstanceCommandInput, ReplicateInstanceCommandOutput } from ".
|
|
|
172
172
|
import { ResumeContactCommandInput, ResumeContactCommandOutput } from "../commands/ResumeContactCommand";
|
|
173
173
|
import { ResumeContactRecordingCommandInput, ResumeContactRecordingCommandOutput } from "../commands/ResumeContactRecordingCommand";
|
|
174
174
|
import { SearchAvailablePhoneNumbersCommandInput, SearchAvailablePhoneNumbersCommandOutput } from "../commands/SearchAvailablePhoneNumbersCommand";
|
|
175
|
+
import { SearchContactFlowModulesCommandInput, SearchContactFlowModulesCommandOutput } from "../commands/SearchContactFlowModulesCommand";
|
|
176
|
+
import { SearchContactFlowsCommandInput, SearchContactFlowsCommandOutput } from "../commands/SearchContactFlowsCommand";
|
|
175
177
|
import { SearchContactsCommandInput, SearchContactsCommandOutput } from "../commands/SearchContactsCommand";
|
|
176
178
|
import { SearchHoursOfOperationsCommandInput, SearchHoursOfOperationsCommandOutput } from "../commands/SearchHoursOfOperationsCommand";
|
|
177
179
|
import { SearchPredefinedAttributesCommandInput, SearchPredefinedAttributesCommandOutput } from "../commands/SearchPredefinedAttributesCommand";
|
|
@@ -936,6 +938,14 @@ export declare const se_ResumeContactRecordingCommand: (input: ResumeContactReco
|
|
|
936
938
|
* serializeAws_restJson1SearchAvailablePhoneNumbersCommand
|
|
937
939
|
*/
|
|
938
940
|
export declare const se_SearchAvailablePhoneNumbersCommand: (input: SearchAvailablePhoneNumbersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
941
|
+
/**
|
|
942
|
+
* serializeAws_restJson1SearchContactFlowModulesCommand
|
|
943
|
+
*/
|
|
944
|
+
export declare const se_SearchContactFlowModulesCommand: (input: SearchContactFlowModulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
945
|
+
/**
|
|
946
|
+
* serializeAws_restJson1SearchContactFlowsCommand
|
|
947
|
+
*/
|
|
948
|
+
export declare const se_SearchContactFlowsCommand: (input: SearchContactFlowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
939
949
|
/**
|
|
940
950
|
* serializeAws_restJson1SearchContactsCommand
|
|
941
951
|
*/
|
|
@@ -1928,6 +1938,14 @@ export declare const de_ResumeContactRecordingCommand: (output: __HttpResponse,
|
|
|
1928
1938
|
* deserializeAws_restJson1SearchAvailablePhoneNumbersCommand
|
|
1929
1939
|
*/
|
|
1930
1940
|
export declare const de_SearchAvailablePhoneNumbersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchAvailablePhoneNumbersCommandOutput>;
|
|
1941
|
+
/**
|
|
1942
|
+
* deserializeAws_restJson1SearchContactFlowModulesCommand
|
|
1943
|
+
*/
|
|
1944
|
+
export declare const de_SearchContactFlowModulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchContactFlowModulesCommandOutput>;
|
|
1945
|
+
/**
|
|
1946
|
+
* deserializeAws_restJson1SearchContactFlowsCommand
|
|
1947
|
+
*/
|
|
1948
|
+
export declare const de_SearchContactFlowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchContactFlowsCommandOutput>;
|
|
1931
1949
|
/**
|
|
1932
1950
|
* deserializeAws_restJson1SearchContactsCommand
|
|
1933
1951
|
*/
|
|
@@ -687,6 +687,14 @@ import {
|
|
|
687
687
|
SearchAvailablePhoneNumbersCommandInput,
|
|
688
688
|
SearchAvailablePhoneNumbersCommandOutput,
|
|
689
689
|
} from "./commands/SearchAvailablePhoneNumbersCommand";
|
|
690
|
+
import {
|
|
691
|
+
SearchContactFlowModulesCommandInput,
|
|
692
|
+
SearchContactFlowModulesCommandOutput,
|
|
693
|
+
} from "./commands/SearchContactFlowModulesCommand";
|
|
694
|
+
import {
|
|
695
|
+
SearchContactFlowsCommandInput,
|
|
696
|
+
SearchContactFlowsCommandOutput,
|
|
697
|
+
} from "./commands/SearchContactFlowsCommand";
|
|
690
698
|
import {
|
|
691
699
|
SearchContactsCommandInput,
|
|
692
700
|
SearchContactsCommandOutput,
|
|
@@ -3280,6 +3288,32 @@ export interface Connect {
|
|
|
3280
3288
|
options: __HttpHandlerOptions,
|
|
3281
3289
|
cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void
|
|
3282
3290
|
): void;
|
|
3291
|
+
searchContactFlowModules(
|
|
3292
|
+
args: SearchContactFlowModulesCommandInput,
|
|
3293
|
+
options?: __HttpHandlerOptions
|
|
3294
|
+
): Promise<SearchContactFlowModulesCommandOutput>;
|
|
3295
|
+
searchContactFlowModules(
|
|
3296
|
+
args: SearchContactFlowModulesCommandInput,
|
|
3297
|
+
cb: (err: any, data?: SearchContactFlowModulesCommandOutput) => void
|
|
3298
|
+
): void;
|
|
3299
|
+
searchContactFlowModules(
|
|
3300
|
+
args: SearchContactFlowModulesCommandInput,
|
|
3301
|
+
options: __HttpHandlerOptions,
|
|
3302
|
+
cb: (err: any, data?: SearchContactFlowModulesCommandOutput) => void
|
|
3303
|
+
): void;
|
|
3304
|
+
searchContactFlows(
|
|
3305
|
+
args: SearchContactFlowsCommandInput,
|
|
3306
|
+
options?: __HttpHandlerOptions
|
|
3307
|
+
): Promise<SearchContactFlowsCommandOutput>;
|
|
3308
|
+
searchContactFlows(
|
|
3309
|
+
args: SearchContactFlowsCommandInput,
|
|
3310
|
+
cb: (err: any, data?: SearchContactFlowsCommandOutput) => void
|
|
3311
|
+
): void;
|
|
3312
|
+
searchContactFlows(
|
|
3313
|
+
args: SearchContactFlowsCommandInput,
|
|
3314
|
+
options: __HttpHandlerOptions,
|
|
3315
|
+
cb: (err: any, data?: SearchContactFlowsCommandOutput) => void
|
|
3316
|
+
): void;
|
|
3283
3317
|
searchContacts(
|
|
3284
3318
|
args: SearchContactsCommandInput,
|
|
3285
3319
|
options?: __HttpHandlerOptions
|
|
@@ -733,6 +733,14 @@ import {
|
|
|
733
733
|
SearchAvailablePhoneNumbersCommandInput,
|
|
734
734
|
SearchAvailablePhoneNumbersCommandOutput,
|
|
735
735
|
} from "./commands/SearchAvailablePhoneNumbersCommand";
|
|
736
|
+
import {
|
|
737
|
+
SearchContactFlowModulesCommandInput,
|
|
738
|
+
SearchContactFlowModulesCommandOutput,
|
|
739
|
+
} from "./commands/SearchContactFlowModulesCommand";
|
|
740
|
+
import {
|
|
741
|
+
SearchContactFlowsCommandInput,
|
|
742
|
+
SearchContactFlowsCommandOutput,
|
|
743
|
+
} from "./commands/SearchContactFlowsCommand";
|
|
736
744
|
import {
|
|
737
745
|
SearchContactsCommandInput,
|
|
738
746
|
SearchContactsCommandOutput,
|
|
@@ -1217,6 +1225,8 @@ export type ServiceInputTypes =
|
|
|
1217
1225
|
| ResumeContactCommandInput
|
|
1218
1226
|
| ResumeContactRecordingCommandInput
|
|
1219
1227
|
| SearchAvailablePhoneNumbersCommandInput
|
|
1228
|
+
| SearchContactFlowModulesCommandInput
|
|
1229
|
+
| SearchContactFlowsCommandInput
|
|
1220
1230
|
| SearchContactsCommandInput
|
|
1221
1231
|
| SearchHoursOfOperationsCommandInput
|
|
1222
1232
|
| SearchPredefinedAttributesCommandInput
|
|
@@ -1466,6 +1476,8 @@ export type ServiceOutputTypes =
|
|
|
1466
1476
|
| ResumeContactCommandOutput
|
|
1467
1477
|
| ResumeContactRecordingCommandOutput
|
|
1468
1478
|
| SearchAvailablePhoneNumbersCommandOutput
|
|
1479
|
+
| SearchContactFlowModulesCommandOutput
|
|
1480
|
+
| SearchContactFlowsCommandOutput
|
|
1469
1481
|
| SearchContactsCommandOutput
|
|
1470
1482
|
| SearchHoursOfOperationsCommandOutput
|
|
1471
1483
|
| SearchPredefinedAttributesCommandOutput
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ConnectClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ReplicateInstanceRequest,
|
|
10
|
+
ReplicateInstanceResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
10
12
|
export { __MetadataBearer, $Command };
|
|
11
13
|
export interface ReplicateInstanceCommandInput
|
|
12
14
|
extends ReplicateInstanceRequest {}
|