@aws-sdk/client-connect 3.975.0 → 3.978.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 +276 -177
- package/dist-es/Connect.js +173 -1
- package/dist-es/schemas/schemas_0.js +17 -6
- package/dist-types/Connect.d.ts +596 -1
- package/dist-types/commands/SearchContactsCommand.d.ts +20 -0
- package/dist-types/commands/StartTaskContactCommand.d.ts +6 -0
- package/dist-types/models/models_2.d.ts +14 -0
- package/dist-types/models/models_3.d.ts +26 -0
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/Connect.d.ts +600 -1
- package/dist-types/ts3.4/models/models_2.d.ts +1 -0
- package/dist-types/ts3.4/models/models_3.d.ts +6 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +17 -17
|
@@ -6115,6 +6115,20 @@ export interface SearchCriteria {
|
|
|
6115
6115
|
* @public
|
|
6116
6116
|
*/
|
|
6117
6117
|
ActiveRegions?: string[] | undefined;
|
|
6118
|
+
/**
|
|
6119
|
+
* <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>. This accepts an
|
|
6120
|
+
* <code>OR</code> of <code>AND</code> (List of List) input where:</p>
|
|
6121
|
+
* <ul>
|
|
6122
|
+
* <li>
|
|
6123
|
+
* <p>Top level list specifies conditions that need to be applied with <code>OR</code> operator</p>
|
|
6124
|
+
* </li>
|
|
6125
|
+
* <li>
|
|
6126
|
+
* <p>Inner list specifies conditions that need to be applied with <code>AND</code> operator.</p>
|
|
6127
|
+
* </li>
|
|
6128
|
+
* </ul>
|
|
6129
|
+
* @public
|
|
6130
|
+
*/
|
|
6131
|
+
ContactTags?: ControlPlaneTagFilter | undefined;
|
|
6118
6132
|
}
|
|
6119
6133
|
/**
|
|
6120
6134
|
* <p>A structure that defines the field name to sort by and a sort order.</p>
|
|
@@ -1074,6 +1074,22 @@ export interface StartScreenSharingRequest {
|
|
|
1074
1074
|
*/
|
|
1075
1075
|
export interface StartScreenSharingResponse {
|
|
1076
1076
|
}
|
|
1077
|
+
/**
|
|
1078
|
+
* <p>Information about the task attachment files.</p>
|
|
1079
|
+
* @public
|
|
1080
|
+
*/
|
|
1081
|
+
export interface TaskAttachment {
|
|
1082
|
+
/**
|
|
1083
|
+
* <p>A case-sensitive name of the attached file being uploaded.</p>
|
|
1084
|
+
* @public
|
|
1085
|
+
*/
|
|
1086
|
+
FileName: string | undefined;
|
|
1087
|
+
/**
|
|
1088
|
+
* <p>The pre-signed URLs for the S3 bucket where the task attachment is stored.</p>
|
|
1089
|
+
* @public
|
|
1090
|
+
*/
|
|
1091
|
+
S3Url: string | undefined;
|
|
1092
|
+
}
|
|
1077
1093
|
/**
|
|
1078
1094
|
* @public
|
|
1079
1095
|
*/
|
|
@@ -6010,6 +6026,11 @@ export interface StartTaskContactRequest {
|
|
|
6010
6026
|
* @public
|
|
6011
6027
|
*/
|
|
6012
6028
|
SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
|
|
6029
|
+
/**
|
|
6030
|
+
* <p>List of S3 presigned URLs of task attachments and their file name. You can have a maximum of 5 attachments per task.</p>
|
|
6031
|
+
* @public
|
|
6032
|
+
*/
|
|
6033
|
+
Attachments?: TaskAttachment[] | undefined;
|
|
6013
6034
|
}
|
|
6014
6035
|
/**
|
|
6015
6036
|
* @public
|
|
@@ -6912,6 +6933,11 @@ export interface ContactSearchSummary {
|
|
|
6912
6933
|
* @public
|
|
6913
6934
|
*/
|
|
6914
6935
|
RoutingCriteria?: RoutingCriteria | undefined;
|
|
6936
|
+
/**
|
|
6937
|
+
* <p>Tags associated with the contact. This contains both Amazon Web Services generated and user-defined tags.</p>
|
|
6938
|
+
* @public
|
|
6939
|
+
*/
|
|
6940
|
+
Tags?: Record<string, string> | undefined;
|
|
6915
6941
|
/**
|
|
6916
6942
|
* <p>Additional routing information for contacts created in ACGR instances.</p>
|
|
6917
6943
|
* @public
|
|
@@ -985,6 +985,7 @@ export declare var TagResourceRequest$: StaticStructureSchema;
|
|
|
985
985
|
export declare var TagSearchCondition$: StaticStructureSchema;
|
|
986
986
|
export declare var TagSet$: StaticStructureSchema;
|
|
987
987
|
export declare var TaskActionDefinition$: StaticStructureSchema;
|
|
988
|
+
export declare var TaskAttachment$: StaticStructureSchema;
|
|
988
989
|
export declare var TaskTemplateConstraints$: StaticStructureSchema;
|
|
989
990
|
export declare var TaskTemplateDefaultFieldValue$: StaticStructureSchema;
|
|
990
991
|
export declare var TaskTemplateDefaults$: StaticStructureSchema;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
ActivateEvaluationFormCommandInput,
|
|
4
8
|
ActivateEvaluationFormCommandOutput,
|
|
@@ -6119,5 +6123,600 @@ export interface Connect {
|
|
|
6119
6123
|
options: __HttpHandlerOptions,
|
|
6120
6124
|
cb: (err: any, data?: UpdateWorkspaceVisibilityCommandOutput) => void
|
|
6121
6125
|
): void;
|
|
6126
|
+
paginateEvaluateDataTableValues(
|
|
6127
|
+
args: EvaluateDataTableValuesCommandInput,
|
|
6128
|
+
paginationConfig?: Pick<
|
|
6129
|
+
PaginationConfiguration,
|
|
6130
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6131
|
+
>
|
|
6132
|
+
): Paginator<EvaluateDataTableValuesCommandOutput>;
|
|
6133
|
+
paginateGetCurrentMetricData(
|
|
6134
|
+
args: GetCurrentMetricDataCommandInput,
|
|
6135
|
+
paginationConfig?: Pick<
|
|
6136
|
+
PaginationConfiguration,
|
|
6137
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6138
|
+
>
|
|
6139
|
+
): Paginator<GetCurrentMetricDataCommandOutput>;
|
|
6140
|
+
paginateGetCurrentUserData(
|
|
6141
|
+
args: GetCurrentUserDataCommandInput,
|
|
6142
|
+
paginationConfig?: Pick<
|
|
6143
|
+
PaginationConfiguration,
|
|
6144
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6145
|
+
>
|
|
6146
|
+
): Paginator<GetCurrentUserDataCommandOutput>;
|
|
6147
|
+
paginateGetMetricData(
|
|
6148
|
+
args: GetMetricDataCommandInput,
|
|
6149
|
+
paginationConfig?: Pick<
|
|
6150
|
+
PaginationConfiguration,
|
|
6151
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6152
|
+
>
|
|
6153
|
+
): Paginator<GetMetricDataCommandOutput>;
|
|
6154
|
+
paginateGetMetricDataV2(
|
|
6155
|
+
args: GetMetricDataV2CommandInput,
|
|
6156
|
+
paginationConfig?: Pick<
|
|
6157
|
+
PaginationConfiguration,
|
|
6158
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6159
|
+
>
|
|
6160
|
+
): Paginator<GetMetricDataV2CommandOutput>;
|
|
6161
|
+
paginateListAgentStatuses(
|
|
6162
|
+
args: ListAgentStatusesCommandInput,
|
|
6163
|
+
paginationConfig?: Pick<
|
|
6164
|
+
PaginationConfiguration,
|
|
6165
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6166
|
+
>
|
|
6167
|
+
): Paginator<ListAgentStatusesCommandOutput>;
|
|
6168
|
+
paginateListApprovedOrigins(
|
|
6169
|
+
args: ListApprovedOriginsCommandInput,
|
|
6170
|
+
paginationConfig?: Pick<
|
|
6171
|
+
PaginationConfiguration,
|
|
6172
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6173
|
+
>
|
|
6174
|
+
): Paginator<ListApprovedOriginsCommandOutput>;
|
|
6175
|
+
paginateListAuthenticationProfiles(
|
|
6176
|
+
args: ListAuthenticationProfilesCommandInput,
|
|
6177
|
+
paginationConfig?: Pick<
|
|
6178
|
+
PaginationConfiguration,
|
|
6179
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6180
|
+
>
|
|
6181
|
+
): Paginator<ListAuthenticationProfilesCommandOutput>;
|
|
6182
|
+
paginateListBots(
|
|
6183
|
+
args: ListBotsCommandInput,
|
|
6184
|
+
paginationConfig?: Pick<
|
|
6185
|
+
PaginationConfiguration,
|
|
6186
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6187
|
+
>
|
|
6188
|
+
): Paginator<ListBotsCommandOutput>;
|
|
6189
|
+
paginateListChildHoursOfOperations(
|
|
6190
|
+
args: ListChildHoursOfOperationsCommandInput,
|
|
6191
|
+
paginationConfig?: Pick<
|
|
6192
|
+
PaginationConfiguration,
|
|
6193
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6194
|
+
>
|
|
6195
|
+
): Paginator<ListChildHoursOfOperationsCommandOutput>;
|
|
6196
|
+
paginateListContactEvaluations(
|
|
6197
|
+
args: ListContactEvaluationsCommandInput,
|
|
6198
|
+
paginationConfig?: Pick<
|
|
6199
|
+
PaginationConfiguration,
|
|
6200
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6201
|
+
>
|
|
6202
|
+
): Paginator<ListContactEvaluationsCommandOutput>;
|
|
6203
|
+
paginateListContactFlowModuleAliases(
|
|
6204
|
+
args: ListContactFlowModuleAliasesCommandInput,
|
|
6205
|
+
paginationConfig?: Pick<
|
|
6206
|
+
PaginationConfiguration,
|
|
6207
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6208
|
+
>
|
|
6209
|
+
): Paginator<ListContactFlowModuleAliasesCommandOutput>;
|
|
6210
|
+
paginateListContactFlowModules(
|
|
6211
|
+
args: ListContactFlowModulesCommandInput,
|
|
6212
|
+
paginationConfig?: Pick<
|
|
6213
|
+
PaginationConfiguration,
|
|
6214
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6215
|
+
>
|
|
6216
|
+
): Paginator<ListContactFlowModulesCommandOutput>;
|
|
6217
|
+
paginateListContactFlowModuleVersions(
|
|
6218
|
+
args: ListContactFlowModuleVersionsCommandInput,
|
|
6219
|
+
paginationConfig?: Pick<
|
|
6220
|
+
PaginationConfiguration,
|
|
6221
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6222
|
+
>
|
|
6223
|
+
): Paginator<ListContactFlowModuleVersionsCommandOutput>;
|
|
6224
|
+
paginateListContactFlows(
|
|
6225
|
+
args: ListContactFlowsCommandInput,
|
|
6226
|
+
paginationConfig?: Pick<
|
|
6227
|
+
PaginationConfiguration,
|
|
6228
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6229
|
+
>
|
|
6230
|
+
): Paginator<ListContactFlowsCommandOutput>;
|
|
6231
|
+
paginateListContactFlowVersions(
|
|
6232
|
+
args: ListContactFlowVersionsCommandInput,
|
|
6233
|
+
paginationConfig?: Pick<
|
|
6234
|
+
PaginationConfiguration,
|
|
6235
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6236
|
+
>
|
|
6237
|
+
): Paginator<ListContactFlowVersionsCommandOutput>;
|
|
6238
|
+
paginateListContactReferences(
|
|
6239
|
+
args: ListContactReferencesCommandInput,
|
|
6240
|
+
paginationConfig?: Pick<
|
|
6241
|
+
PaginationConfiguration,
|
|
6242
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6243
|
+
>
|
|
6244
|
+
): Paginator<ListContactReferencesCommandOutput>;
|
|
6245
|
+
paginateListDataTableAttributes(
|
|
6246
|
+
args: ListDataTableAttributesCommandInput,
|
|
6247
|
+
paginationConfig?: Pick<
|
|
6248
|
+
PaginationConfiguration,
|
|
6249
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6250
|
+
>
|
|
6251
|
+
): Paginator<ListDataTableAttributesCommandOutput>;
|
|
6252
|
+
paginateListDataTablePrimaryValues(
|
|
6253
|
+
args: ListDataTablePrimaryValuesCommandInput,
|
|
6254
|
+
paginationConfig?: Pick<
|
|
6255
|
+
PaginationConfiguration,
|
|
6256
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6257
|
+
>
|
|
6258
|
+
): Paginator<ListDataTablePrimaryValuesCommandOutput>;
|
|
6259
|
+
paginateListDataTables(
|
|
6260
|
+
args: ListDataTablesCommandInput,
|
|
6261
|
+
paginationConfig?: Pick<
|
|
6262
|
+
PaginationConfiguration,
|
|
6263
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6264
|
+
>
|
|
6265
|
+
): Paginator<ListDataTablesCommandOutput>;
|
|
6266
|
+
paginateListDataTableValues(
|
|
6267
|
+
args: ListDataTableValuesCommandInput,
|
|
6268
|
+
paginationConfig?: Pick<
|
|
6269
|
+
PaginationConfiguration,
|
|
6270
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6271
|
+
>
|
|
6272
|
+
): Paginator<ListDataTableValuesCommandOutput>;
|
|
6273
|
+
paginateListDefaultVocabularies(
|
|
6274
|
+
args: ListDefaultVocabulariesCommandInput,
|
|
6275
|
+
paginationConfig?: Pick<
|
|
6276
|
+
PaginationConfiguration,
|
|
6277
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6278
|
+
>
|
|
6279
|
+
): Paginator<ListDefaultVocabulariesCommandOutput>;
|
|
6280
|
+
paginateListEntitySecurityProfiles(
|
|
6281
|
+
args: ListEntitySecurityProfilesCommandInput,
|
|
6282
|
+
paginationConfig?: Pick<
|
|
6283
|
+
PaginationConfiguration,
|
|
6284
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6285
|
+
>
|
|
6286
|
+
): Paginator<ListEntitySecurityProfilesCommandOutput>;
|
|
6287
|
+
paginateListEvaluationForms(
|
|
6288
|
+
args: ListEvaluationFormsCommandInput,
|
|
6289
|
+
paginationConfig?: Pick<
|
|
6290
|
+
PaginationConfiguration,
|
|
6291
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6292
|
+
>
|
|
6293
|
+
): Paginator<ListEvaluationFormsCommandOutput>;
|
|
6294
|
+
paginateListEvaluationFormVersions(
|
|
6295
|
+
args: ListEvaluationFormVersionsCommandInput,
|
|
6296
|
+
paginationConfig?: Pick<
|
|
6297
|
+
PaginationConfiguration,
|
|
6298
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6299
|
+
>
|
|
6300
|
+
): Paginator<ListEvaluationFormVersionsCommandOutput>;
|
|
6301
|
+
paginateListFlowAssociations(
|
|
6302
|
+
args: ListFlowAssociationsCommandInput,
|
|
6303
|
+
paginationConfig?: Pick<
|
|
6304
|
+
PaginationConfiguration,
|
|
6305
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6306
|
+
>
|
|
6307
|
+
): Paginator<ListFlowAssociationsCommandOutput>;
|
|
6308
|
+
paginateListHoursOfOperationOverrides(
|
|
6309
|
+
args: ListHoursOfOperationOverridesCommandInput,
|
|
6310
|
+
paginationConfig?: Pick<
|
|
6311
|
+
PaginationConfiguration,
|
|
6312
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6313
|
+
>
|
|
6314
|
+
): Paginator<ListHoursOfOperationOverridesCommandOutput>;
|
|
6315
|
+
paginateListHoursOfOperations(
|
|
6316
|
+
args: ListHoursOfOperationsCommandInput,
|
|
6317
|
+
paginationConfig?: Pick<
|
|
6318
|
+
PaginationConfiguration,
|
|
6319
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6320
|
+
>
|
|
6321
|
+
): Paginator<ListHoursOfOperationsCommandOutput>;
|
|
6322
|
+
paginateListInstanceAttributes(
|
|
6323
|
+
args: ListInstanceAttributesCommandInput,
|
|
6324
|
+
paginationConfig?: Pick<
|
|
6325
|
+
PaginationConfiguration,
|
|
6326
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6327
|
+
>
|
|
6328
|
+
): Paginator<ListInstanceAttributesCommandOutput>;
|
|
6329
|
+
paginateListInstances(
|
|
6330
|
+
args?: ListInstancesCommandInput,
|
|
6331
|
+
paginationConfig?: Pick<
|
|
6332
|
+
PaginationConfiguration,
|
|
6333
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6334
|
+
>
|
|
6335
|
+
): Paginator<ListInstancesCommandOutput>;
|
|
6336
|
+
paginateListInstanceStorageConfigs(
|
|
6337
|
+
args: ListInstanceStorageConfigsCommandInput,
|
|
6338
|
+
paginationConfig?: Pick<
|
|
6339
|
+
PaginationConfiguration,
|
|
6340
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6341
|
+
>
|
|
6342
|
+
): Paginator<ListInstanceStorageConfigsCommandOutput>;
|
|
6343
|
+
paginateListIntegrationAssociations(
|
|
6344
|
+
args: ListIntegrationAssociationsCommandInput,
|
|
6345
|
+
paginationConfig?: Pick<
|
|
6346
|
+
PaginationConfiguration,
|
|
6347
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6348
|
+
>
|
|
6349
|
+
): Paginator<ListIntegrationAssociationsCommandOutput>;
|
|
6350
|
+
paginateListLambdaFunctions(
|
|
6351
|
+
args: ListLambdaFunctionsCommandInput,
|
|
6352
|
+
paginationConfig?: Pick<
|
|
6353
|
+
PaginationConfiguration,
|
|
6354
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6355
|
+
>
|
|
6356
|
+
): Paginator<ListLambdaFunctionsCommandOutput>;
|
|
6357
|
+
paginateListLexBots(
|
|
6358
|
+
args: ListLexBotsCommandInput,
|
|
6359
|
+
paginationConfig?: Pick<
|
|
6360
|
+
PaginationConfiguration,
|
|
6361
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6362
|
+
>
|
|
6363
|
+
): Paginator<ListLexBotsCommandOutput>;
|
|
6364
|
+
paginateListPhoneNumbers(
|
|
6365
|
+
args: ListPhoneNumbersCommandInput,
|
|
6366
|
+
paginationConfig?: Pick<
|
|
6367
|
+
PaginationConfiguration,
|
|
6368
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6369
|
+
>
|
|
6370
|
+
): Paginator<ListPhoneNumbersCommandOutput>;
|
|
6371
|
+
paginateListPhoneNumbersV2(
|
|
6372
|
+
args?: ListPhoneNumbersV2CommandInput,
|
|
6373
|
+
paginationConfig?: Pick<
|
|
6374
|
+
PaginationConfiguration,
|
|
6375
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6376
|
+
>
|
|
6377
|
+
): Paginator<ListPhoneNumbersV2CommandOutput>;
|
|
6378
|
+
paginateListPredefinedAttributes(
|
|
6379
|
+
args: ListPredefinedAttributesCommandInput,
|
|
6380
|
+
paginationConfig?: Pick<
|
|
6381
|
+
PaginationConfiguration,
|
|
6382
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6383
|
+
>
|
|
6384
|
+
): Paginator<ListPredefinedAttributesCommandOutput>;
|
|
6385
|
+
paginateListPrompts(
|
|
6386
|
+
args: ListPromptsCommandInput,
|
|
6387
|
+
paginationConfig?: Pick<
|
|
6388
|
+
PaginationConfiguration,
|
|
6389
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6390
|
+
>
|
|
6391
|
+
): Paginator<ListPromptsCommandOutput>;
|
|
6392
|
+
paginateListQueueQuickConnects(
|
|
6393
|
+
args: ListQueueQuickConnectsCommandInput,
|
|
6394
|
+
paginationConfig?: Pick<
|
|
6395
|
+
PaginationConfiguration,
|
|
6396
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6397
|
+
>
|
|
6398
|
+
): Paginator<ListQueueQuickConnectsCommandOutput>;
|
|
6399
|
+
paginateListQueues(
|
|
6400
|
+
args: ListQueuesCommandInput,
|
|
6401
|
+
paginationConfig?: Pick<
|
|
6402
|
+
PaginationConfiguration,
|
|
6403
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6404
|
+
>
|
|
6405
|
+
): Paginator<ListQueuesCommandOutput>;
|
|
6406
|
+
paginateListQuickConnects(
|
|
6407
|
+
args: ListQuickConnectsCommandInput,
|
|
6408
|
+
paginationConfig?: Pick<
|
|
6409
|
+
PaginationConfiguration,
|
|
6410
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6411
|
+
>
|
|
6412
|
+
): Paginator<ListQuickConnectsCommandOutput>;
|
|
6413
|
+
paginateListRealtimeContactAnalysisSegmentsV2(
|
|
6414
|
+
args: ListRealtimeContactAnalysisSegmentsV2CommandInput,
|
|
6415
|
+
paginationConfig?: Pick<
|
|
6416
|
+
PaginationConfiguration,
|
|
6417
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6418
|
+
>
|
|
6419
|
+
): Paginator<ListRealtimeContactAnalysisSegmentsV2CommandOutput>;
|
|
6420
|
+
paginateListRoutingProfileManualAssignmentQueues(
|
|
6421
|
+
args: ListRoutingProfileManualAssignmentQueuesCommandInput,
|
|
6422
|
+
paginationConfig?: Pick<
|
|
6423
|
+
PaginationConfiguration,
|
|
6424
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6425
|
+
>
|
|
6426
|
+
): Paginator<ListRoutingProfileManualAssignmentQueuesCommandOutput>;
|
|
6427
|
+
paginateListRoutingProfileQueues(
|
|
6428
|
+
args: ListRoutingProfileQueuesCommandInput,
|
|
6429
|
+
paginationConfig?: Pick<
|
|
6430
|
+
PaginationConfiguration,
|
|
6431
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6432
|
+
>
|
|
6433
|
+
): Paginator<ListRoutingProfileQueuesCommandOutput>;
|
|
6434
|
+
paginateListRoutingProfiles(
|
|
6435
|
+
args: ListRoutingProfilesCommandInput,
|
|
6436
|
+
paginationConfig?: Pick<
|
|
6437
|
+
PaginationConfiguration,
|
|
6438
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6439
|
+
>
|
|
6440
|
+
): Paginator<ListRoutingProfilesCommandOutput>;
|
|
6441
|
+
paginateListRules(
|
|
6442
|
+
args: ListRulesCommandInput,
|
|
6443
|
+
paginationConfig?: Pick<
|
|
6444
|
+
PaginationConfiguration,
|
|
6445
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6446
|
+
>
|
|
6447
|
+
): Paginator<ListRulesCommandOutput>;
|
|
6448
|
+
paginateListSecurityKeys(
|
|
6449
|
+
args: ListSecurityKeysCommandInput,
|
|
6450
|
+
paginationConfig?: Pick<
|
|
6451
|
+
PaginationConfiguration,
|
|
6452
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6453
|
+
>
|
|
6454
|
+
): Paginator<ListSecurityKeysCommandOutput>;
|
|
6455
|
+
paginateListSecurityProfileApplications(
|
|
6456
|
+
args: ListSecurityProfileApplicationsCommandInput,
|
|
6457
|
+
paginationConfig?: Pick<
|
|
6458
|
+
PaginationConfiguration,
|
|
6459
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6460
|
+
>
|
|
6461
|
+
): Paginator<ListSecurityProfileApplicationsCommandOutput>;
|
|
6462
|
+
paginateListSecurityProfileFlowModules(
|
|
6463
|
+
args: ListSecurityProfileFlowModulesCommandInput,
|
|
6464
|
+
paginationConfig?: Pick<
|
|
6465
|
+
PaginationConfiguration,
|
|
6466
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6467
|
+
>
|
|
6468
|
+
): Paginator<ListSecurityProfileFlowModulesCommandOutput>;
|
|
6469
|
+
paginateListSecurityProfilePermissions(
|
|
6470
|
+
args: ListSecurityProfilePermissionsCommandInput,
|
|
6471
|
+
paginationConfig?: Pick<
|
|
6472
|
+
PaginationConfiguration,
|
|
6473
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6474
|
+
>
|
|
6475
|
+
): Paginator<ListSecurityProfilePermissionsCommandOutput>;
|
|
6476
|
+
paginateListSecurityProfiles(
|
|
6477
|
+
args: ListSecurityProfilesCommandInput,
|
|
6478
|
+
paginationConfig?: Pick<
|
|
6479
|
+
PaginationConfiguration,
|
|
6480
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6481
|
+
>
|
|
6482
|
+
): Paginator<ListSecurityProfilesCommandOutput>;
|
|
6483
|
+
paginateListTaskTemplates(
|
|
6484
|
+
args: ListTaskTemplatesCommandInput,
|
|
6485
|
+
paginationConfig?: Pick<
|
|
6486
|
+
PaginationConfiguration,
|
|
6487
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6488
|
+
>
|
|
6489
|
+
): Paginator<ListTaskTemplatesCommandOutput>;
|
|
6490
|
+
paginateListTestCases(
|
|
6491
|
+
args: ListTestCasesCommandInput,
|
|
6492
|
+
paginationConfig?: Pick<
|
|
6493
|
+
PaginationConfiguration,
|
|
6494
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6495
|
+
>
|
|
6496
|
+
): Paginator<ListTestCasesCommandOutput>;
|
|
6497
|
+
paginateListTrafficDistributionGroups(
|
|
6498
|
+
args?: ListTrafficDistributionGroupsCommandInput,
|
|
6499
|
+
paginationConfig?: Pick<
|
|
6500
|
+
PaginationConfiguration,
|
|
6501
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6502
|
+
>
|
|
6503
|
+
): Paginator<ListTrafficDistributionGroupsCommandOutput>;
|
|
6504
|
+
paginateListTrafficDistributionGroupUsers(
|
|
6505
|
+
args: ListTrafficDistributionGroupUsersCommandInput,
|
|
6506
|
+
paginationConfig?: Pick<
|
|
6507
|
+
PaginationConfiguration,
|
|
6508
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6509
|
+
>
|
|
6510
|
+
): Paginator<ListTrafficDistributionGroupUsersCommandOutput>;
|
|
6511
|
+
paginateListUseCases(
|
|
6512
|
+
args: ListUseCasesCommandInput,
|
|
6513
|
+
paginationConfig?: Pick<
|
|
6514
|
+
PaginationConfiguration,
|
|
6515
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6516
|
+
>
|
|
6517
|
+
): Paginator<ListUseCasesCommandOutput>;
|
|
6518
|
+
paginateListUserHierarchyGroups(
|
|
6519
|
+
args: ListUserHierarchyGroupsCommandInput,
|
|
6520
|
+
paginationConfig?: Pick<
|
|
6521
|
+
PaginationConfiguration,
|
|
6522
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6523
|
+
>
|
|
6524
|
+
): Paginator<ListUserHierarchyGroupsCommandOutput>;
|
|
6525
|
+
paginateListUserProficiencies(
|
|
6526
|
+
args: ListUserProficienciesCommandInput,
|
|
6527
|
+
paginationConfig?: Pick<
|
|
6528
|
+
PaginationConfiguration,
|
|
6529
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6530
|
+
>
|
|
6531
|
+
): Paginator<ListUserProficienciesCommandOutput>;
|
|
6532
|
+
paginateListUsers(
|
|
6533
|
+
args: ListUsersCommandInput,
|
|
6534
|
+
paginationConfig?: Pick<
|
|
6535
|
+
PaginationConfiguration,
|
|
6536
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6537
|
+
>
|
|
6538
|
+
): Paginator<ListUsersCommandOutput>;
|
|
6539
|
+
paginateListViews(
|
|
6540
|
+
args: ListViewsCommandInput,
|
|
6541
|
+
paginationConfig?: Pick<
|
|
6542
|
+
PaginationConfiguration,
|
|
6543
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6544
|
+
>
|
|
6545
|
+
): Paginator<ListViewsCommandOutput>;
|
|
6546
|
+
paginateListViewVersions(
|
|
6547
|
+
args: ListViewVersionsCommandInput,
|
|
6548
|
+
paginationConfig?: Pick<
|
|
6549
|
+
PaginationConfiguration,
|
|
6550
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6551
|
+
>
|
|
6552
|
+
): Paginator<ListViewVersionsCommandOutput>;
|
|
6553
|
+
paginateListWorkspacePages(
|
|
6554
|
+
args: ListWorkspacePagesCommandInput,
|
|
6555
|
+
paginationConfig?: Pick<
|
|
6556
|
+
PaginationConfiguration,
|
|
6557
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6558
|
+
>
|
|
6559
|
+
): Paginator<ListWorkspacePagesCommandOutput>;
|
|
6560
|
+
paginateListWorkspaces(
|
|
6561
|
+
args: ListWorkspacesCommandInput,
|
|
6562
|
+
paginationConfig?: Pick<
|
|
6563
|
+
PaginationConfiguration,
|
|
6564
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6565
|
+
>
|
|
6566
|
+
): Paginator<ListWorkspacesCommandOutput>;
|
|
6567
|
+
paginateSearchAgentStatuses(
|
|
6568
|
+
args: SearchAgentStatusesCommandInput,
|
|
6569
|
+
paginationConfig?: Pick<
|
|
6570
|
+
PaginationConfiguration,
|
|
6571
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6572
|
+
>
|
|
6573
|
+
): Paginator<SearchAgentStatusesCommandOutput>;
|
|
6574
|
+
paginateSearchAvailablePhoneNumbers(
|
|
6575
|
+
args: SearchAvailablePhoneNumbersCommandInput,
|
|
6576
|
+
paginationConfig?: Pick<
|
|
6577
|
+
PaginationConfiguration,
|
|
6578
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6579
|
+
>
|
|
6580
|
+
): Paginator<SearchAvailablePhoneNumbersCommandOutput>;
|
|
6581
|
+
paginateSearchContactFlowModules(
|
|
6582
|
+
args: SearchContactFlowModulesCommandInput,
|
|
6583
|
+
paginationConfig?: Pick<
|
|
6584
|
+
PaginationConfiguration,
|
|
6585
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6586
|
+
>
|
|
6587
|
+
): Paginator<SearchContactFlowModulesCommandOutput>;
|
|
6588
|
+
paginateSearchContactFlows(
|
|
6589
|
+
args: SearchContactFlowsCommandInput,
|
|
6590
|
+
paginationConfig?: Pick<
|
|
6591
|
+
PaginationConfiguration,
|
|
6592
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6593
|
+
>
|
|
6594
|
+
): Paginator<SearchContactFlowsCommandOutput>;
|
|
6595
|
+
paginateSearchContacts(
|
|
6596
|
+
args: SearchContactsCommandInput,
|
|
6597
|
+
paginationConfig?: Pick<
|
|
6598
|
+
PaginationConfiguration,
|
|
6599
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6600
|
+
>
|
|
6601
|
+
): Paginator<SearchContactsCommandOutput>;
|
|
6602
|
+
paginateSearchDataTables(
|
|
6603
|
+
args: SearchDataTablesCommandInput,
|
|
6604
|
+
paginationConfig?: Pick<
|
|
6605
|
+
PaginationConfiguration,
|
|
6606
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6607
|
+
>
|
|
6608
|
+
): Paginator<SearchDataTablesCommandOutput>;
|
|
6609
|
+
paginateSearchHoursOfOperationOverrides(
|
|
6610
|
+
args: SearchHoursOfOperationOverridesCommandInput,
|
|
6611
|
+
paginationConfig?: Pick<
|
|
6612
|
+
PaginationConfiguration,
|
|
6613
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6614
|
+
>
|
|
6615
|
+
): Paginator<SearchHoursOfOperationOverridesCommandOutput>;
|
|
6616
|
+
paginateSearchHoursOfOperations(
|
|
6617
|
+
args: SearchHoursOfOperationsCommandInput,
|
|
6618
|
+
paginationConfig?: Pick<
|
|
6619
|
+
PaginationConfiguration,
|
|
6620
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6621
|
+
>
|
|
6622
|
+
): Paginator<SearchHoursOfOperationsCommandOutput>;
|
|
6623
|
+
paginateSearchPredefinedAttributes(
|
|
6624
|
+
args: SearchPredefinedAttributesCommandInput,
|
|
6625
|
+
paginationConfig?: Pick<
|
|
6626
|
+
PaginationConfiguration,
|
|
6627
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6628
|
+
>
|
|
6629
|
+
): Paginator<SearchPredefinedAttributesCommandOutput>;
|
|
6630
|
+
paginateSearchPrompts(
|
|
6631
|
+
args: SearchPromptsCommandInput,
|
|
6632
|
+
paginationConfig?: Pick<
|
|
6633
|
+
PaginationConfiguration,
|
|
6634
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6635
|
+
>
|
|
6636
|
+
): Paginator<SearchPromptsCommandOutput>;
|
|
6637
|
+
paginateSearchQueues(
|
|
6638
|
+
args: SearchQueuesCommandInput,
|
|
6639
|
+
paginationConfig?: Pick<
|
|
6640
|
+
PaginationConfiguration,
|
|
6641
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6642
|
+
>
|
|
6643
|
+
): Paginator<SearchQueuesCommandOutput>;
|
|
6644
|
+
paginateSearchQuickConnects(
|
|
6645
|
+
args: SearchQuickConnectsCommandInput,
|
|
6646
|
+
paginationConfig?: Pick<
|
|
6647
|
+
PaginationConfiguration,
|
|
6648
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6649
|
+
>
|
|
6650
|
+
): Paginator<SearchQuickConnectsCommandOutput>;
|
|
6651
|
+
paginateSearchResourceTags(
|
|
6652
|
+
args: SearchResourceTagsCommandInput,
|
|
6653
|
+
paginationConfig?: Pick<
|
|
6654
|
+
PaginationConfiguration,
|
|
6655
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6656
|
+
>
|
|
6657
|
+
): Paginator<SearchResourceTagsCommandOutput>;
|
|
6658
|
+
paginateSearchRoutingProfiles(
|
|
6659
|
+
args: SearchRoutingProfilesCommandInput,
|
|
6660
|
+
paginationConfig?: Pick<
|
|
6661
|
+
PaginationConfiguration,
|
|
6662
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6663
|
+
>
|
|
6664
|
+
): Paginator<SearchRoutingProfilesCommandOutput>;
|
|
6665
|
+
paginateSearchSecurityProfiles(
|
|
6666
|
+
args: SearchSecurityProfilesCommandInput,
|
|
6667
|
+
paginationConfig?: Pick<
|
|
6668
|
+
PaginationConfiguration,
|
|
6669
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6670
|
+
>
|
|
6671
|
+
): Paginator<SearchSecurityProfilesCommandOutput>;
|
|
6672
|
+
paginateSearchTestCases(
|
|
6673
|
+
args: SearchTestCasesCommandInput,
|
|
6674
|
+
paginationConfig?: Pick<
|
|
6675
|
+
PaginationConfiguration,
|
|
6676
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6677
|
+
>
|
|
6678
|
+
): Paginator<SearchTestCasesCommandOutput>;
|
|
6679
|
+
paginateSearchUserHierarchyGroups(
|
|
6680
|
+
args: SearchUserHierarchyGroupsCommandInput,
|
|
6681
|
+
paginationConfig?: Pick<
|
|
6682
|
+
PaginationConfiguration,
|
|
6683
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6684
|
+
>
|
|
6685
|
+
): Paginator<SearchUserHierarchyGroupsCommandOutput>;
|
|
6686
|
+
paginateSearchUsers(
|
|
6687
|
+
args: SearchUsersCommandInput,
|
|
6688
|
+
paginationConfig?: Pick<
|
|
6689
|
+
PaginationConfiguration,
|
|
6690
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6691
|
+
>
|
|
6692
|
+
): Paginator<SearchUsersCommandOutput>;
|
|
6693
|
+
paginateSearchViews(
|
|
6694
|
+
args: SearchViewsCommandInput,
|
|
6695
|
+
paginationConfig?: Pick<
|
|
6696
|
+
PaginationConfiguration,
|
|
6697
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6698
|
+
>
|
|
6699
|
+
): Paginator<SearchViewsCommandOutput>;
|
|
6700
|
+
paginateSearchVocabularies(
|
|
6701
|
+
args: SearchVocabulariesCommandInput,
|
|
6702
|
+
paginationConfig?: Pick<
|
|
6703
|
+
PaginationConfiguration,
|
|
6704
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6705
|
+
>
|
|
6706
|
+
): Paginator<SearchVocabulariesCommandOutput>;
|
|
6707
|
+
paginateSearchWorkspaceAssociations(
|
|
6708
|
+
args: SearchWorkspaceAssociationsCommandInput,
|
|
6709
|
+
paginationConfig?: Pick<
|
|
6710
|
+
PaginationConfiguration,
|
|
6711
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6712
|
+
>
|
|
6713
|
+
): Paginator<SearchWorkspaceAssociationsCommandOutput>;
|
|
6714
|
+
paginateSearchWorkspaces(
|
|
6715
|
+
args: SearchWorkspacesCommandInput,
|
|
6716
|
+
paginationConfig?: Pick<
|
|
6717
|
+
PaginationConfiguration,
|
|
6718
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6719
|
+
>
|
|
6720
|
+
): Paginator<SearchWorkspacesCommandOutput>;
|
|
6122
6721
|
}
|
|
6123
6722
|
export declare class Connect extends ConnectClient implements Connect {}
|
|
@@ -1670,6 +1670,7 @@ export interface SearchCriteria {
|
|
|
1670
1670
|
SearchableContactAttributes?: SearchableContactAttributes | undefined;
|
|
1671
1671
|
SearchableSegmentAttributes?: SearchableSegmentAttributes | undefined;
|
|
1672
1672
|
ActiveRegions?: string[] | undefined;
|
|
1673
|
+
ContactTags?: ControlPlaneTagFilter | undefined;
|
|
1673
1674
|
}
|
|
1674
1675
|
export interface Sort {
|
|
1675
1676
|
FieldName: SortableFieldName | undefined;
|