@aws-sdk/client-connect 3.312.0 → 3.316.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/Connect.js +174 -2380
- package/dist-cjs/protocols/Aws_restJson1.js +1751 -4297
- package/dist-es/Connect.js +174 -2380
- package/dist-es/protocols/Aws_restJson1.js +1523 -4069
- package/dist-types/Connect.d.ts +187 -808
- package/dist-types/ts3.4/Connect.d.ts +2 -1
- package/package.json +6 -6
package/dist-types/Connect.d.ts
CHANGED
|
@@ -170,1662 +170,1041 @@ import { UpdateUserPhoneConfigCommandInput, UpdateUserPhoneConfigCommandOutput }
|
|
|
170
170
|
import { UpdateUserRoutingProfileCommandInput, UpdateUserRoutingProfileCommandOutput } from "./commands/UpdateUserRoutingProfileCommand";
|
|
171
171
|
import { UpdateUserSecurityProfilesCommandInput, UpdateUserSecurityProfilesCommandOutput } from "./commands/UpdateUserSecurityProfilesCommand";
|
|
172
172
|
import { ConnectClient } from "./ConnectClient";
|
|
173
|
-
|
|
174
|
-
* @public
|
|
175
|
-
* <p>Amazon Connect is a cloud-based contact center solution that you use to set up and
|
|
176
|
-
* manage a customer contact center and provide reliable customer engagement at any scale.</p>
|
|
177
|
-
* <p>Amazon Connect provides metrics and real-time reporting that enable you to optimize
|
|
178
|
-
* contact routing. You can also resolve customer issues more efficiently by getting customers in
|
|
179
|
-
* touch with the appropriate agents.</p>
|
|
180
|
-
* <p>There are limits to the number of Amazon Connect resources that you can create. There
|
|
181
|
-
* are also limits to the number of requests that you can make per second. For more information, see
|
|
182
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html">Amazon Connect Service Quotas</a> in the <i>Amazon Connect Administrator
|
|
183
|
-
* Guide</i>.</p>
|
|
184
|
-
* <p>You can connect programmatically to an Amazon Web Services service by using an endpoint. For
|
|
185
|
-
* a list of Amazon Connect endpoints, see <a href="https://docs.aws.amazon.com/general/latest/gr/connect_region.html">Amazon Connect Endpoints</a>.</p>
|
|
186
|
-
*/
|
|
187
|
-
export declare class Connect extends ConnectClient {
|
|
173
|
+
export interface Connect {
|
|
188
174
|
/**
|
|
189
|
-
* @
|
|
190
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
191
|
-
* <p>Associates an approved origin to an Amazon Connect instance.</p>
|
|
175
|
+
* @see {@link AssociateApprovedOriginCommand}
|
|
192
176
|
*/
|
|
193
177
|
associateApprovedOrigin(args: AssociateApprovedOriginCommandInput, options?: __HttpHandlerOptions): Promise<AssociateApprovedOriginCommandOutput>;
|
|
194
178
|
associateApprovedOrigin(args: AssociateApprovedOriginCommandInput, cb: (err: any, data?: AssociateApprovedOriginCommandOutput) => void): void;
|
|
195
179
|
associateApprovedOrigin(args: AssociateApprovedOriginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateApprovedOriginCommandOutput) => void): void;
|
|
196
180
|
/**
|
|
197
|
-
* @
|
|
198
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
199
|
-
* <p>Allows the specified Amazon Connect instance to access the specified Amazon Lex
|
|
200
|
-
* or Amazon Lex V2 bot.</p>
|
|
181
|
+
* @see {@link AssociateBotCommand}
|
|
201
182
|
*/
|
|
202
183
|
associateBot(args: AssociateBotCommandInput, options?: __HttpHandlerOptions): Promise<AssociateBotCommandOutput>;
|
|
203
184
|
associateBot(args: AssociateBotCommandInput, cb: (err: any, data?: AssociateBotCommandOutput) => void): void;
|
|
204
185
|
associateBot(args: AssociateBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateBotCommandOutput) => void): void;
|
|
205
186
|
/**
|
|
206
|
-
* @
|
|
207
|
-
* <p>Associates an existing vocabulary as the default. Contact Lens for Amazon Connect uses the vocabulary in post-call
|
|
208
|
-
* and real-time analysis sessions for the given language.</p>
|
|
187
|
+
* @see {@link AssociateDefaultVocabularyCommand}
|
|
209
188
|
*/
|
|
210
189
|
associateDefaultVocabulary(args: AssociateDefaultVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<AssociateDefaultVocabularyCommandOutput>;
|
|
211
190
|
associateDefaultVocabulary(args: AssociateDefaultVocabularyCommandInput, cb: (err: any, data?: AssociateDefaultVocabularyCommandOutput) => void): void;
|
|
212
191
|
associateDefaultVocabulary(args: AssociateDefaultVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateDefaultVocabularyCommandOutput) => void): void;
|
|
213
192
|
/**
|
|
214
|
-
* @
|
|
215
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
216
|
-
* <p>Associates a storage resource type for the first time. You can only associate one type of
|
|
217
|
-
* storage configuration in a single call. This means, for example, that you can't define an
|
|
218
|
-
* instance with multiple S3 buckets for storing chat transcripts.</p>
|
|
219
|
-
* <p>This API does not create a resource that doesn't exist. It only associates it to the
|
|
220
|
-
* instance. Ensure that the resource being specified in the storage configuration, like an S3
|
|
221
|
-
* bucket, exists when being used for association.</p>
|
|
193
|
+
* @see {@link AssociateInstanceStorageConfigCommand}
|
|
222
194
|
*/
|
|
223
195
|
associateInstanceStorageConfig(args: AssociateInstanceStorageConfigCommandInput, options?: __HttpHandlerOptions): Promise<AssociateInstanceStorageConfigCommandOutput>;
|
|
224
196
|
associateInstanceStorageConfig(args: AssociateInstanceStorageConfigCommandInput, cb: (err: any, data?: AssociateInstanceStorageConfigCommandOutput) => void): void;
|
|
225
197
|
associateInstanceStorageConfig(args: AssociateInstanceStorageConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateInstanceStorageConfigCommandOutput) => void): void;
|
|
226
198
|
/**
|
|
227
|
-
* @
|
|
228
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
229
|
-
* <p>Allows the specified Amazon Connect instance to access the specified Lambda
|
|
230
|
-
* function.</p>
|
|
199
|
+
* @see {@link AssociateLambdaFunctionCommand}
|
|
231
200
|
*/
|
|
232
201
|
associateLambdaFunction(args: AssociateLambdaFunctionCommandInput, options?: __HttpHandlerOptions): Promise<AssociateLambdaFunctionCommandOutput>;
|
|
233
202
|
associateLambdaFunction(args: AssociateLambdaFunctionCommandInput, cb: (err: any, data?: AssociateLambdaFunctionCommandOutput) => void): void;
|
|
234
203
|
associateLambdaFunction(args: AssociateLambdaFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateLambdaFunctionCommandOutput) => void): void;
|
|
235
204
|
/**
|
|
236
|
-
* @
|
|
237
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
238
|
-
* <p>Allows the specified Amazon Connect instance to access the specified Amazon Lex
|
|
239
|
-
* V1 bot. This API only supports the association of Amazon Lex V1 bots.</p>
|
|
205
|
+
* @see {@link AssociateLexBotCommand}
|
|
240
206
|
*/
|
|
241
207
|
associateLexBot(args: AssociateLexBotCommandInput, options?: __HttpHandlerOptions): Promise<AssociateLexBotCommandOutput>;
|
|
242
208
|
associateLexBot(args: AssociateLexBotCommandInput, cb: (err: any, data?: AssociateLexBotCommandOutput) => void): void;
|
|
243
209
|
associateLexBot(args: AssociateLexBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateLexBotCommandOutput) => void): void;
|
|
244
210
|
/**
|
|
245
|
-
* @
|
|
246
|
-
* <p>Associates a flow with a phone number claimed to your Amazon Connect instance.</p>
|
|
247
|
-
* <important>
|
|
248
|
-
* <p>If the number is claimed to a traffic distribution group, and you are calling this API using an instance in the
|
|
249
|
-
* Amazon Web Services Region where the traffic distribution group was created, you can use either a full phone number
|
|
250
|
-
* ARN or UUID value for the <code>PhoneNumberId</code> URI request parameter. However, if the
|
|
251
|
-
* number is claimed to a traffic distribution group and you are calling this API using an instance in the alternate
|
|
252
|
-
* Amazon Web Services Region associated with the traffic distribution group, you must provide a full phone number ARN.
|
|
253
|
-
* If a UUID is provided
|
|
254
|
-
* in
|
|
255
|
-
* this scenario, you will receive a
|
|
256
|
-
* <code>ResourceNotFoundException</code>.</p>
|
|
257
|
-
* </important>
|
|
211
|
+
* @see {@link AssociatePhoneNumberContactFlowCommand}
|
|
258
212
|
*/
|
|
259
213
|
associatePhoneNumberContactFlow(args: AssociatePhoneNumberContactFlowCommandInput, options?: __HttpHandlerOptions): Promise<AssociatePhoneNumberContactFlowCommandOutput>;
|
|
260
214
|
associatePhoneNumberContactFlow(args: AssociatePhoneNumberContactFlowCommandInput, cb: (err: any, data?: AssociatePhoneNumberContactFlowCommandOutput) => void): void;
|
|
261
215
|
associatePhoneNumberContactFlow(args: AssociatePhoneNumberContactFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociatePhoneNumberContactFlowCommandOutput) => void): void;
|
|
262
216
|
/**
|
|
263
|
-
* @
|
|
264
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
265
|
-
* <p>Associates a set of quick connects with a queue.</p>
|
|
217
|
+
* @see {@link AssociateQueueQuickConnectsCommand}
|
|
266
218
|
*/
|
|
267
219
|
associateQueueQuickConnects(args: AssociateQueueQuickConnectsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateQueueQuickConnectsCommandOutput>;
|
|
268
220
|
associateQueueQuickConnects(args: AssociateQueueQuickConnectsCommandInput, cb: (err: any, data?: AssociateQueueQuickConnectsCommandOutput) => void): void;
|
|
269
221
|
associateQueueQuickConnects(args: AssociateQueueQuickConnectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateQueueQuickConnectsCommandOutput) => void): void;
|
|
270
222
|
/**
|
|
271
|
-
* @
|
|
272
|
-
* <p>Associates a set of queues with a routing profile.</p>
|
|
223
|
+
* @see {@link AssociateRoutingProfileQueuesCommand}
|
|
273
224
|
*/
|
|
274
225
|
associateRoutingProfileQueues(args: AssociateRoutingProfileQueuesCommandInput, options?: __HttpHandlerOptions): Promise<AssociateRoutingProfileQueuesCommandOutput>;
|
|
275
226
|
associateRoutingProfileQueues(args: AssociateRoutingProfileQueuesCommandInput, cb: (err: any, data?: AssociateRoutingProfileQueuesCommandOutput) => void): void;
|
|
276
227
|
associateRoutingProfileQueues(args: AssociateRoutingProfileQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateRoutingProfileQueuesCommandOutput) => void): void;
|
|
277
228
|
/**
|
|
278
|
-
* @
|
|
279
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
280
|
-
* <p>Associates a security key to the instance.</p>
|
|
229
|
+
* @see {@link AssociateSecurityKeyCommand}
|
|
281
230
|
*/
|
|
282
231
|
associateSecurityKey(args: AssociateSecurityKeyCommandInput, options?: __HttpHandlerOptions): Promise<AssociateSecurityKeyCommandOutput>;
|
|
283
232
|
associateSecurityKey(args: AssociateSecurityKeyCommandInput, cb: (err: any, data?: AssociateSecurityKeyCommandOutput) => void): void;
|
|
284
233
|
associateSecurityKey(args: AssociateSecurityKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateSecurityKeyCommandOutput) => void): void;
|
|
285
234
|
/**
|
|
286
|
-
* @
|
|
287
|
-
* <p>Claims an available phone number to your Amazon Connect instance or traffic distribution
|
|
288
|
-
* group. You can call this API only in the same Amazon Web Services Region where the Amazon Connect instance or traffic distribution group was created.</p>
|
|
289
|
-
* <p>For more information about how to use this operation, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/claim-phone-number.html">Claim a phone number in your
|
|
290
|
-
* country</a> and <a href="https://docs.aws.amazon.com/connect/latest/adminguide/claim-phone-numbers-traffic-distribution-groups.html">Claim phone
|
|
291
|
-
* numbers to traffic distribution groups</a> in the <i>Amazon Connect Administrator
|
|
292
|
-
* Guide</i>. </p>
|
|
293
|
-
* <important>
|
|
294
|
-
* <p>You can call the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_SearchAvailablePhoneNumbers.html">SearchAvailablePhoneNumbers</a> API for available phone numbers that you can claim. Call
|
|
295
|
-
* the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribePhoneNumber.html">DescribePhoneNumber</a> API to verify the status of a previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_ClaimPhoneNumber.html">ClaimPhoneNumber</a>
|
|
296
|
-
* operation.</p>
|
|
297
|
-
* </important>
|
|
235
|
+
* @see {@link ClaimPhoneNumberCommand}
|
|
298
236
|
*/
|
|
299
237
|
claimPhoneNumber(args: ClaimPhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<ClaimPhoneNumberCommandOutput>;
|
|
300
238
|
claimPhoneNumber(args: ClaimPhoneNumberCommandInput, cb: (err: any, data?: ClaimPhoneNumberCommandOutput) => void): void;
|
|
301
239
|
claimPhoneNumber(args: ClaimPhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ClaimPhoneNumberCommandOutput) => void): void;
|
|
302
240
|
/**
|
|
303
|
-
* @
|
|
304
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
305
|
-
* <p>Creates an agent status for the specified Amazon Connect instance.</p>
|
|
241
|
+
* @see {@link CreateAgentStatusCommand}
|
|
306
242
|
*/
|
|
307
243
|
createAgentStatus(args: CreateAgentStatusCommandInput, options?: __HttpHandlerOptions): Promise<CreateAgentStatusCommandOutput>;
|
|
308
244
|
createAgentStatus(args: CreateAgentStatusCommandInput, cb: (err: any, data?: CreateAgentStatusCommandOutput) => void): void;
|
|
309
245
|
createAgentStatus(args: CreateAgentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAgentStatusCommandOutput) => void): void;
|
|
310
246
|
/**
|
|
311
|
-
* @
|
|
312
|
-
* <p>Creates a flow for the specified Amazon Connect instance.</p>
|
|
313
|
-
* <p>You can also create and update flows using the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/flow-language.html">Amazon Connect
|
|
314
|
-
* Flow language</a>.</p>
|
|
247
|
+
* @see {@link CreateContactFlowCommand}
|
|
315
248
|
*/
|
|
316
249
|
createContactFlow(args: CreateContactFlowCommandInput, options?: __HttpHandlerOptions): Promise<CreateContactFlowCommandOutput>;
|
|
317
250
|
createContactFlow(args: CreateContactFlowCommandInput, cb: (err: any, data?: CreateContactFlowCommandOutput) => void): void;
|
|
318
251
|
createContactFlow(args: CreateContactFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContactFlowCommandOutput) => void): void;
|
|
319
252
|
/**
|
|
320
|
-
* @
|
|
321
|
-
* <p>Creates a flow module for the specified Amazon Connect instance. </p>
|
|
253
|
+
* @see {@link CreateContactFlowModuleCommand}
|
|
322
254
|
*/
|
|
323
255
|
createContactFlowModule(args: CreateContactFlowModuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateContactFlowModuleCommandOutput>;
|
|
324
256
|
createContactFlowModule(args: CreateContactFlowModuleCommandInput, cb: (err: any, data?: CreateContactFlowModuleCommandOutput) => void): void;
|
|
325
257
|
createContactFlowModule(args: CreateContactFlowModuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContactFlowModuleCommandOutput) => void): void;
|
|
326
258
|
/**
|
|
327
|
-
* @
|
|
328
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
329
|
-
* <p>Creates hours of operation. </p>
|
|
259
|
+
* @see {@link CreateHoursOfOperationCommand}
|
|
330
260
|
*/
|
|
331
261
|
createHoursOfOperation(args: CreateHoursOfOperationCommandInput, options?: __HttpHandlerOptions): Promise<CreateHoursOfOperationCommandOutput>;
|
|
332
262
|
createHoursOfOperation(args: CreateHoursOfOperationCommandInput, cb: (err: any, data?: CreateHoursOfOperationCommandOutput) => void): void;
|
|
333
263
|
createHoursOfOperation(args: CreateHoursOfOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHoursOfOperationCommandOutput) => void): void;
|
|
334
264
|
/**
|
|
335
|
-
* @
|
|
336
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
337
|
-
* <p>Initiates an Amazon Connect instance with all the supported channels enabled. It does
|
|
338
|
-
* not attach any storage, such as Amazon Simple Storage Service (Amazon S3) or Amazon Kinesis. It
|
|
339
|
-
* also does not allow for any configurations on features, such as Contact Lens for Amazon Connect. </p>
|
|
340
|
-
* <p>Amazon Connect enforces a limit on the total number of instances that you can create or delete in 30 days.
|
|
341
|
-
* If you exceed this limit, you will get an error message indicating there has been an excessive number of attempts at creating or deleting instances.
|
|
342
|
-
* You must wait 30 days before you can restart creating and deleting instances in your account.</p>
|
|
265
|
+
* @see {@link CreateInstanceCommand}
|
|
343
266
|
*/
|
|
344
267
|
createInstance(args: CreateInstanceCommandInput, options?: __HttpHandlerOptions): Promise<CreateInstanceCommandOutput>;
|
|
345
268
|
createInstance(args: CreateInstanceCommandInput, cb: (err: any, data?: CreateInstanceCommandOutput) => void): void;
|
|
346
269
|
createInstance(args: CreateInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInstanceCommandOutput) => void): void;
|
|
347
270
|
/**
|
|
348
|
-
* @
|
|
349
|
-
* <p>Creates an Amazon Web Services resource association with an Amazon Connect
|
|
350
|
-
* instance.</p>
|
|
271
|
+
* @see {@link CreateIntegrationAssociationCommand}
|
|
351
272
|
*/
|
|
352
273
|
createIntegrationAssociation(args: CreateIntegrationAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateIntegrationAssociationCommandOutput>;
|
|
353
274
|
createIntegrationAssociation(args: CreateIntegrationAssociationCommandInput, cb: (err: any, data?: CreateIntegrationAssociationCommandOutput) => void): void;
|
|
354
275
|
createIntegrationAssociation(args: CreateIntegrationAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIntegrationAssociationCommandOutput) => void): void;
|
|
355
276
|
/**
|
|
356
|
-
* @
|
|
357
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
358
|
-
* <p>Creates a new queue for the specified Amazon Connect instance.</p>
|
|
359
|
-
* <important>
|
|
360
|
-
* <p>If the number being used in the input is claimed to a traffic distribution group, and you are calling this API
|
|
361
|
-
* using an instance in the Amazon Web Services Region where the traffic distribution group was created, you can use
|
|
362
|
-
* either a full phone number ARN or UUID value for the <code>OutboundCallerIdNumberId</code> value
|
|
363
|
-
* of the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_OutboundCallerConfig">OutboundCallerConfig</a> request body parameter. However, if the number is claimed to a
|
|
364
|
-
* traffic distribution group and you are calling this API using an instance in the alternate Amazon Web Services Region
|
|
365
|
-
* associated with the traffic distribution group, you must provide a full phone number ARN. If a UUID is provided
|
|
366
|
-
* in
|
|
367
|
-
* this scenario, you will receive a
|
|
368
|
-
* <code>ResourceNotFoundException</code>.</p>
|
|
369
|
-
* </important>
|
|
277
|
+
* @see {@link CreateQueueCommand}
|
|
370
278
|
*/
|
|
371
279
|
createQueue(args: CreateQueueCommandInput, options?: __HttpHandlerOptions): Promise<CreateQueueCommandOutput>;
|
|
372
280
|
createQueue(args: CreateQueueCommandInput, cb: (err: any, data?: CreateQueueCommandOutput) => void): void;
|
|
373
281
|
createQueue(args: CreateQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQueueCommandOutput) => void): void;
|
|
374
282
|
/**
|
|
375
|
-
* @
|
|
376
|
-
* <p>Creates a quick connect for the specified Amazon Connect instance.</p>
|
|
283
|
+
* @see {@link CreateQuickConnectCommand}
|
|
377
284
|
*/
|
|
378
285
|
createQuickConnect(args: CreateQuickConnectCommandInput, options?: __HttpHandlerOptions): Promise<CreateQuickConnectCommandOutput>;
|
|
379
286
|
createQuickConnect(args: CreateQuickConnectCommandInput, cb: (err: any, data?: CreateQuickConnectCommandOutput) => void): void;
|
|
380
287
|
createQuickConnect(args: CreateQuickConnectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQuickConnectCommandOutput) => void): void;
|
|
381
288
|
/**
|
|
382
|
-
* @
|
|
383
|
-
* <p>Creates a new routing profile.</p>
|
|
289
|
+
* @see {@link CreateRoutingProfileCommand}
|
|
384
290
|
*/
|
|
385
291
|
createRoutingProfile(args: CreateRoutingProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateRoutingProfileCommandOutput>;
|
|
386
292
|
createRoutingProfile(args: CreateRoutingProfileCommandInput, cb: (err: any, data?: CreateRoutingProfileCommandOutput) => void): void;
|
|
387
293
|
createRoutingProfile(args: CreateRoutingProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRoutingProfileCommandOutput) => void): void;
|
|
388
294
|
/**
|
|
389
|
-
* @
|
|
390
|
-
* <p>Creates a rule for the specified Amazon Connect instance.</p>
|
|
391
|
-
* <p>Use the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/connect-rules-language.html">Rules Function language</a> to
|
|
392
|
-
* code conditions for the rule. </p>
|
|
295
|
+
* @see {@link CreateRuleCommand}
|
|
393
296
|
*/
|
|
394
297
|
createRule(args: CreateRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateRuleCommandOutput>;
|
|
395
298
|
createRule(args: CreateRuleCommandInput, cb: (err: any, data?: CreateRuleCommandOutput) => void): void;
|
|
396
299
|
createRule(args: CreateRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRuleCommandOutput) => void): void;
|
|
397
300
|
/**
|
|
398
|
-
* @
|
|
399
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
400
|
-
* <p>Creates a security profile.</p>
|
|
301
|
+
* @see {@link CreateSecurityProfileCommand}
|
|
401
302
|
*/
|
|
402
303
|
createSecurityProfile(args: CreateSecurityProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateSecurityProfileCommandOutput>;
|
|
403
304
|
createSecurityProfile(args: CreateSecurityProfileCommandInput, cb: (err: any, data?: CreateSecurityProfileCommandOutput) => void): void;
|
|
404
305
|
createSecurityProfile(args: CreateSecurityProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSecurityProfileCommandOutput) => void): void;
|
|
405
306
|
/**
|
|
406
|
-
* @
|
|
407
|
-
* <p>Creates a new task template in the specified Amazon Connect instance.</p>
|
|
307
|
+
* @see {@link CreateTaskTemplateCommand}
|
|
408
308
|
*/
|
|
409
309
|
createTaskTemplate(args: CreateTaskTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateTaskTemplateCommandOutput>;
|
|
410
310
|
createTaskTemplate(args: CreateTaskTemplateCommandInput, cb: (err: any, data?: CreateTaskTemplateCommandOutput) => void): void;
|
|
411
311
|
createTaskTemplate(args: CreateTaskTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTaskTemplateCommandOutput) => void): void;
|
|
412
312
|
/**
|
|
413
|
-
* @
|
|
414
|
-
* <p>Creates a traffic distribution group given an Amazon Connect instance that has been replicated. </p>
|
|
415
|
-
* <p>For more information about creating traffic distribution groups, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/setup-traffic-distribution-groups.html">Set up traffic distribution groups</a> in
|
|
416
|
-
* the <i>Amazon Connect Administrator Guide</i>. </p>
|
|
313
|
+
* @see {@link CreateTrafficDistributionGroupCommand}
|
|
417
314
|
*/
|
|
418
315
|
createTrafficDistributionGroup(args: CreateTrafficDistributionGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrafficDistributionGroupCommandOutput>;
|
|
419
316
|
createTrafficDistributionGroup(args: CreateTrafficDistributionGroupCommandInput, cb: (err: any, data?: CreateTrafficDistributionGroupCommandOutput) => void): void;
|
|
420
317
|
createTrafficDistributionGroup(args: CreateTrafficDistributionGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrafficDistributionGroupCommandOutput) => void): void;
|
|
421
318
|
/**
|
|
422
|
-
* @
|
|
423
|
-
* <p>Creates a use case for an integration association.</p>
|
|
319
|
+
* @see {@link CreateUseCaseCommand}
|
|
424
320
|
*/
|
|
425
321
|
createUseCase(args: CreateUseCaseCommandInput, options?: __HttpHandlerOptions): Promise<CreateUseCaseCommandOutput>;
|
|
426
322
|
createUseCase(args: CreateUseCaseCommandInput, cb: (err: any, data?: CreateUseCaseCommandOutput) => void): void;
|
|
427
323
|
createUseCase(args: CreateUseCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUseCaseCommandOutput) => void): void;
|
|
428
324
|
/**
|
|
429
|
-
* @
|
|
430
|
-
* <p>Creates a user account for the specified Amazon Connect instance.</p>
|
|
431
|
-
* <p>For information about how to create user accounts using the Amazon Connect console, see
|
|
432
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/user-management.html">Add
|
|
433
|
-
* Users</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
325
|
+
* @see {@link CreateUserCommand}
|
|
434
326
|
*/
|
|
435
327
|
createUser(args: CreateUserCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserCommandOutput>;
|
|
436
328
|
createUser(args: CreateUserCommandInput, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
|
|
437
329
|
createUser(args: CreateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
|
|
438
330
|
/**
|
|
439
|
-
* @
|
|
440
|
-
* <p>Creates a new user hierarchy group.</p>
|
|
331
|
+
* @see {@link CreateUserHierarchyGroupCommand}
|
|
441
332
|
*/
|
|
442
333
|
createUserHierarchyGroup(args: CreateUserHierarchyGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserHierarchyGroupCommandOutput>;
|
|
443
334
|
createUserHierarchyGroup(args: CreateUserHierarchyGroupCommandInput, cb: (err: any, data?: CreateUserHierarchyGroupCommandOutput) => void): void;
|
|
444
335
|
createUserHierarchyGroup(args: CreateUserHierarchyGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserHierarchyGroupCommandOutput) => void): void;
|
|
445
336
|
/**
|
|
446
|
-
* @
|
|
447
|
-
* <p>Creates a custom vocabulary associated with your Amazon Connect instance. You can set a
|
|
448
|
-
* custom vocabulary to be your default vocabulary for a given language. Contact Lens for Amazon Connect uses the default
|
|
449
|
-
* vocabulary in post-call and real-time contact analysis sessions for that language.</p>
|
|
337
|
+
* @see {@link CreateVocabularyCommand}
|
|
450
338
|
*/
|
|
451
339
|
createVocabulary(args: CreateVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<CreateVocabularyCommandOutput>;
|
|
452
340
|
createVocabulary(args: CreateVocabularyCommandInput, cb: (err: any, data?: CreateVocabularyCommandOutput) => void): void;
|
|
453
341
|
createVocabulary(args: CreateVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVocabularyCommandOutput) => void): void;
|
|
454
342
|
/**
|
|
455
|
-
* @
|
|
456
|
-
* <p>Deletes a flow for the specified Amazon Connect instance.</p>
|
|
343
|
+
* @see {@link DeleteContactFlowCommand}
|
|
457
344
|
*/
|
|
458
345
|
deleteContactFlow(args: DeleteContactFlowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContactFlowCommandOutput>;
|
|
459
346
|
deleteContactFlow(args: DeleteContactFlowCommandInput, cb: (err: any, data?: DeleteContactFlowCommandOutput) => void): void;
|
|
460
347
|
deleteContactFlow(args: DeleteContactFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContactFlowCommandOutput) => void): void;
|
|
461
348
|
/**
|
|
462
|
-
* @
|
|
463
|
-
* <p>Deletes the specified flow module.</p>
|
|
349
|
+
* @see {@link DeleteContactFlowModuleCommand}
|
|
464
350
|
*/
|
|
465
351
|
deleteContactFlowModule(args: DeleteContactFlowModuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContactFlowModuleCommandOutput>;
|
|
466
352
|
deleteContactFlowModule(args: DeleteContactFlowModuleCommandInput, cb: (err: any, data?: DeleteContactFlowModuleCommandOutput) => void): void;
|
|
467
353
|
deleteContactFlowModule(args: DeleteContactFlowModuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContactFlowModuleCommandOutput) => void): void;
|
|
468
354
|
/**
|
|
469
|
-
* @
|
|
470
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
471
|
-
* <p>Deletes an hours of operation.</p>
|
|
355
|
+
* @see {@link DeleteHoursOfOperationCommand}
|
|
472
356
|
*/
|
|
473
357
|
deleteHoursOfOperation(args: DeleteHoursOfOperationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHoursOfOperationCommandOutput>;
|
|
474
358
|
deleteHoursOfOperation(args: DeleteHoursOfOperationCommandInput, cb: (err: any, data?: DeleteHoursOfOperationCommandOutput) => void): void;
|
|
475
359
|
deleteHoursOfOperation(args: DeleteHoursOfOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHoursOfOperationCommandOutput) => void): void;
|
|
476
360
|
/**
|
|
477
|
-
* @
|
|
478
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
479
|
-
* <p>Deletes the Amazon Connect instance.</p>
|
|
480
|
-
* <p>Amazon Connect enforces a limit on the total number of instances that you can create or delete in 30 days.
|
|
481
|
-
* If you exceed this limit, you will get an error message indicating there has been an excessive number of attempts at creating or deleting instances.
|
|
482
|
-
* You must wait 30 days before you can restart creating and deleting instances in your account.</p>
|
|
361
|
+
* @see {@link DeleteInstanceCommand}
|
|
483
362
|
*/
|
|
484
363
|
deleteInstance(args: DeleteInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteInstanceCommandOutput>;
|
|
485
364
|
deleteInstance(args: DeleteInstanceCommandInput, cb: (err: any, data?: DeleteInstanceCommandOutput) => void): void;
|
|
486
365
|
deleteInstance(args: DeleteInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInstanceCommandOutput) => void): void;
|
|
487
366
|
/**
|
|
488
|
-
* @
|
|
489
|
-
* <p>Deletes an Amazon Web Services resource association from an Amazon Connect instance. The
|
|
490
|
-
* association must not have any use cases associated with it.</p>
|
|
367
|
+
* @see {@link DeleteIntegrationAssociationCommand}
|
|
491
368
|
*/
|
|
492
369
|
deleteIntegrationAssociation(args: DeleteIntegrationAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIntegrationAssociationCommandOutput>;
|
|
493
370
|
deleteIntegrationAssociation(args: DeleteIntegrationAssociationCommandInput, cb: (err: any, data?: DeleteIntegrationAssociationCommandOutput) => void): void;
|
|
494
371
|
deleteIntegrationAssociation(args: DeleteIntegrationAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIntegrationAssociationCommandOutput) => void): void;
|
|
495
372
|
/**
|
|
496
|
-
* @
|
|
497
|
-
* <p>Deletes a quick connect.</p>
|
|
373
|
+
* @see {@link DeleteQuickConnectCommand}
|
|
498
374
|
*/
|
|
499
375
|
deleteQuickConnect(args: DeleteQuickConnectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQuickConnectCommandOutput>;
|
|
500
376
|
deleteQuickConnect(args: DeleteQuickConnectCommandInput, cb: (err: any, data?: DeleteQuickConnectCommandOutput) => void): void;
|
|
501
377
|
deleteQuickConnect(args: DeleteQuickConnectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQuickConnectCommandOutput) => void): void;
|
|
502
378
|
/**
|
|
503
|
-
* @
|
|
504
|
-
* <p>Deletes a rule for the specified Amazon Connect instance.</p>
|
|
379
|
+
* @see {@link DeleteRuleCommand}
|
|
505
380
|
*/
|
|
506
381
|
deleteRule(args: DeleteRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRuleCommandOutput>;
|
|
507
382
|
deleteRule(args: DeleteRuleCommandInput, cb: (err: any, data?: DeleteRuleCommandOutput) => void): void;
|
|
508
383
|
deleteRule(args: DeleteRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRuleCommandOutput) => void): void;
|
|
509
384
|
/**
|
|
510
|
-
* @
|
|
511
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
512
|
-
* <p>Deletes a security profile.</p>
|
|
385
|
+
* @see {@link DeleteSecurityProfileCommand}
|
|
513
386
|
*/
|
|
514
387
|
deleteSecurityProfile(args: DeleteSecurityProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSecurityProfileCommandOutput>;
|
|
515
388
|
deleteSecurityProfile(args: DeleteSecurityProfileCommandInput, cb: (err: any, data?: DeleteSecurityProfileCommandOutput) => void): void;
|
|
516
389
|
deleteSecurityProfile(args: DeleteSecurityProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSecurityProfileCommandOutput) => void): void;
|
|
517
390
|
/**
|
|
518
|
-
* @
|
|
519
|
-
* <p>Deletes the task template.</p>
|
|
391
|
+
* @see {@link DeleteTaskTemplateCommand}
|
|
520
392
|
*/
|
|
521
393
|
deleteTaskTemplate(args: DeleteTaskTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTaskTemplateCommandOutput>;
|
|
522
394
|
deleteTaskTemplate(args: DeleteTaskTemplateCommandInput, cb: (err: any, data?: DeleteTaskTemplateCommandOutput) => void): void;
|
|
523
395
|
deleteTaskTemplate(args: DeleteTaskTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTaskTemplateCommandOutput) => void): void;
|
|
524
396
|
/**
|
|
525
|
-
* @
|
|
526
|
-
* <p>Deletes a traffic distribution group. This API can be called only in the Region where the traffic distribution group is
|
|
527
|
-
* created.</p>
|
|
528
|
-
* <p>For more information about deleting traffic distribution groups, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/delete-traffic-distribution-groups.html">Delete traffic distribution groups</a> in
|
|
529
|
-
* the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
397
|
+
* @see {@link DeleteTrafficDistributionGroupCommand}
|
|
530
398
|
*/
|
|
531
399
|
deleteTrafficDistributionGroup(args: DeleteTrafficDistributionGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrafficDistributionGroupCommandOutput>;
|
|
532
400
|
deleteTrafficDistributionGroup(args: DeleteTrafficDistributionGroupCommandInput, cb: (err: any, data?: DeleteTrafficDistributionGroupCommandOutput) => void): void;
|
|
533
401
|
deleteTrafficDistributionGroup(args: DeleteTrafficDistributionGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrafficDistributionGroupCommandOutput) => void): void;
|
|
534
402
|
/**
|
|
535
|
-
* @
|
|
536
|
-
* <p>Deletes a use case from an integration association.</p>
|
|
403
|
+
* @see {@link DeleteUseCaseCommand}
|
|
537
404
|
*/
|
|
538
405
|
deleteUseCase(args: DeleteUseCaseCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUseCaseCommandOutput>;
|
|
539
406
|
deleteUseCase(args: DeleteUseCaseCommandInput, cb: (err: any, data?: DeleteUseCaseCommandOutput) => void): void;
|
|
540
407
|
deleteUseCase(args: DeleteUseCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUseCaseCommandOutput) => void): void;
|
|
541
408
|
/**
|
|
542
|
-
* @
|
|
543
|
-
* <p>Deletes a user account from the specified Amazon Connect instance.</p>
|
|
544
|
-
* <p>For information about what happens to a user's data when their account is deleted, see
|
|
545
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/delete-users.html">Delete Users from
|
|
546
|
-
* Your Amazon Connect Instance</a> in the <i>Amazon Connect Administrator
|
|
547
|
-
* Guide</i>.</p>
|
|
409
|
+
* @see {@link DeleteUserCommand}
|
|
548
410
|
*/
|
|
549
411
|
deleteUser(args: DeleteUserCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserCommandOutput>;
|
|
550
412
|
deleteUser(args: DeleteUserCommandInput, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
|
|
551
413
|
deleteUser(args: DeleteUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
|
|
552
414
|
/**
|
|
553
|
-
* @
|
|
554
|
-
* <p>Deletes an existing user hierarchy group. It must not be associated with any agents or have
|
|
555
|
-
* any active child groups.</p>
|
|
415
|
+
* @see {@link DeleteUserHierarchyGroupCommand}
|
|
556
416
|
*/
|
|
557
417
|
deleteUserHierarchyGroup(args: DeleteUserHierarchyGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserHierarchyGroupCommandOutput>;
|
|
558
418
|
deleteUserHierarchyGroup(args: DeleteUserHierarchyGroupCommandInput, cb: (err: any, data?: DeleteUserHierarchyGroupCommandOutput) => void): void;
|
|
559
419
|
deleteUserHierarchyGroup(args: DeleteUserHierarchyGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserHierarchyGroupCommandOutput) => void): void;
|
|
560
420
|
/**
|
|
561
|
-
* @
|
|
562
|
-
* <p>Deletes the vocabulary that has the given identifier.</p>
|
|
421
|
+
* @see {@link DeleteVocabularyCommand}
|
|
563
422
|
*/
|
|
564
423
|
deleteVocabulary(args: DeleteVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVocabularyCommandOutput>;
|
|
565
424
|
deleteVocabulary(args: DeleteVocabularyCommandInput, cb: (err: any, data?: DeleteVocabularyCommandOutput) => void): void;
|
|
566
425
|
deleteVocabulary(args: DeleteVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVocabularyCommandOutput) => void): void;
|
|
567
426
|
/**
|
|
568
|
-
* @
|
|
569
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
570
|
-
* <p>Describes an agent status.</p>
|
|
427
|
+
* @see {@link DescribeAgentStatusCommand}
|
|
571
428
|
*/
|
|
572
429
|
describeAgentStatus(args: DescribeAgentStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAgentStatusCommandOutput>;
|
|
573
430
|
describeAgentStatus(args: DescribeAgentStatusCommandInput, cb: (err: any, data?: DescribeAgentStatusCommandOutput) => void): void;
|
|
574
431
|
describeAgentStatus(args: DescribeAgentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAgentStatusCommandOutput) => void): void;
|
|
575
432
|
/**
|
|
576
|
-
* @
|
|
577
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
578
|
-
* <p>Describes the specified contact. </p>
|
|
579
|
-
* <important>
|
|
580
|
-
* <p>Contact information remains available in Amazon Connect for 24 months, and then it is
|
|
581
|
-
* deleted.</p>
|
|
582
|
-
* <p>Only data from November 12, 2021, and later is returned by this
|
|
583
|
-
* API.</p>
|
|
584
|
-
* </important>
|
|
433
|
+
* @see {@link DescribeContactCommand}
|
|
585
434
|
*/
|
|
586
435
|
describeContact(args: DescribeContactCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContactCommandOutput>;
|
|
587
436
|
describeContact(args: DescribeContactCommandInput, cb: (err: any, data?: DescribeContactCommandOutput) => void): void;
|
|
588
437
|
describeContact(args: DescribeContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContactCommandOutput) => void): void;
|
|
589
438
|
/**
|
|
590
|
-
* @
|
|
591
|
-
* <p>Describes the specified flow.</p>
|
|
592
|
-
* <p>You can also create and update flows using the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/flow-language.html">Amazon Connect
|
|
593
|
-
* Flow language</a>.</p>
|
|
439
|
+
* @see {@link DescribeContactFlowCommand}
|
|
594
440
|
*/
|
|
595
441
|
describeContactFlow(args: DescribeContactFlowCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContactFlowCommandOutput>;
|
|
596
442
|
describeContactFlow(args: DescribeContactFlowCommandInput, cb: (err: any, data?: DescribeContactFlowCommandOutput) => void): void;
|
|
597
443
|
describeContactFlow(args: DescribeContactFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContactFlowCommandOutput) => void): void;
|
|
598
444
|
/**
|
|
599
|
-
* @
|
|
600
|
-
* <p>Describes the specified flow module.</p>
|
|
445
|
+
* @see {@link DescribeContactFlowModuleCommand}
|
|
601
446
|
*/
|
|
602
447
|
describeContactFlowModule(args: DescribeContactFlowModuleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContactFlowModuleCommandOutput>;
|
|
603
448
|
describeContactFlowModule(args: DescribeContactFlowModuleCommandInput, cb: (err: any, data?: DescribeContactFlowModuleCommandOutput) => void): void;
|
|
604
449
|
describeContactFlowModule(args: DescribeContactFlowModuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContactFlowModuleCommandOutput) => void): void;
|
|
605
450
|
/**
|
|
606
|
-
* @
|
|
607
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
608
|
-
* <p>Describes the hours of operation.</p>
|
|
451
|
+
* @see {@link DescribeHoursOfOperationCommand}
|
|
609
452
|
*/
|
|
610
453
|
describeHoursOfOperation(args: DescribeHoursOfOperationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHoursOfOperationCommandOutput>;
|
|
611
454
|
describeHoursOfOperation(args: DescribeHoursOfOperationCommandInput, cb: (err: any, data?: DescribeHoursOfOperationCommandOutput) => void): void;
|
|
612
455
|
describeHoursOfOperation(args: DescribeHoursOfOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHoursOfOperationCommandOutput) => void): void;
|
|
613
456
|
/**
|
|
614
|
-
* @
|
|
615
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
616
|
-
* <p>Returns the current state of the specified instance identifier. It tracks the instance while
|
|
617
|
-
* it is being created and returns an error status, if applicable. </p>
|
|
618
|
-
* <p>If an instance is not created successfully, the instance status reason field returns details
|
|
619
|
-
* relevant to the reason. The instance in a failed state is returned only for 24 hours after the
|
|
620
|
-
* CreateInstance API was invoked.</p>
|
|
457
|
+
* @see {@link DescribeInstanceCommand}
|
|
621
458
|
*/
|
|
622
459
|
describeInstance(args: DescribeInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceCommandOutput>;
|
|
623
460
|
describeInstance(args: DescribeInstanceCommandInput, cb: (err: any, data?: DescribeInstanceCommandOutput) => void): void;
|
|
624
461
|
describeInstance(args: DescribeInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceCommandOutput) => void): void;
|
|
625
462
|
/**
|
|
626
|
-
* @
|
|
627
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
628
|
-
* <p>Describes the specified instance attribute.</p>
|
|
463
|
+
* @see {@link DescribeInstanceAttributeCommand}
|
|
629
464
|
*/
|
|
630
465
|
describeInstanceAttribute(args: DescribeInstanceAttributeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceAttributeCommandOutput>;
|
|
631
466
|
describeInstanceAttribute(args: DescribeInstanceAttributeCommandInput, cb: (err: any, data?: DescribeInstanceAttributeCommandOutput) => void): void;
|
|
632
467
|
describeInstanceAttribute(args: DescribeInstanceAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceAttributeCommandOutput) => void): void;
|
|
633
468
|
/**
|
|
634
|
-
* @
|
|
635
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
636
|
-
* <p>Retrieves the current storage configurations for the specified resource type, association
|
|
637
|
-
* ID, and instance ID.</p>
|
|
469
|
+
* @see {@link DescribeInstanceStorageConfigCommand}
|
|
638
470
|
*/
|
|
639
471
|
describeInstanceStorageConfig(args: DescribeInstanceStorageConfigCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceStorageConfigCommandOutput>;
|
|
640
472
|
describeInstanceStorageConfig(args: DescribeInstanceStorageConfigCommandInput, cb: (err: any, data?: DescribeInstanceStorageConfigCommandOutput) => void): void;
|
|
641
473
|
describeInstanceStorageConfig(args: DescribeInstanceStorageConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceStorageConfigCommandOutput) => void): void;
|
|
642
474
|
/**
|
|
643
|
-
* @
|
|
644
|
-
* <p>Gets details and status of a phone number that’s claimed to your Amazon Connect instance
|
|
645
|
-
* or traffic distribution group.</p>
|
|
646
|
-
* <important>
|
|
647
|
-
* <p>If the number is claimed to a traffic distribution group, and you are calling in the Amazon Web Services Region
|
|
648
|
-
* where the traffic distribution group was created, you can use either a phone number ARN or UUID value for the
|
|
649
|
-
* <code>PhoneNumberId</code> URI request parameter. However, if the number is claimed to a traffic distribution group
|
|
650
|
-
* and you are calling this API in the alternate Amazon Web Services Region associated with the
|
|
651
|
-
* traffic distribution group, you must provide a full phone number ARN. If a UUID is provided
|
|
652
|
-
* in
|
|
653
|
-
* this scenario, you will receive a
|
|
654
|
-
* <code>ResourceNotFoundException</code>.</p>
|
|
655
|
-
* </important>
|
|
475
|
+
* @see {@link DescribePhoneNumberCommand}
|
|
656
476
|
*/
|
|
657
477
|
describePhoneNumber(args: DescribePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<DescribePhoneNumberCommandOutput>;
|
|
658
478
|
describePhoneNumber(args: DescribePhoneNumberCommandInput, cb: (err: any, data?: DescribePhoneNumberCommandOutput) => void): void;
|
|
659
479
|
describePhoneNumber(args: DescribePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePhoneNumberCommandOutput) => void): void;
|
|
660
480
|
/**
|
|
661
|
-
* @
|
|
662
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
663
|
-
* <p>Describes the specified queue.</p>
|
|
481
|
+
* @see {@link DescribeQueueCommand}
|
|
664
482
|
*/
|
|
665
483
|
describeQueue(args: DescribeQueueCommandInput, options?: __HttpHandlerOptions): Promise<DescribeQueueCommandOutput>;
|
|
666
484
|
describeQueue(args: DescribeQueueCommandInput, cb: (err: any, data?: DescribeQueueCommandOutput) => void): void;
|
|
667
485
|
describeQueue(args: DescribeQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeQueueCommandOutput) => void): void;
|
|
668
486
|
/**
|
|
669
|
-
* @
|
|
670
|
-
* <p>Describes the quick connect.</p>
|
|
487
|
+
* @see {@link DescribeQuickConnectCommand}
|
|
671
488
|
*/
|
|
672
489
|
describeQuickConnect(args: DescribeQuickConnectCommandInput, options?: __HttpHandlerOptions): Promise<DescribeQuickConnectCommandOutput>;
|
|
673
490
|
describeQuickConnect(args: DescribeQuickConnectCommandInput, cb: (err: any, data?: DescribeQuickConnectCommandOutput) => void): void;
|
|
674
491
|
describeQuickConnect(args: DescribeQuickConnectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeQuickConnectCommandOutput) => void): void;
|
|
675
492
|
/**
|
|
676
|
-
* @
|
|
677
|
-
* <p>Describes the specified routing profile.</p>
|
|
493
|
+
* @see {@link DescribeRoutingProfileCommand}
|
|
678
494
|
*/
|
|
679
495
|
describeRoutingProfile(args: DescribeRoutingProfileCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRoutingProfileCommandOutput>;
|
|
680
496
|
describeRoutingProfile(args: DescribeRoutingProfileCommandInput, cb: (err: any, data?: DescribeRoutingProfileCommandOutput) => void): void;
|
|
681
497
|
describeRoutingProfile(args: DescribeRoutingProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRoutingProfileCommandOutput) => void): void;
|
|
682
498
|
/**
|
|
683
|
-
* @
|
|
684
|
-
* <p>Describes a rule for the specified Amazon Connect instance.</p>
|
|
499
|
+
* @see {@link DescribeRuleCommand}
|
|
685
500
|
*/
|
|
686
501
|
describeRule(args: DescribeRuleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRuleCommandOutput>;
|
|
687
502
|
describeRule(args: DescribeRuleCommandInput, cb: (err: any, data?: DescribeRuleCommandOutput) => void): void;
|
|
688
503
|
describeRule(args: DescribeRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRuleCommandOutput) => void): void;
|
|
689
504
|
/**
|
|
690
|
-
* @
|
|
691
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
692
|
-
* <p>Gets basic information about the security profle.</p>
|
|
505
|
+
* @see {@link DescribeSecurityProfileCommand}
|
|
693
506
|
*/
|
|
694
507
|
describeSecurityProfile(args: DescribeSecurityProfileCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSecurityProfileCommandOutput>;
|
|
695
508
|
describeSecurityProfile(args: DescribeSecurityProfileCommandInput, cb: (err: any, data?: DescribeSecurityProfileCommandOutput) => void): void;
|
|
696
509
|
describeSecurityProfile(args: DescribeSecurityProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSecurityProfileCommandOutput) => void): void;
|
|
697
510
|
/**
|
|
698
|
-
* @
|
|
699
|
-
* <p>Gets details and status of a traffic distribution group.</p>
|
|
511
|
+
* @see {@link DescribeTrafficDistributionGroupCommand}
|
|
700
512
|
*/
|
|
701
513
|
describeTrafficDistributionGroup(args: DescribeTrafficDistributionGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrafficDistributionGroupCommandOutput>;
|
|
702
514
|
describeTrafficDistributionGroup(args: DescribeTrafficDistributionGroupCommandInput, cb: (err: any, data?: DescribeTrafficDistributionGroupCommandOutput) => void): void;
|
|
703
515
|
describeTrafficDistributionGroup(args: DescribeTrafficDistributionGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrafficDistributionGroupCommandOutput) => void): void;
|
|
704
516
|
/**
|
|
705
|
-
* @
|
|
706
|
-
* <p>Describes the specified user account. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID in the Amazon Connect console</a> (it’s the final part of the ARN). The console does not display the
|
|
707
|
-
* user IDs. Instead, list the users and note the IDs provided in the output.</p>
|
|
517
|
+
* @see {@link DescribeUserCommand}
|
|
708
518
|
*/
|
|
709
519
|
describeUser(args: DescribeUserCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUserCommandOutput>;
|
|
710
520
|
describeUser(args: DescribeUserCommandInput, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
|
|
711
521
|
describeUser(args: DescribeUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
|
|
712
522
|
/**
|
|
713
|
-
* @
|
|
714
|
-
* <p>Describes the specified hierarchy group.</p>
|
|
523
|
+
* @see {@link DescribeUserHierarchyGroupCommand}
|
|
715
524
|
*/
|
|
716
525
|
describeUserHierarchyGroup(args: DescribeUserHierarchyGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUserHierarchyGroupCommandOutput>;
|
|
717
526
|
describeUserHierarchyGroup(args: DescribeUserHierarchyGroupCommandInput, cb: (err: any, data?: DescribeUserHierarchyGroupCommandOutput) => void): void;
|
|
718
527
|
describeUserHierarchyGroup(args: DescribeUserHierarchyGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUserHierarchyGroupCommandOutput) => void): void;
|
|
719
528
|
/**
|
|
720
|
-
* @
|
|
721
|
-
* <p>Describes the hierarchy structure of the specified Amazon Connect instance.</p>
|
|
529
|
+
* @see {@link DescribeUserHierarchyStructureCommand}
|
|
722
530
|
*/
|
|
723
531
|
describeUserHierarchyStructure(args: DescribeUserHierarchyStructureCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUserHierarchyStructureCommandOutput>;
|
|
724
532
|
describeUserHierarchyStructure(args: DescribeUserHierarchyStructureCommandInput, cb: (err: any, data?: DescribeUserHierarchyStructureCommandOutput) => void): void;
|
|
725
533
|
describeUserHierarchyStructure(args: DescribeUserHierarchyStructureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUserHierarchyStructureCommandOutput) => void): void;
|
|
726
534
|
/**
|
|
727
|
-
* @
|
|
728
|
-
* <p>Describes the specified vocabulary.</p>
|
|
535
|
+
* @see {@link DescribeVocabularyCommand}
|
|
729
536
|
*/
|
|
730
537
|
describeVocabulary(args: DescribeVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVocabularyCommandOutput>;
|
|
731
538
|
describeVocabulary(args: DescribeVocabularyCommandInput, cb: (err: any, data?: DescribeVocabularyCommandOutput) => void): void;
|
|
732
539
|
describeVocabulary(args: DescribeVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVocabularyCommandOutput) => void): void;
|
|
733
540
|
/**
|
|
734
|
-
* @
|
|
735
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
736
|
-
* <p>Revokes access to integrated applications from Amazon Connect.</p>
|
|
541
|
+
* @see {@link DisassociateApprovedOriginCommand}
|
|
737
542
|
*/
|
|
738
543
|
disassociateApprovedOrigin(args: DisassociateApprovedOriginCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateApprovedOriginCommandOutput>;
|
|
739
544
|
disassociateApprovedOrigin(args: DisassociateApprovedOriginCommandInput, cb: (err: any, data?: DisassociateApprovedOriginCommandOutput) => void): void;
|
|
740
545
|
disassociateApprovedOrigin(args: DisassociateApprovedOriginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateApprovedOriginCommandOutput) => void): void;
|
|
741
546
|
/**
|
|
742
|
-
* @
|
|
743
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
744
|
-
* <p>Revokes authorization from the specified instance to access the specified Amazon Lex or Amazon Lex V2
|
|
745
|
-
* bot. </p>
|
|
547
|
+
* @see {@link DisassociateBotCommand}
|
|
746
548
|
*/
|
|
747
549
|
disassociateBot(args: DisassociateBotCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateBotCommandOutput>;
|
|
748
550
|
disassociateBot(args: DisassociateBotCommandInput, cb: (err: any, data?: DisassociateBotCommandOutput) => void): void;
|
|
749
551
|
disassociateBot(args: DisassociateBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateBotCommandOutput) => void): void;
|
|
750
552
|
/**
|
|
751
|
-
* @
|
|
752
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
753
|
-
* <p>Removes the storage type configurations for the specified resource type and association
|
|
754
|
-
* ID.</p>
|
|
553
|
+
* @see {@link DisassociateInstanceStorageConfigCommand}
|
|
755
554
|
*/
|
|
756
555
|
disassociateInstanceStorageConfig(args: DisassociateInstanceStorageConfigCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateInstanceStorageConfigCommandOutput>;
|
|
757
556
|
disassociateInstanceStorageConfig(args: DisassociateInstanceStorageConfigCommandInput, cb: (err: any, data?: DisassociateInstanceStorageConfigCommandOutput) => void): void;
|
|
758
557
|
disassociateInstanceStorageConfig(args: DisassociateInstanceStorageConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateInstanceStorageConfigCommandOutput) => void): void;
|
|
759
558
|
/**
|
|
760
|
-
* @
|
|
761
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
762
|
-
* <p>Remove the Lambda function from the dropdown options available in the relevant
|
|
763
|
-
* flow blocks.</p>
|
|
559
|
+
* @see {@link DisassociateLambdaFunctionCommand}
|
|
764
560
|
*/
|
|
765
561
|
disassociateLambdaFunction(args: DisassociateLambdaFunctionCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateLambdaFunctionCommandOutput>;
|
|
766
562
|
disassociateLambdaFunction(args: DisassociateLambdaFunctionCommandInput, cb: (err: any, data?: DisassociateLambdaFunctionCommandOutput) => void): void;
|
|
767
563
|
disassociateLambdaFunction(args: DisassociateLambdaFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateLambdaFunctionCommandOutput) => void): void;
|
|
768
564
|
/**
|
|
769
|
-
* @
|
|
770
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
771
|
-
* <p>Revokes authorization from the specified instance to access the specified Amazon Lex
|
|
772
|
-
* bot.</p>
|
|
565
|
+
* @see {@link DisassociateLexBotCommand}
|
|
773
566
|
*/
|
|
774
567
|
disassociateLexBot(args: DisassociateLexBotCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateLexBotCommandOutput>;
|
|
775
568
|
disassociateLexBot(args: DisassociateLexBotCommandInput, cb: (err: any, data?: DisassociateLexBotCommandOutput) => void): void;
|
|
776
569
|
disassociateLexBot(args: DisassociateLexBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateLexBotCommandOutput) => void): void;
|
|
777
570
|
/**
|
|
778
|
-
* @
|
|
779
|
-
* <p>Removes the flow association from a phone number claimed to your Amazon Connect
|
|
780
|
-
* instance.</p>
|
|
781
|
-
* <important>
|
|
782
|
-
* <p>If the number is claimed to a traffic distribution group, and you are calling this API using an instance in the
|
|
783
|
-
* Amazon Web Services Region where the traffic distribution group was created, you can use either a full phone number
|
|
784
|
-
* ARN or UUID value for the <code>PhoneNumberId</code> URI request parameter. However, if the
|
|
785
|
-
* number is claimed to a traffic distribution group and you are calling this API using an instance in the alternate
|
|
786
|
-
* Amazon Web Services Region associated with the traffic distribution group, you must provide a full phone number ARN.
|
|
787
|
-
* If a UUID is provided in this scenario, you will receive a
|
|
788
|
-
* <code>ResourceNotFoundException</code>.</p>
|
|
789
|
-
* </important>
|
|
571
|
+
* @see {@link DisassociatePhoneNumberContactFlowCommand}
|
|
790
572
|
*/
|
|
791
573
|
disassociatePhoneNumberContactFlow(args: DisassociatePhoneNumberContactFlowCommandInput, options?: __HttpHandlerOptions): Promise<DisassociatePhoneNumberContactFlowCommandOutput>;
|
|
792
574
|
disassociatePhoneNumberContactFlow(args: DisassociatePhoneNumberContactFlowCommandInput, cb: (err: any, data?: DisassociatePhoneNumberContactFlowCommandOutput) => void): void;
|
|
793
575
|
disassociatePhoneNumberContactFlow(args: DisassociatePhoneNumberContactFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociatePhoneNumberContactFlowCommandOutput) => void): void;
|
|
794
576
|
/**
|
|
795
|
-
* @
|
|
796
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
797
|
-
* <p>Disassociates a set of quick connects from a queue.</p>
|
|
577
|
+
* @see {@link DisassociateQueueQuickConnectsCommand}
|
|
798
578
|
*/
|
|
799
579
|
disassociateQueueQuickConnects(args: DisassociateQueueQuickConnectsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateQueueQuickConnectsCommandOutput>;
|
|
800
580
|
disassociateQueueQuickConnects(args: DisassociateQueueQuickConnectsCommandInput, cb: (err: any, data?: DisassociateQueueQuickConnectsCommandOutput) => void): void;
|
|
801
581
|
disassociateQueueQuickConnects(args: DisassociateQueueQuickConnectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateQueueQuickConnectsCommandOutput) => void): void;
|
|
802
582
|
/**
|
|
803
|
-
* @
|
|
804
|
-
* <p>Disassociates a set of queues from a routing profile.</p>
|
|
583
|
+
* @see {@link DisassociateRoutingProfileQueuesCommand}
|
|
805
584
|
*/
|
|
806
585
|
disassociateRoutingProfileQueues(args: DisassociateRoutingProfileQueuesCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateRoutingProfileQueuesCommandOutput>;
|
|
807
586
|
disassociateRoutingProfileQueues(args: DisassociateRoutingProfileQueuesCommandInput, cb: (err: any, data?: DisassociateRoutingProfileQueuesCommandOutput) => void): void;
|
|
808
587
|
disassociateRoutingProfileQueues(args: DisassociateRoutingProfileQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateRoutingProfileQueuesCommandOutput) => void): void;
|
|
809
588
|
/**
|
|
810
|
-
* @
|
|
811
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
812
|
-
* <p>Deletes the specified security key.</p>
|
|
589
|
+
* @see {@link DisassociateSecurityKeyCommand}
|
|
813
590
|
*/
|
|
814
591
|
disassociateSecurityKey(args: DisassociateSecurityKeyCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateSecurityKeyCommandOutput>;
|
|
815
592
|
disassociateSecurityKey(args: DisassociateSecurityKeyCommandInput, cb: (err: any, data?: DisassociateSecurityKeyCommandOutput) => void): void;
|
|
816
593
|
disassociateSecurityKey(args: DisassociateSecurityKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateSecurityKeyCommandOutput) => void): void;
|
|
817
594
|
/**
|
|
818
|
-
* @
|
|
819
|
-
* <p>Dismisses contacts from an agent’s CCP and returns the agent to an available state, which
|
|
820
|
-
* allows the agent to receive a new routed contact. Contacts can only be dismissed if they are in a
|
|
821
|
-
* <code>MISSED</code>, <code>ERROR</code>, <code>ENDED</code>, or <code>REJECTED</code> state in
|
|
822
|
-
* the <a href="https://docs.aws.amazon.com/connect/latest/adminguide/about-contact-states.html">Agent
|
|
823
|
-
* Event Stream</a>.</p>
|
|
595
|
+
* @see {@link DismissUserContactCommand}
|
|
824
596
|
*/
|
|
825
597
|
dismissUserContact(args: DismissUserContactCommandInput, options?: __HttpHandlerOptions): Promise<DismissUserContactCommandOutput>;
|
|
826
598
|
dismissUserContact(args: DismissUserContactCommandInput, cb: (err: any, data?: DismissUserContactCommandOutput) => void): void;
|
|
827
599
|
dismissUserContact(args: DismissUserContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DismissUserContactCommandOutput) => void): void;
|
|
828
600
|
/**
|
|
829
|
-
* @
|
|
830
|
-
* <p>Retrieves the contact attributes for the specified contact.</p>
|
|
601
|
+
* @see {@link GetContactAttributesCommand}
|
|
831
602
|
*/
|
|
832
603
|
getContactAttributes(args: GetContactAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetContactAttributesCommandOutput>;
|
|
833
604
|
getContactAttributes(args: GetContactAttributesCommandInput, cb: (err: any, data?: GetContactAttributesCommandOutput) => void): void;
|
|
834
605
|
getContactAttributes(args: GetContactAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContactAttributesCommandOutput) => void): void;
|
|
835
606
|
/**
|
|
836
|
-
* @
|
|
837
|
-
* <p>Gets the real-time metric data from the specified Amazon Connect instance.</p>
|
|
838
|
-
* <p>For a description of each metric, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html">Real-time Metrics
|
|
839
|
-
* Definitions</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
607
|
+
* @see {@link GetCurrentMetricDataCommand}
|
|
840
608
|
*/
|
|
841
609
|
getCurrentMetricData(args: GetCurrentMetricDataCommandInput, options?: __HttpHandlerOptions): Promise<GetCurrentMetricDataCommandOutput>;
|
|
842
610
|
getCurrentMetricData(args: GetCurrentMetricDataCommandInput, cb: (err: any, data?: GetCurrentMetricDataCommandOutput) => void): void;
|
|
843
611
|
getCurrentMetricData(args: GetCurrentMetricDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCurrentMetricDataCommandOutput) => void): void;
|
|
844
612
|
/**
|
|
845
|
-
* @
|
|
846
|
-
* <p>Gets the real-time active user data from the specified Amazon Connect instance. </p>
|
|
613
|
+
* @see {@link GetCurrentUserDataCommand}
|
|
847
614
|
*/
|
|
848
615
|
getCurrentUserData(args: GetCurrentUserDataCommandInput, options?: __HttpHandlerOptions): Promise<GetCurrentUserDataCommandOutput>;
|
|
849
616
|
getCurrentUserData(args: GetCurrentUserDataCommandInput, cb: (err: any, data?: GetCurrentUserDataCommandOutput) => void): void;
|
|
850
617
|
getCurrentUserData(args: GetCurrentUserDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCurrentUserDataCommandOutput) => void): void;
|
|
851
618
|
/**
|
|
852
|
-
* @
|
|
853
|
-
* <p>Retrieves a token for federation.</p>
|
|
854
|
-
* <note>
|
|
855
|
-
* <p>This API doesn't support root users. If you try to invoke GetFederationToken with root
|
|
856
|
-
* credentials, an error message similar to the following one appears: </p>
|
|
857
|
-
* <p>
|
|
858
|
-
* <code>Provided identity: Principal: .... User: .... cannot be used for federation with
|
|
859
|
-
* Amazon Connect</code>
|
|
860
|
-
* </p>
|
|
861
|
-
* </note>
|
|
619
|
+
* @see {@link GetFederationTokenCommand}
|
|
862
620
|
*/
|
|
863
621
|
getFederationToken(args: GetFederationTokenCommandInput, options?: __HttpHandlerOptions): Promise<GetFederationTokenCommandOutput>;
|
|
864
622
|
getFederationToken(args: GetFederationTokenCommandInput, cb: (err: any, data?: GetFederationTokenCommandOutput) => void): void;
|
|
865
623
|
getFederationToken(args: GetFederationTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFederationTokenCommandOutput) => void): void;
|
|
866
624
|
/**
|
|
867
|
-
* @
|
|
868
|
-
* <p>Gets historical metric data from the specified Amazon Connect instance.</p>
|
|
869
|
-
* <p>For a description of each historical metric, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html">Historical Metrics
|
|
870
|
-
* Definitions</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
625
|
+
* @see {@link GetMetricDataCommand}
|
|
871
626
|
*/
|
|
872
627
|
getMetricData(args: GetMetricDataCommandInput, options?: __HttpHandlerOptions): Promise<GetMetricDataCommandOutput>;
|
|
873
628
|
getMetricData(args: GetMetricDataCommandInput, cb: (err: any, data?: GetMetricDataCommandOutput) => void): void;
|
|
874
629
|
getMetricData(args: GetMetricDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMetricDataCommandOutput) => void): void;
|
|
875
630
|
/**
|
|
876
|
-
* @
|
|
877
|
-
* <p>Gets metric data from the specified Amazon Connect instance. </p>
|
|
878
|
-
* <p>
|
|
879
|
-
* <code>GetMetricDataV2</code> offers more features than <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_GetMetricData.html">GetMetricData</a>, the previous
|
|
880
|
-
* version of this API. It has new metrics, offers filtering at a metric level, and offers the
|
|
881
|
-
* ability to filter and group data by channels, queues, routing profiles, agents, and agent
|
|
882
|
-
* hierarchy levels. It can retrieve historical data for the last 14 days, in 24-hour
|
|
883
|
-
* intervals.</p>
|
|
884
|
-
* <p>For a description of the historical metrics that are supported by
|
|
885
|
-
* <code>GetMetricDataV2</code> and <code>GetMetricData</code>, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html">Historical metrics
|
|
886
|
-
* definitions</a> in the <i>Amazon Connect Administrator's Guide</i>. </p>
|
|
887
|
-
* <p>This API is not available in the Amazon Web Services GovCloud (US) Regions.</p>
|
|
631
|
+
* @see {@link GetMetricDataV2Command}
|
|
888
632
|
*/
|
|
889
633
|
getMetricDataV2(args: GetMetricDataV2CommandInput, options?: __HttpHandlerOptions): Promise<GetMetricDataV2CommandOutput>;
|
|
890
634
|
getMetricDataV2(args: GetMetricDataV2CommandInput, cb: (err: any, data?: GetMetricDataV2CommandOutput) => void): void;
|
|
891
635
|
getMetricDataV2(args: GetMetricDataV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMetricDataV2CommandOutput) => void): void;
|
|
892
636
|
/**
|
|
893
|
-
* @
|
|
894
|
-
* <p>Gets details about a specific task template in the specified Amazon Connect
|
|
895
|
-
* instance.</p>
|
|
637
|
+
* @see {@link GetTaskTemplateCommand}
|
|
896
638
|
*/
|
|
897
639
|
getTaskTemplate(args: GetTaskTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetTaskTemplateCommandOutput>;
|
|
898
640
|
getTaskTemplate(args: GetTaskTemplateCommandInput, cb: (err: any, data?: GetTaskTemplateCommandOutput) => void): void;
|
|
899
641
|
getTaskTemplate(args: GetTaskTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTaskTemplateCommandOutput) => void): void;
|
|
900
642
|
/**
|
|
901
|
-
* @
|
|
902
|
-
* <p>Retrieves the current traffic distribution for a given traffic distribution group.</p>
|
|
643
|
+
* @see {@link GetTrafficDistributionCommand}
|
|
903
644
|
*/
|
|
904
645
|
getTrafficDistribution(args: GetTrafficDistributionCommandInput, options?: __HttpHandlerOptions): Promise<GetTrafficDistributionCommandOutput>;
|
|
905
646
|
getTrafficDistribution(args: GetTrafficDistributionCommandInput, cb: (err: any, data?: GetTrafficDistributionCommandOutput) => void): void;
|
|
906
647
|
getTrafficDistribution(args: GetTrafficDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTrafficDistributionCommandOutput) => void): void;
|
|
907
648
|
/**
|
|
908
|
-
* @
|
|
909
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
910
|
-
* <p>Lists agent statuses.</p>
|
|
649
|
+
* @see {@link ListAgentStatusesCommand}
|
|
911
650
|
*/
|
|
912
651
|
listAgentStatuses(args: ListAgentStatusesCommandInput, options?: __HttpHandlerOptions): Promise<ListAgentStatusesCommandOutput>;
|
|
913
652
|
listAgentStatuses(args: ListAgentStatusesCommandInput, cb: (err: any, data?: ListAgentStatusesCommandOutput) => void): void;
|
|
914
653
|
listAgentStatuses(args: ListAgentStatusesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAgentStatusesCommandOutput) => void): void;
|
|
915
654
|
/**
|
|
916
|
-
* @
|
|
917
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
918
|
-
* <p>Returns a paginated list of all approved origins associated with the instance.</p>
|
|
655
|
+
* @see {@link ListApprovedOriginsCommand}
|
|
919
656
|
*/
|
|
920
657
|
listApprovedOrigins(args: ListApprovedOriginsCommandInput, options?: __HttpHandlerOptions): Promise<ListApprovedOriginsCommandOutput>;
|
|
921
658
|
listApprovedOrigins(args: ListApprovedOriginsCommandInput, cb: (err: any, data?: ListApprovedOriginsCommandOutput) => void): void;
|
|
922
659
|
listApprovedOrigins(args: ListApprovedOriginsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApprovedOriginsCommandOutput) => void): void;
|
|
923
660
|
/**
|
|
924
|
-
* @
|
|
925
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
926
|
-
* <p>For the specified version of Amazon Lex, returns a paginated list of all the Amazon Lex bots currently associated with the instance. Use this API to returns both Amazon Lex V1 and V2 bots.</p>
|
|
661
|
+
* @see {@link ListBotsCommand}
|
|
927
662
|
*/
|
|
928
663
|
listBots(args: ListBotsCommandInput, options?: __HttpHandlerOptions): Promise<ListBotsCommandOutput>;
|
|
929
664
|
listBots(args: ListBotsCommandInput, cb: (err: any, data?: ListBotsCommandOutput) => void): void;
|
|
930
665
|
listBots(args: ListBotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBotsCommandOutput) => void): void;
|
|
931
666
|
/**
|
|
932
|
-
* @
|
|
933
|
-
* <p>Provides information about the flow modules for the specified Amazon Connect
|
|
934
|
-
* instance.</p>
|
|
667
|
+
* @see {@link ListContactFlowModulesCommand}
|
|
935
668
|
*/
|
|
936
669
|
listContactFlowModules(args: ListContactFlowModulesCommandInput, options?: __HttpHandlerOptions): Promise<ListContactFlowModulesCommandOutput>;
|
|
937
670
|
listContactFlowModules(args: ListContactFlowModulesCommandInput, cb: (err: any, data?: ListContactFlowModulesCommandOutput) => void): void;
|
|
938
671
|
listContactFlowModules(args: ListContactFlowModulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactFlowModulesCommandOutput) => void): void;
|
|
939
672
|
/**
|
|
940
|
-
* @
|
|
941
|
-
* <p>Provides information about the flows for the specified Amazon Connect instance.</p>
|
|
942
|
-
* <p>You can also create and update flows using the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/flow-language.html">Amazon Connect
|
|
943
|
-
* Flow language</a>.</p>
|
|
944
|
-
* <p>For more information about flows, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/concepts-contact-flows.html">Flows</a> in the
|
|
945
|
-
* <i>Amazon Connect Administrator Guide</i>.</p>
|
|
673
|
+
* @see {@link ListContactFlowsCommand}
|
|
946
674
|
*/
|
|
947
675
|
listContactFlows(args: ListContactFlowsCommandInput, options?: __HttpHandlerOptions): Promise<ListContactFlowsCommandOutput>;
|
|
948
676
|
listContactFlows(args: ListContactFlowsCommandInput, cb: (err: any, data?: ListContactFlowsCommandOutput) => void): void;
|
|
949
677
|
listContactFlows(args: ListContactFlowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactFlowsCommandOutput) => void): void;
|
|
950
678
|
/**
|
|
951
|
-
* @
|
|
952
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
953
|
-
* <p>For the specified <code>referenceTypes</code>, returns a list of references associated with
|
|
954
|
-
* the contact. </p>
|
|
679
|
+
* @see {@link ListContactReferencesCommand}
|
|
955
680
|
*/
|
|
956
681
|
listContactReferences(args: ListContactReferencesCommandInput, options?: __HttpHandlerOptions): Promise<ListContactReferencesCommandOutput>;
|
|
957
682
|
listContactReferences(args: ListContactReferencesCommandInput, cb: (err: any, data?: ListContactReferencesCommandOutput) => void): void;
|
|
958
683
|
listContactReferences(args: ListContactReferencesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactReferencesCommandOutput) => void): void;
|
|
959
684
|
/**
|
|
960
|
-
* @
|
|
961
|
-
* <p>Lists the default vocabularies for the specified Amazon Connect instance.</p>
|
|
685
|
+
* @see {@link ListDefaultVocabulariesCommand}
|
|
962
686
|
*/
|
|
963
687
|
listDefaultVocabularies(args: ListDefaultVocabulariesCommandInput, options?: __HttpHandlerOptions): Promise<ListDefaultVocabulariesCommandOutput>;
|
|
964
688
|
listDefaultVocabularies(args: ListDefaultVocabulariesCommandInput, cb: (err: any, data?: ListDefaultVocabulariesCommandOutput) => void): void;
|
|
965
689
|
listDefaultVocabularies(args: ListDefaultVocabulariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDefaultVocabulariesCommandOutput) => void): void;
|
|
966
690
|
/**
|
|
967
|
-
* @
|
|
968
|
-
* <p>Provides information about the hours of operation for the specified Amazon Connect
|
|
969
|
-
* instance.</p>
|
|
970
|
-
* <p>For more information about hours of operation, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/set-hours-operation.html">Set the Hours of Operation for a
|
|
971
|
-
* Queue</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
691
|
+
* @see {@link ListHoursOfOperationsCommand}
|
|
972
692
|
*/
|
|
973
693
|
listHoursOfOperations(args: ListHoursOfOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListHoursOfOperationsCommandOutput>;
|
|
974
694
|
listHoursOfOperations(args: ListHoursOfOperationsCommandInput, cb: (err: any, data?: ListHoursOfOperationsCommandOutput) => void): void;
|
|
975
695
|
listHoursOfOperations(args: ListHoursOfOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHoursOfOperationsCommandOutput) => void): void;
|
|
976
696
|
/**
|
|
977
|
-
* @
|
|
978
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
979
|
-
* <p>Returns a paginated list of all attribute types for the given instance.</p>
|
|
697
|
+
* @see {@link ListInstanceAttributesCommand}
|
|
980
698
|
*/
|
|
981
699
|
listInstanceAttributes(args: ListInstanceAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ListInstanceAttributesCommandOutput>;
|
|
982
700
|
listInstanceAttributes(args: ListInstanceAttributesCommandInput, cb: (err: any, data?: ListInstanceAttributesCommandOutput) => void): void;
|
|
983
701
|
listInstanceAttributes(args: ListInstanceAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInstanceAttributesCommandOutput) => void): void;
|
|
984
702
|
/**
|
|
985
|
-
* @
|
|
986
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
987
|
-
* <p>Return a list of instances which are in active state, creation-in-progress state, and failed
|
|
988
|
-
* state. Instances that aren't successfully created (they are in a failed state) are returned only
|
|
989
|
-
* for 24 hours after the CreateInstance API was invoked.</p>
|
|
703
|
+
* @see {@link ListInstancesCommand}
|
|
990
704
|
*/
|
|
991
705
|
listInstances(args: ListInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListInstancesCommandOutput>;
|
|
992
706
|
listInstances(args: ListInstancesCommandInput, cb: (err: any, data?: ListInstancesCommandOutput) => void): void;
|
|
993
707
|
listInstances(args: ListInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInstancesCommandOutput) => void): void;
|
|
994
708
|
/**
|
|
995
|
-
* @
|
|
996
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
997
|
-
* <p>Returns a paginated list of storage configs for the identified instance and resource
|
|
998
|
-
* type.</p>
|
|
709
|
+
* @see {@link ListInstanceStorageConfigsCommand}
|
|
999
710
|
*/
|
|
1000
711
|
listInstanceStorageConfigs(args: ListInstanceStorageConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListInstanceStorageConfigsCommandOutput>;
|
|
1001
712
|
listInstanceStorageConfigs(args: ListInstanceStorageConfigsCommandInput, cb: (err: any, data?: ListInstanceStorageConfigsCommandOutput) => void): void;
|
|
1002
713
|
listInstanceStorageConfigs(args: ListInstanceStorageConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInstanceStorageConfigsCommandOutput) => void): void;
|
|
1003
714
|
/**
|
|
1004
|
-
* @
|
|
1005
|
-
* <p>Provides summary information about the Amazon Web Services resource associations for the
|
|
1006
|
-
* specified Amazon Connect instance.</p>
|
|
715
|
+
* @see {@link ListIntegrationAssociationsCommand}
|
|
1007
716
|
*/
|
|
1008
717
|
listIntegrationAssociations(args: ListIntegrationAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListIntegrationAssociationsCommandOutput>;
|
|
1009
718
|
listIntegrationAssociations(args: ListIntegrationAssociationsCommandInput, cb: (err: any, data?: ListIntegrationAssociationsCommandOutput) => void): void;
|
|
1010
719
|
listIntegrationAssociations(args: ListIntegrationAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIntegrationAssociationsCommandOutput) => void): void;
|
|
1011
720
|
/**
|
|
1012
|
-
* @
|
|
1013
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1014
|
-
* <p>Returns a paginated list of all Lambda functions that display in the dropdown options in the
|
|
1015
|
-
* relevant flow blocks.</p>
|
|
721
|
+
* @see {@link ListLambdaFunctionsCommand}
|
|
1016
722
|
*/
|
|
1017
723
|
listLambdaFunctions(args: ListLambdaFunctionsCommandInput, options?: __HttpHandlerOptions): Promise<ListLambdaFunctionsCommandOutput>;
|
|
1018
724
|
listLambdaFunctions(args: ListLambdaFunctionsCommandInput, cb: (err: any, data?: ListLambdaFunctionsCommandOutput) => void): void;
|
|
1019
725
|
listLambdaFunctions(args: ListLambdaFunctionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLambdaFunctionsCommandOutput) => void): void;
|
|
1020
726
|
/**
|
|
1021
|
-
* @
|
|
1022
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1023
|
-
* <p>Returns a paginated list of all the Amazon Lex V1 bots currently associated with the
|
|
1024
|
-
* instance. To return both Amazon Lex V1 and V2 bots, use the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_ListBots.html">ListBots</a> API.
|
|
1025
|
-
* </p>
|
|
727
|
+
* @see {@link ListLexBotsCommand}
|
|
1026
728
|
*/
|
|
1027
729
|
listLexBots(args: ListLexBotsCommandInput, options?: __HttpHandlerOptions): Promise<ListLexBotsCommandOutput>;
|
|
1028
730
|
listLexBots(args: ListLexBotsCommandInput, cb: (err: any, data?: ListLexBotsCommandOutput) => void): void;
|
|
1029
731
|
listLexBots(args: ListLexBotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLexBotsCommandOutput) => void): void;
|
|
1030
732
|
/**
|
|
1031
|
-
* @
|
|
1032
|
-
* <p>Provides information about the phone numbers for the specified Amazon Connect instance. </p>
|
|
1033
|
-
* <p>For more information about phone numbers, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/contact-center-phone-number.html">Set Up Phone Numbers for Your
|
|
1034
|
-
* Contact Center</a> in the <i>Amazon Connect Administrator
|
|
1035
|
-
* Guide</i>.</p>
|
|
1036
|
-
* <important>
|
|
1037
|
-
* <p>The phone number <code>Arn</code> value that is returned from each of the items in the
|
|
1038
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_ListPhoneNumbers.html#connect-ListPhoneNumbers-response-PhoneNumberSummaryList">PhoneNumberSummaryList</a> cannot be used to tag phone number resources. It will fail with
|
|
1039
|
-
* a <code>ResourceNotFoundException</code>. Instead, use the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_ListPhoneNumbersV2.html">ListPhoneNumbersV2</a> API.
|
|
1040
|
-
* It returns the new phone number ARN that can be used to tag phone number resources.</p>
|
|
1041
|
-
* </important>
|
|
733
|
+
* @see {@link ListPhoneNumbersCommand}
|
|
1042
734
|
*/
|
|
1043
735
|
listPhoneNumbers(args: ListPhoneNumbersCommandInput, options?: __HttpHandlerOptions): Promise<ListPhoneNumbersCommandOutput>;
|
|
1044
736
|
listPhoneNumbers(args: ListPhoneNumbersCommandInput, cb: (err: any, data?: ListPhoneNumbersCommandOutput) => void): void;
|
|
1045
737
|
listPhoneNumbers(args: ListPhoneNumbersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPhoneNumbersCommandOutput) => void): void;
|
|
1046
738
|
/**
|
|
1047
|
-
* @
|
|
1048
|
-
* <p>Lists phone numbers claimed to your Amazon Connect instance or traffic distribution group. If the provided
|
|
1049
|
-
* <code>TargetArn</code> is a traffic distribution group, you can call this API in both Amazon Web Services Regions
|
|
1050
|
-
* associated with traffic distribution group.</p>
|
|
1051
|
-
* <p>For more information about phone numbers, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/contact-center-phone-number.html">Set Up Phone Numbers for Your
|
|
1052
|
-
* Contact Center</a> in the <i>Amazon Connect Administrator
|
|
1053
|
-
* Guide</i>.</p>
|
|
739
|
+
* @see {@link ListPhoneNumbersV2Command}
|
|
1054
740
|
*/
|
|
1055
741
|
listPhoneNumbersV2(args: ListPhoneNumbersV2CommandInput, options?: __HttpHandlerOptions): Promise<ListPhoneNumbersV2CommandOutput>;
|
|
1056
742
|
listPhoneNumbersV2(args: ListPhoneNumbersV2CommandInput, cb: (err: any, data?: ListPhoneNumbersV2CommandOutput) => void): void;
|
|
1057
743
|
listPhoneNumbersV2(args: ListPhoneNumbersV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPhoneNumbersV2CommandOutput) => void): void;
|
|
1058
744
|
/**
|
|
1059
|
-
* @
|
|
1060
|
-
* <p>Provides information about the prompts for the specified Amazon Connect instance.</p>
|
|
745
|
+
* @see {@link ListPromptsCommand}
|
|
1061
746
|
*/
|
|
1062
747
|
listPrompts(args: ListPromptsCommandInput, options?: __HttpHandlerOptions): Promise<ListPromptsCommandOutput>;
|
|
1063
748
|
listPrompts(args: ListPromptsCommandInput, cb: (err: any, data?: ListPromptsCommandOutput) => void): void;
|
|
1064
749
|
listPrompts(args: ListPromptsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPromptsCommandOutput) => void): void;
|
|
1065
750
|
/**
|
|
1066
|
-
* @
|
|
1067
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1068
|
-
* <p>Lists the quick connects associated with a queue.</p>
|
|
751
|
+
* @see {@link ListQueueQuickConnectsCommand}
|
|
1069
752
|
*/
|
|
1070
753
|
listQueueQuickConnects(args: ListQueueQuickConnectsCommandInput, options?: __HttpHandlerOptions): Promise<ListQueueQuickConnectsCommandOutput>;
|
|
1071
754
|
listQueueQuickConnects(args: ListQueueQuickConnectsCommandInput, cb: (err: any, data?: ListQueueQuickConnectsCommandOutput) => void): void;
|
|
1072
755
|
listQueueQuickConnects(args: ListQueueQuickConnectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueueQuickConnectsCommandOutput) => void): void;
|
|
1073
756
|
/**
|
|
1074
|
-
* @
|
|
1075
|
-
* <p>Provides information about the queues for the specified Amazon Connect instance.</p>
|
|
1076
|
-
* <p>If you do not specify a <code>QueueTypes</code>
|
|
1077
|
-
* parameter, both standard and agent queues are returned. This might cause an unexpected truncation
|
|
1078
|
-
* of results if you have more than 1000 agents and you limit the number of results of the API call
|
|
1079
|
-
* in code.</p>
|
|
1080
|
-
* <p>For more information about queues, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/concepts-queues-standard-and-agent.html">Queues: Standard and
|
|
1081
|
-
* Agent</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
757
|
+
* @see {@link ListQueuesCommand}
|
|
1082
758
|
*/
|
|
1083
759
|
listQueues(args: ListQueuesCommandInput, options?: __HttpHandlerOptions): Promise<ListQueuesCommandOutput>;
|
|
1084
760
|
listQueues(args: ListQueuesCommandInput, cb: (err: any, data?: ListQueuesCommandOutput) => void): void;
|
|
1085
761
|
listQueues(args: ListQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueuesCommandOutput) => void): void;
|
|
1086
762
|
/**
|
|
1087
|
-
* @
|
|
1088
|
-
* <p>Provides information about the quick connects for the specified Amazon Connect instance.
|
|
1089
|
-
* </p>
|
|
763
|
+
* @see {@link ListQuickConnectsCommand}
|
|
1090
764
|
*/
|
|
1091
765
|
listQuickConnects(args: ListQuickConnectsCommandInput, options?: __HttpHandlerOptions): Promise<ListQuickConnectsCommandOutput>;
|
|
1092
766
|
listQuickConnects(args: ListQuickConnectsCommandInput, cb: (err: any, data?: ListQuickConnectsCommandOutput) => void): void;
|
|
1093
767
|
listQuickConnects(args: ListQuickConnectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQuickConnectsCommandOutput) => void): void;
|
|
1094
768
|
/**
|
|
1095
|
-
* @
|
|
1096
|
-
* <p>Lists the queues associated with a routing profile.</p>
|
|
769
|
+
* @see {@link ListRoutingProfileQueuesCommand}
|
|
1097
770
|
*/
|
|
1098
771
|
listRoutingProfileQueues(args: ListRoutingProfileQueuesCommandInput, options?: __HttpHandlerOptions): Promise<ListRoutingProfileQueuesCommandOutput>;
|
|
1099
772
|
listRoutingProfileQueues(args: ListRoutingProfileQueuesCommandInput, cb: (err: any, data?: ListRoutingProfileQueuesCommandOutput) => void): void;
|
|
1100
773
|
listRoutingProfileQueues(args: ListRoutingProfileQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRoutingProfileQueuesCommandOutput) => void): void;
|
|
1101
774
|
/**
|
|
1102
|
-
* @
|
|
1103
|
-
* <p>Provides summary information about the routing profiles for the specified Amazon Connect
|
|
1104
|
-
* instance.</p>
|
|
1105
|
-
* <p>For more information about routing profiles, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/concepts-routing.html">Routing Profiles</a> and <a href="https://docs.aws.amazon.com/connect/latest/adminguide/routing-profiles.html">Create a Routing
|
|
1106
|
-
* Profile</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
775
|
+
* @see {@link ListRoutingProfilesCommand}
|
|
1107
776
|
*/
|
|
1108
777
|
listRoutingProfiles(args: ListRoutingProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListRoutingProfilesCommandOutput>;
|
|
1109
778
|
listRoutingProfiles(args: ListRoutingProfilesCommandInput, cb: (err: any, data?: ListRoutingProfilesCommandOutput) => void): void;
|
|
1110
779
|
listRoutingProfiles(args: ListRoutingProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRoutingProfilesCommandOutput) => void): void;
|
|
1111
780
|
/**
|
|
1112
|
-
* @
|
|
1113
|
-
* <p>List all rules for the specified Amazon Connect instance.</p>
|
|
781
|
+
* @see {@link ListRulesCommand}
|
|
1114
782
|
*/
|
|
1115
783
|
listRules(args: ListRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListRulesCommandOutput>;
|
|
1116
784
|
listRules(args: ListRulesCommandInput, cb: (err: any, data?: ListRulesCommandOutput) => void): void;
|
|
1117
785
|
listRules(args: ListRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRulesCommandOutput) => void): void;
|
|
1118
786
|
/**
|
|
1119
|
-
* @
|
|
1120
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1121
|
-
* <p>Returns a paginated list of all security keys associated with the instance.</p>
|
|
787
|
+
* @see {@link ListSecurityKeysCommand}
|
|
1122
788
|
*/
|
|
1123
789
|
listSecurityKeys(args: ListSecurityKeysCommandInput, options?: __HttpHandlerOptions): Promise<ListSecurityKeysCommandOutput>;
|
|
1124
790
|
listSecurityKeys(args: ListSecurityKeysCommandInput, cb: (err: any, data?: ListSecurityKeysCommandOutput) => void): void;
|
|
1125
791
|
listSecurityKeys(args: ListSecurityKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSecurityKeysCommandOutput) => void): void;
|
|
1126
792
|
/**
|
|
1127
|
-
* @
|
|
1128
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1129
|
-
* <p>Lists the permissions granted to a security profile.</p>
|
|
793
|
+
* @see {@link ListSecurityProfilePermissionsCommand}
|
|
1130
794
|
*/
|
|
1131
795
|
listSecurityProfilePermissions(args: ListSecurityProfilePermissionsCommandInput, options?: __HttpHandlerOptions): Promise<ListSecurityProfilePermissionsCommandOutput>;
|
|
1132
796
|
listSecurityProfilePermissions(args: ListSecurityProfilePermissionsCommandInput, cb: (err: any, data?: ListSecurityProfilePermissionsCommandOutput) => void): void;
|
|
1133
797
|
listSecurityProfilePermissions(args: ListSecurityProfilePermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSecurityProfilePermissionsCommandOutput) => void): void;
|
|
1134
798
|
/**
|
|
1135
|
-
* @
|
|
1136
|
-
* <p>Provides summary information about the security profiles for the specified Amazon Connect instance.</p>
|
|
1137
|
-
* <p>For more information about security profiles, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/connect-security-profiles.html">Security Profiles</a> in the
|
|
1138
|
-
* <i>Amazon Connect Administrator Guide</i>.</p>
|
|
799
|
+
* @see {@link ListSecurityProfilesCommand}
|
|
1139
800
|
*/
|
|
1140
801
|
listSecurityProfiles(args: ListSecurityProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListSecurityProfilesCommandOutput>;
|
|
1141
802
|
listSecurityProfiles(args: ListSecurityProfilesCommandInput, cb: (err: any, data?: ListSecurityProfilesCommandOutput) => void): void;
|
|
1142
803
|
listSecurityProfiles(args: ListSecurityProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSecurityProfilesCommandOutput) => void): void;
|
|
1143
804
|
/**
|
|
1144
|
-
* @
|
|
1145
|
-
* <p>Lists the tags for the specified resource.</p>
|
|
1146
|
-
* <p>For sample policies that use tags, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/security_iam_id-based-policy-examples.html">Amazon Connect
|
|
1147
|
-
* Identity-Based Policy Examples</a> in the <i>Amazon Connect Administrator
|
|
1148
|
-
* Guide</i>.</p>
|
|
805
|
+
* @see {@link ListTagsForResourceCommand}
|
|
1149
806
|
*/
|
|
1150
807
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
1151
808
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
1152
809
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
1153
810
|
/**
|
|
1154
|
-
* @
|
|
1155
|
-
* <p>Lists task templates for the specified Amazon Connect instance.</p>
|
|
811
|
+
* @see {@link ListTaskTemplatesCommand}
|
|
1156
812
|
*/
|
|
1157
813
|
listTaskTemplates(args: ListTaskTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListTaskTemplatesCommandOutput>;
|
|
1158
814
|
listTaskTemplates(args: ListTaskTemplatesCommandInput, cb: (err: any, data?: ListTaskTemplatesCommandOutput) => void): void;
|
|
1159
815
|
listTaskTemplates(args: ListTaskTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTaskTemplatesCommandOutput) => void): void;
|
|
1160
816
|
/**
|
|
1161
|
-
* @
|
|
1162
|
-
* <p>Lists traffic distribution groups.</p>
|
|
817
|
+
* @see {@link ListTrafficDistributionGroupsCommand}
|
|
1163
818
|
*/
|
|
1164
819
|
listTrafficDistributionGroups(args: ListTrafficDistributionGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListTrafficDistributionGroupsCommandOutput>;
|
|
1165
820
|
listTrafficDistributionGroups(args: ListTrafficDistributionGroupsCommandInput, cb: (err: any, data?: ListTrafficDistributionGroupsCommandOutput) => void): void;
|
|
1166
821
|
listTrafficDistributionGroups(args: ListTrafficDistributionGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrafficDistributionGroupsCommandOutput) => void): void;
|
|
1167
822
|
/**
|
|
1168
|
-
* @
|
|
1169
|
-
* <p>Lists the use cases for the integration association. </p>
|
|
823
|
+
* @see {@link ListUseCasesCommand}
|
|
1170
824
|
*/
|
|
1171
825
|
listUseCases(args: ListUseCasesCommandInput, options?: __HttpHandlerOptions): Promise<ListUseCasesCommandOutput>;
|
|
1172
826
|
listUseCases(args: ListUseCasesCommandInput, cb: (err: any, data?: ListUseCasesCommandOutput) => void): void;
|
|
1173
827
|
listUseCases(args: ListUseCasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUseCasesCommandOutput) => void): void;
|
|
1174
828
|
/**
|
|
1175
|
-
* @
|
|
1176
|
-
* <p>Provides summary information about the hierarchy groups for the specified Amazon Connect
|
|
1177
|
-
* instance.</p>
|
|
1178
|
-
* <p>For more information about agent hierarchies, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/agent-hierarchy.html">Set Up Agent Hierarchies</a> in the
|
|
1179
|
-
* <i>Amazon Connect Administrator Guide</i>.</p>
|
|
829
|
+
* @see {@link ListUserHierarchyGroupsCommand}
|
|
1180
830
|
*/
|
|
1181
831
|
listUserHierarchyGroups(args: ListUserHierarchyGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListUserHierarchyGroupsCommandOutput>;
|
|
1182
832
|
listUserHierarchyGroups(args: ListUserHierarchyGroupsCommandInput, cb: (err: any, data?: ListUserHierarchyGroupsCommandOutput) => void): void;
|
|
1183
833
|
listUserHierarchyGroups(args: ListUserHierarchyGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUserHierarchyGroupsCommandOutput) => void): void;
|
|
1184
834
|
/**
|
|
1185
|
-
* @
|
|
1186
|
-
* <p>Provides summary information about the users for the specified Amazon Connect
|
|
1187
|
-
* instance.</p>
|
|
835
|
+
* @see {@link ListUsersCommand}
|
|
1188
836
|
*/
|
|
1189
837
|
listUsers(args: ListUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListUsersCommandOutput>;
|
|
1190
838
|
listUsers(args: ListUsersCommandInput, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
|
|
1191
839
|
listUsers(args: ListUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
|
|
1192
840
|
/**
|
|
1193
|
-
* @
|
|
1194
|
-
* <p>Initiates silent monitoring of a contact. The Contact Control Panel (CCP) of the user
|
|
1195
|
-
* specified by <i>userId</i> will be set to silent monitoring mode on the
|
|
1196
|
-
* contact.</p>
|
|
841
|
+
* @see {@link MonitorContactCommand}
|
|
1197
842
|
*/
|
|
1198
843
|
monitorContact(args: MonitorContactCommandInput, options?: __HttpHandlerOptions): Promise<MonitorContactCommandOutput>;
|
|
1199
844
|
monitorContact(args: MonitorContactCommandInput, cb: (err: any, data?: MonitorContactCommandOutput) => void): void;
|
|
1200
845
|
monitorContact(args: MonitorContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: MonitorContactCommandOutput) => void): void;
|
|
1201
846
|
/**
|
|
1202
|
-
* @
|
|
1203
|
-
* <p>Changes the current status of a user or agent in Amazon Connect. If the agent is
|
|
1204
|
-
* currently handling a contact, this sets the agent's next status.</p>
|
|
1205
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/metrics-agent-status.html">Agent status</a> and <a href="https://docs.aws.amazon.com/connect/latest/adminguide/set-next-status.html">Set your next
|
|
1206
|
-
* status</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
847
|
+
* @see {@link PutUserStatusCommand}
|
|
1207
848
|
*/
|
|
1208
849
|
putUserStatus(args: PutUserStatusCommandInput, options?: __HttpHandlerOptions): Promise<PutUserStatusCommandOutput>;
|
|
1209
850
|
putUserStatus(args: PutUserStatusCommandInput, cb: (err: any, data?: PutUserStatusCommandOutput) => void): void;
|
|
1210
851
|
putUserStatus(args: PutUserStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutUserStatusCommandOutput) => void): void;
|
|
1211
852
|
/**
|
|
1212
|
-
* @
|
|
1213
|
-
* <p>Releases a phone number previously claimed to an Amazon Connect instance or traffic distribution group. You
|
|
1214
|
-
* can call this API only in the Amazon Web Services Region where the number was claimed.</p>
|
|
1215
|
-
* <important>
|
|
1216
|
-
* <p>To release phone numbers from a traffic distribution group, use the <code>ReleasePhoneNumber</code> API, not the
|
|
1217
|
-
* Amazon Connect console.</p>
|
|
1218
|
-
* <p>After releasing a phone number, the phone number enters into a cooldown period of 30 days.
|
|
1219
|
-
* It cannot be searched for or claimed again until the period has ended. If you accidentally
|
|
1220
|
-
* release a phone number, contact Amazon Web Services Support.</p>
|
|
1221
|
-
* </important>
|
|
853
|
+
* @see {@link ReleasePhoneNumberCommand}
|
|
1222
854
|
*/
|
|
1223
855
|
releasePhoneNumber(args: ReleasePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<ReleasePhoneNumberCommandOutput>;
|
|
1224
856
|
releasePhoneNumber(args: ReleasePhoneNumberCommandInput, cb: (err: any, data?: ReleasePhoneNumberCommandOutput) => void): void;
|
|
1225
857
|
releasePhoneNumber(args: ReleasePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReleasePhoneNumberCommandOutput) => void): void;
|
|
1226
858
|
/**
|
|
1227
|
-
* @
|
|
1228
|
-
* <p>Replicates an Amazon Connect instance in the specified Amazon Web Services Region.</p>
|
|
1229
|
-
* <p>For more information about replicating an Amazon Connect instance, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/create-replica-connect-instance.html">Create
|
|
1230
|
-
* a replica of your existing Amazon Connect instance</a> in the <i>Amazon Connect
|
|
1231
|
-
* Administrator Guide</i>.</p>
|
|
859
|
+
* @see {@link ReplicateInstanceCommand}
|
|
1232
860
|
*/
|
|
1233
861
|
replicateInstance(args: ReplicateInstanceCommandInput, options?: __HttpHandlerOptions): Promise<ReplicateInstanceCommandOutput>;
|
|
1234
862
|
replicateInstance(args: ReplicateInstanceCommandInput, cb: (err: any, data?: ReplicateInstanceCommandOutput) => void): void;
|
|
1235
863
|
replicateInstance(args: ReplicateInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReplicateInstanceCommandOutput) => void): void;
|
|
1236
864
|
/**
|
|
1237
|
-
* @
|
|
1238
|
-
* <p>When a contact is being recorded, and the recording has been suspended using
|
|
1239
|
-
* SuspendContactRecording, this API resumes recording the call.</p>
|
|
1240
|
-
* <p>Only voice recordings are supported at this time.</p>
|
|
865
|
+
* @see {@link ResumeContactRecordingCommand}
|
|
1241
866
|
*/
|
|
1242
867
|
resumeContactRecording(args: ResumeContactRecordingCommandInput, options?: __HttpHandlerOptions): Promise<ResumeContactRecordingCommandOutput>;
|
|
1243
868
|
resumeContactRecording(args: ResumeContactRecordingCommandInput, cb: (err: any, data?: ResumeContactRecordingCommandOutput) => void): void;
|
|
1244
869
|
resumeContactRecording(args: ResumeContactRecordingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResumeContactRecordingCommandOutput) => void): void;
|
|
1245
870
|
/**
|
|
1246
|
-
* @
|
|
1247
|
-
* <p>Searches for available phone numbers that you can claim to your Amazon Connect instance
|
|
1248
|
-
* or traffic distribution group. If the provided <code>TargetArn</code> is a traffic distribution group, you can call this API in both
|
|
1249
|
-
* Amazon Web Services Regions associated with the traffic distribution group.</p>
|
|
871
|
+
* @see {@link SearchAvailablePhoneNumbersCommand}
|
|
1250
872
|
*/
|
|
1251
873
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options?: __HttpHandlerOptions): Promise<SearchAvailablePhoneNumbersCommandOutput>;
|
|
1252
874
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
|
|
1253
875
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
|
|
1254
876
|
/**
|
|
1255
|
-
* @
|
|
1256
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1257
|
-
* <p>Searches queues in an Amazon Connect instance, with optional filtering.</p>
|
|
877
|
+
* @see {@link SearchQueuesCommand}
|
|
1258
878
|
*/
|
|
1259
879
|
searchQueues(args: SearchQueuesCommandInput, options?: __HttpHandlerOptions): Promise<SearchQueuesCommandOutput>;
|
|
1260
880
|
searchQueues(args: SearchQueuesCommandInput, cb: (err: any, data?: SearchQueuesCommandOutput) => void): void;
|
|
1261
881
|
searchQueues(args: SearchQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchQueuesCommandOutput) => void): void;
|
|
1262
882
|
/**
|
|
1263
|
-
* @
|
|
1264
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1265
|
-
* <p>Searches routing profiles in an Amazon Connect instance, with optional filtering.</p>
|
|
883
|
+
* @see {@link SearchRoutingProfilesCommand}
|
|
1266
884
|
*/
|
|
1267
885
|
searchRoutingProfiles(args: SearchRoutingProfilesCommandInput, options?: __HttpHandlerOptions): Promise<SearchRoutingProfilesCommandOutput>;
|
|
1268
886
|
searchRoutingProfiles(args: SearchRoutingProfilesCommandInput, cb: (err: any, data?: SearchRoutingProfilesCommandOutput) => void): void;
|
|
1269
887
|
searchRoutingProfiles(args: SearchRoutingProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchRoutingProfilesCommandOutput) => void): void;
|
|
1270
888
|
/**
|
|
1271
|
-
* @
|
|
1272
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1273
|
-
* <p>Searches security profiles in an Amazon Connect instance, with optional
|
|
1274
|
-
* filtering.</p>
|
|
889
|
+
* @see {@link SearchSecurityProfilesCommand}
|
|
1275
890
|
*/
|
|
1276
891
|
searchSecurityProfiles(args: SearchSecurityProfilesCommandInput, options?: __HttpHandlerOptions): Promise<SearchSecurityProfilesCommandOutput>;
|
|
1277
892
|
searchSecurityProfiles(args: SearchSecurityProfilesCommandInput, cb: (err: any, data?: SearchSecurityProfilesCommandOutput) => void): void;
|
|
1278
893
|
searchSecurityProfiles(args: SearchSecurityProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchSecurityProfilesCommandOutput) => void): void;
|
|
1279
894
|
/**
|
|
1280
|
-
* @
|
|
1281
|
-
* <p>Searches users in an Amazon Connect instance, with optional filtering.</p>
|
|
1282
|
-
* <note>
|
|
1283
|
-
* <p>
|
|
1284
|
-
* <code>AfterContactWorkTimeLimit</code> is returned in milliseconds. </p>
|
|
1285
|
-
* </note>
|
|
895
|
+
* @see {@link SearchUsersCommand}
|
|
1286
896
|
*/
|
|
1287
897
|
searchUsers(args: SearchUsersCommandInput, options?: __HttpHandlerOptions): Promise<SearchUsersCommandOutput>;
|
|
1288
898
|
searchUsers(args: SearchUsersCommandInput, cb: (err: any, data?: SearchUsersCommandOutput) => void): void;
|
|
1289
899
|
searchUsers(args: SearchUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchUsersCommandOutput) => void): void;
|
|
1290
900
|
/**
|
|
1291
|
-
* @
|
|
1292
|
-
* <p>Searches for vocabularies within a specific Amazon Connect instance using
|
|
1293
|
-
* <code>State</code>, <code>NameStartsWith</code>, and <code>LanguageCode</code>.</p>
|
|
901
|
+
* @see {@link SearchVocabulariesCommand}
|
|
1294
902
|
*/
|
|
1295
903
|
searchVocabularies(args: SearchVocabulariesCommandInput, options?: __HttpHandlerOptions): Promise<SearchVocabulariesCommandOutput>;
|
|
1296
904
|
searchVocabularies(args: SearchVocabulariesCommandInput, cb: (err: any, data?: SearchVocabulariesCommandOutput) => void): void;
|
|
1297
905
|
searchVocabularies(args: SearchVocabulariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchVocabulariesCommandOutput) => void): void;
|
|
1298
906
|
/**
|
|
1299
|
-
* @
|
|
1300
|
-
* <p>Initiates a flow to start a new chat for the customer. Response of this API provides a token
|
|
1301
|
-
* required to obtain credentials from the <a href="https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CreateParticipantConnection.html">CreateParticipantConnection</a> API in the Amazon Connect Participant Service.</p>
|
|
1302
|
-
* <p>When a new chat contact is successfully created, clients must subscribe to the participant’s
|
|
1303
|
-
* connection for the created chat within 5 minutes. This is achieved by invoking <a href="https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CreateParticipantConnection.html">CreateParticipantConnection</a> with WEBSOCKET and CONNECTION_CREDENTIALS. </p>
|
|
1304
|
-
* <p>A 429 error occurs in the following situations:</p>
|
|
1305
|
-
* <ul>
|
|
1306
|
-
* <li>
|
|
1307
|
-
* <p>API rate limit is exceeded. API TPS throttling returns a <code>TooManyRequests</code>
|
|
1308
|
-
* exception.</p>
|
|
1309
|
-
* </li>
|
|
1310
|
-
* <li>
|
|
1311
|
-
* <p>The <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html">quota for concurrent active
|
|
1312
|
-
* chats</a> is exceeded. Active chat throttling returns a
|
|
1313
|
-
* <code>LimitExceededException</code>.</p>
|
|
1314
|
-
* </li>
|
|
1315
|
-
* </ul>
|
|
1316
|
-
* <p>If you use the <code>ChatDurationInMinutes</code> parameter and receive a 400 error, your
|
|
1317
|
-
* account may not support the ability to configure custom chat durations. For more information,
|
|
1318
|
-
* contact Amazon Web Services Support. </p>
|
|
1319
|
-
* <p>For more information about chat, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/chat.html">Chat</a> in the <i>Amazon Connect
|
|
1320
|
-
* Administrator Guide</i>.</p>
|
|
907
|
+
* @see {@link StartChatContactCommand}
|
|
1321
908
|
*/
|
|
1322
909
|
startChatContact(args: StartChatContactCommandInput, options?: __HttpHandlerOptions): Promise<StartChatContactCommandOutput>;
|
|
1323
910
|
startChatContact(args: StartChatContactCommandInput, cb: (err: any, data?: StartChatContactCommandOutput) => void): void;
|
|
1324
911
|
startChatContact(args: StartChatContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartChatContactCommandOutput) => void): void;
|
|
1325
912
|
/**
|
|
1326
|
-
* @
|
|
1327
|
-
* <p>Starts recording the contact: </p>
|
|
1328
|
-
* <ul>
|
|
1329
|
-
* <li>
|
|
1330
|
-
* <p>If the API is called <i>before</i> the agent joins the call, recording
|
|
1331
|
-
* starts when the agent joins the call.</p>
|
|
1332
|
-
* </li>
|
|
1333
|
-
* <li>
|
|
1334
|
-
* <p>If the API is called <i>after</i> the agent joins the call, recording starts
|
|
1335
|
-
* at the time of the API call.</p>
|
|
1336
|
-
* </li>
|
|
1337
|
-
* </ul>
|
|
1338
|
-
* <p>StartContactRecording is a one-time action. For example, if you use StopContactRecording to
|
|
1339
|
-
* stop recording an ongoing call, you can't use StartContactRecording to restart it. For scenarios
|
|
1340
|
-
* where the recording has started and you want to suspend and resume it, such as when collecting
|
|
1341
|
-
* sensitive information (for example, a credit card number), use SuspendContactRecording and
|
|
1342
|
-
* ResumeContactRecording.</p>
|
|
1343
|
-
* <p>You can use this API to override the recording behavior configured in the <a href="https://docs.aws.amazon.com/connect/latest/adminguide/set-recording-behavior.html">Set recording
|
|
1344
|
-
* behavior</a> block.</p>
|
|
1345
|
-
* <p>Only voice recordings are supported at this time.</p>
|
|
913
|
+
* @see {@link StartContactRecordingCommand}
|
|
1346
914
|
*/
|
|
1347
915
|
startContactRecording(args: StartContactRecordingCommandInput, options?: __HttpHandlerOptions): Promise<StartContactRecordingCommandOutput>;
|
|
1348
916
|
startContactRecording(args: StartContactRecordingCommandInput, cb: (err: any, data?: StartContactRecordingCommandOutput) => void): void;
|
|
1349
917
|
startContactRecording(args: StartContactRecordingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartContactRecordingCommandOutput) => void): void;
|
|
1350
918
|
/**
|
|
1351
|
-
* @
|
|
1352
|
-
* <p> Initiates real-time message streaming for a new chat contact.</p>
|
|
1353
|
-
* <p> For more information about message streaming, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/chat-message-streaming.html">Enable real-time chat message
|
|
1354
|
-
* streaming</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
919
|
+
* @see {@link StartContactStreamingCommand}
|
|
1355
920
|
*/
|
|
1356
921
|
startContactStreaming(args: StartContactStreamingCommandInput, options?: __HttpHandlerOptions): Promise<StartContactStreamingCommandOutput>;
|
|
1357
922
|
startContactStreaming(args: StartContactStreamingCommandInput, cb: (err: any, data?: StartContactStreamingCommandOutput) => void): void;
|
|
1358
923
|
startContactStreaming(args: StartContactStreamingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartContactStreamingCommandOutput) => void): void;
|
|
1359
924
|
/**
|
|
1360
|
-
* @
|
|
1361
|
-
* <p>Places an outbound call to a contact, and then initiates the flow. It performs the actions
|
|
1362
|
-
* in the flow that's specified (in <code>ContactFlowId</code>).</p>
|
|
1363
|
-
* <p>Agents do not initiate the outbound API, which means that they do not dial the contact. If
|
|
1364
|
-
* the flow places an outbound call to a contact, and then puts the contact in queue, the call is
|
|
1365
|
-
* then routed to the agent, like any other inbound case.</p>
|
|
1366
|
-
* <p>There is a 60-second dialing timeout for this operation. If the call is not connected after
|
|
1367
|
-
* 60 seconds, it fails.</p>
|
|
1368
|
-
* <note>
|
|
1369
|
-
* <p>UK numbers with a 447 prefix are not allowed by default. Before you can dial these UK
|
|
1370
|
-
* mobile numbers, you must submit a service quota increase request. For more information, see
|
|
1371
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html">Amazon Connect Service Quotas</a> in the <i>Amazon Connect Administrator
|
|
1372
|
-
* Guide</i>. </p>
|
|
1373
|
-
* </note>
|
|
1374
|
-
* <note>
|
|
1375
|
-
* <p>Campaign calls are not allowed by default. Before you can make a call with
|
|
1376
|
-
* <code>TrafficType</code> = <code>CAMPAIGN</code>, you must submit a service quota increase
|
|
1377
|
-
* request to the quota <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#outbound-communications-quotas">Amazon Connect campaigns</a>. </p>
|
|
1378
|
-
* </note>
|
|
925
|
+
* @see {@link StartOutboundVoiceContactCommand}
|
|
1379
926
|
*/
|
|
1380
927
|
startOutboundVoiceContact(args: StartOutboundVoiceContactCommandInput, options?: __HttpHandlerOptions): Promise<StartOutboundVoiceContactCommandOutput>;
|
|
1381
928
|
startOutboundVoiceContact(args: StartOutboundVoiceContactCommandInput, cb: (err: any, data?: StartOutboundVoiceContactCommandOutput) => void): void;
|
|
1382
929
|
startOutboundVoiceContact(args: StartOutboundVoiceContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartOutboundVoiceContactCommandOutput) => void): void;
|
|
1383
930
|
/**
|
|
1384
|
-
* @
|
|
1385
|
-
* <p>Initiates a flow to start a new task.</p>
|
|
931
|
+
* @see {@link StartTaskContactCommand}
|
|
1386
932
|
*/
|
|
1387
933
|
startTaskContact(args: StartTaskContactCommandInput, options?: __HttpHandlerOptions): Promise<StartTaskContactCommandOutput>;
|
|
1388
934
|
startTaskContact(args: StartTaskContactCommandInput, cb: (err: any, data?: StartTaskContactCommandOutput) => void): void;
|
|
1389
935
|
startTaskContact(args: StartTaskContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartTaskContactCommandOutput) => void): void;
|
|
1390
936
|
/**
|
|
1391
|
-
* @
|
|
1392
|
-
* <p>Ends the specified contact. This call does not work for the following initiation
|
|
1393
|
-
* methods:</p>
|
|
1394
|
-
* <ul>
|
|
1395
|
-
* <li>
|
|
1396
|
-
* <p>DISCONNECT</p>
|
|
1397
|
-
* </li>
|
|
1398
|
-
* <li>
|
|
1399
|
-
* <p>TRANSFER</p>
|
|
1400
|
-
* </li>
|
|
1401
|
-
* <li>
|
|
1402
|
-
* <p>QUEUE_TRANSFER</p>
|
|
1403
|
-
* </li>
|
|
1404
|
-
* </ul>
|
|
937
|
+
* @see {@link StopContactCommand}
|
|
1405
938
|
*/
|
|
1406
939
|
stopContact(args: StopContactCommandInput, options?: __HttpHandlerOptions): Promise<StopContactCommandOutput>;
|
|
1407
940
|
stopContact(args: StopContactCommandInput, cb: (err: any, data?: StopContactCommandOutput) => void): void;
|
|
1408
941
|
stopContact(args: StopContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopContactCommandOutput) => void): void;
|
|
1409
942
|
/**
|
|
1410
|
-
* @
|
|
1411
|
-
* <p>Stops recording a call when a contact is being recorded. StopContactRecording is a one-time
|
|
1412
|
-
* action. If you use StopContactRecording to stop recording an ongoing call, you can't use
|
|
1413
|
-
* StartContactRecording to restart it. For scenarios where the recording has started and you want
|
|
1414
|
-
* to suspend it for sensitive information (for example, to collect a credit card number), and then
|
|
1415
|
-
* restart it, use SuspendContactRecording and ResumeContactRecording.</p>
|
|
1416
|
-
* <p>Only voice recordings are supported at this time.</p>
|
|
943
|
+
* @see {@link StopContactRecordingCommand}
|
|
1417
944
|
*/
|
|
1418
945
|
stopContactRecording(args: StopContactRecordingCommandInput, options?: __HttpHandlerOptions): Promise<StopContactRecordingCommandOutput>;
|
|
1419
946
|
stopContactRecording(args: StopContactRecordingCommandInput, cb: (err: any, data?: StopContactRecordingCommandOutput) => void): void;
|
|
1420
947
|
stopContactRecording(args: StopContactRecordingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopContactRecordingCommandOutput) => void): void;
|
|
1421
948
|
/**
|
|
1422
|
-
* @
|
|
1423
|
-
* <p> Ends message streaming on a specified contact. To restart message streaming on that
|
|
1424
|
-
* contact, call the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_StartContactStreaming.html">StartContactStreaming</a>
|
|
1425
|
-
* API. </p>
|
|
949
|
+
* @see {@link StopContactStreamingCommand}
|
|
1426
950
|
*/
|
|
1427
951
|
stopContactStreaming(args: StopContactStreamingCommandInput, options?: __HttpHandlerOptions): Promise<StopContactStreamingCommandOutput>;
|
|
1428
952
|
stopContactStreaming(args: StopContactStreamingCommandInput, cb: (err: any, data?: StopContactStreamingCommandOutput) => void): void;
|
|
1429
953
|
stopContactStreaming(args: StopContactStreamingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopContactStreamingCommandOutput) => void): void;
|
|
1430
954
|
/**
|
|
1431
|
-
* @
|
|
1432
|
-
* <p>When a contact is being recorded, this API suspends recording the call. For example, you
|
|
1433
|
-
* might suspend the call recording while collecting sensitive information, such as a credit card
|
|
1434
|
-
* number. Then use ResumeContactRecording to restart recording. </p>
|
|
1435
|
-
* <p>The period of time that the recording is suspended is filled with silence in the final
|
|
1436
|
-
* recording. </p>
|
|
1437
|
-
* <p>Only voice recordings are supported at this time.</p>
|
|
955
|
+
* @see {@link SuspendContactRecordingCommand}
|
|
1438
956
|
*/
|
|
1439
957
|
suspendContactRecording(args: SuspendContactRecordingCommandInput, options?: __HttpHandlerOptions): Promise<SuspendContactRecordingCommandOutput>;
|
|
1440
958
|
suspendContactRecording(args: SuspendContactRecordingCommandInput, cb: (err: any, data?: SuspendContactRecordingCommandOutput) => void): void;
|
|
1441
959
|
suspendContactRecording(args: SuspendContactRecordingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SuspendContactRecordingCommandOutput) => void): void;
|
|
1442
960
|
/**
|
|
1443
|
-
* @
|
|
1444
|
-
* <p>Adds the specified tags to the specified resource.</p>
|
|
1445
|
-
* <p>Some of the supported resource types are agents, routing profiles, queues, quick connects,
|
|
1446
|
-
* contact flows, agent statuses, hours of operation, phone numbers, security profiles, and task
|
|
1447
|
-
* templates. For a complete list, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/tagging.html">Tagging resources in Amazon Connect</a>.</p>
|
|
1448
|
-
* <p>For sample policies that use tags, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/security_iam_id-based-policy-examples.html">Amazon Connect
|
|
1449
|
-
* Identity-Based Policy Examples</a> in the <i>Amazon Connect Administrator
|
|
1450
|
-
* Guide</i>.</p>
|
|
961
|
+
* @see {@link TagResourceCommand}
|
|
1451
962
|
*/
|
|
1452
963
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
1453
964
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
1454
965
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
1455
966
|
/**
|
|
1456
|
-
* @
|
|
1457
|
-
* <p>Transfers contacts from one agent or queue to another agent or queue at any point after a
|
|
1458
|
-
* contact is created. You can transfer a contact to another queue by providing the flow which
|
|
1459
|
-
* orchestrates the contact to the destination queue. This gives you more control over contact
|
|
1460
|
-
* handling and helps you adhere to the service level agreement (SLA) guaranteed to your
|
|
1461
|
-
* customers.</p>
|
|
1462
|
-
* <p>Note the following requirements:</p>
|
|
1463
|
-
* <ul>
|
|
1464
|
-
* <li>
|
|
1465
|
-
* <p>Transfer is supported for only <code>TASK</code> contacts.</p>
|
|
1466
|
-
* </li>
|
|
1467
|
-
* <li>
|
|
1468
|
-
* <p>Do not use both <code>QueueId</code> and <code>UserId</code> in the same call.</p>
|
|
1469
|
-
* </li>
|
|
1470
|
-
* <li>
|
|
1471
|
-
* <p>The following flow types are supported: Inbound flow, Transfer to agent flow, and Transfer
|
|
1472
|
-
* to queue flow.</p>
|
|
1473
|
-
* </li>
|
|
1474
|
-
* <li>
|
|
1475
|
-
* <p>The <code>TransferContact</code> API can be called only on active contacts.</p>
|
|
1476
|
-
* </li>
|
|
1477
|
-
* <li>
|
|
1478
|
-
* <p>A contact cannot be transferred more than 11 times.</p>
|
|
1479
|
-
* </li>
|
|
1480
|
-
* </ul>
|
|
967
|
+
* @see {@link TransferContactCommand}
|
|
1481
968
|
*/
|
|
1482
969
|
transferContact(args: TransferContactCommandInput, options?: __HttpHandlerOptions): Promise<TransferContactCommandOutput>;
|
|
1483
970
|
transferContact(args: TransferContactCommandInput, cb: (err: any, data?: TransferContactCommandOutput) => void): void;
|
|
1484
971
|
transferContact(args: TransferContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TransferContactCommandOutput) => void): void;
|
|
1485
972
|
/**
|
|
1486
|
-
* @
|
|
1487
|
-
* <p>Removes the specified tags from the specified resource.</p>
|
|
973
|
+
* @see {@link UntagResourceCommand}
|
|
1488
974
|
*/
|
|
1489
975
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
1490
976
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
1491
977
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
1492
978
|
/**
|
|
1493
|
-
* @
|
|
1494
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1495
|
-
* <p>Updates agent status.</p>
|
|
979
|
+
* @see {@link UpdateAgentStatusCommand}
|
|
1496
980
|
*/
|
|
1497
981
|
updateAgentStatus(args: UpdateAgentStatusCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAgentStatusCommandOutput>;
|
|
1498
982
|
updateAgentStatus(args: UpdateAgentStatusCommandInput, cb: (err: any, data?: UpdateAgentStatusCommandOutput) => void): void;
|
|
1499
983
|
updateAgentStatus(args: UpdateAgentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAgentStatusCommandOutput) => void): void;
|
|
1500
984
|
/**
|
|
1501
|
-
* @
|
|
1502
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1503
|
-
* <p>Adds or updates user-defined contact information associated with the specified contact. At
|
|
1504
|
-
* least one field to be updated must be present in the request.</p>
|
|
1505
|
-
* <important>
|
|
1506
|
-
* <p>You can add or update user-defined contact information for both ongoing and completed
|
|
1507
|
-
* contacts.</p>
|
|
1508
|
-
* </important>
|
|
985
|
+
* @see {@link UpdateContactCommand}
|
|
1509
986
|
*/
|
|
1510
987
|
updateContact(args: UpdateContactCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactCommandOutput>;
|
|
1511
988
|
updateContact(args: UpdateContactCommandInput, cb: (err: any, data?: UpdateContactCommandOutput) => void): void;
|
|
1512
989
|
updateContact(args: UpdateContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactCommandOutput) => void): void;
|
|
1513
990
|
/**
|
|
1514
|
-
* @
|
|
1515
|
-
* <p>Creates or updates
|
|
1516
|
-
* user-defined contact attributes
|
|
1517
|
-
* associated with the specified contact.</p>
|
|
1518
|
-
* <p>You can create or update user-defined attributes for both ongoing and completed contacts.
|
|
1519
|
-
* For example, while the call is active, you can update the customer's name or the reason the
|
|
1520
|
-
* customer called. You can add notes about steps that the agent took during the call that display
|
|
1521
|
-
* to the next agent that takes the call. You can also update attributes for a contact using data
|
|
1522
|
-
* from your CRM application and save the data with the contact in Amazon Connect. You could
|
|
1523
|
-
* also flag calls for additional analysis, such as legal review or to identify abusive
|
|
1524
|
-
* callers.</p>
|
|
1525
|
-
* <p>Contact attributes are available in Amazon Connect for 24 months, and are then deleted.
|
|
1526
|
-
* For information about contact record retention and the maximum size of the contact record
|
|
1527
|
-
* attributes section, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#feature-limits">Feature
|
|
1528
|
-
* specifications</a> in the <i>Amazon Connect Administrator Guide</i>. </p>
|
|
991
|
+
* @see {@link UpdateContactAttributesCommand}
|
|
1529
992
|
*/
|
|
1530
993
|
updateContactAttributes(args: UpdateContactAttributesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactAttributesCommandOutput>;
|
|
1531
994
|
updateContactAttributes(args: UpdateContactAttributesCommandInput, cb: (err: any, data?: UpdateContactAttributesCommandOutput) => void): void;
|
|
1532
995
|
updateContactAttributes(args: UpdateContactAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactAttributesCommandOutput) => void): void;
|
|
1533
996
|
/**
|
|
1534
|
-
* @
|
|
1535
|
-
* <p>Updates the specified flow.</p>
|
|
1536
|
-
* <p>You can also create and update flows using the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/flow-language.html">Amazon Connect
|
|
1537
|
-
* Flow language</a>.</p>
|
|
997
|
+
* @see {@link UpdateContactFlowContentCommand}
|
|
1538
998
|
*/
|
|
1539
999
|
updateContactFlowContent(args: UpdateContactFlowContentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactFlowContentCommandOutput>;
|
|
1540
1000
|
updateContactFlowContent(args: UpdateContactFlowContentCommandInput, cb: (err: any, data?: UpdateContactFlowContentCommandOutput) => void): void;
|
|
1541
1001
|
updateContactFlowContent(args: UpdateContactFlowContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactFlowContentCommandOutput) => void): void;
|
|
1542
1002
|
/**
|
|
1543
|
-
* @
|
|
1544
|
-
* <p>Updates metadata about specified flow.</p>
|
|
1003
|
+
* @see {@link UpdateContactFlowMetadataCommand}
|
|
1545
1004
|
*/
|
|
1546
1005
|
updateContactFlowMetadata(args: UpdateContactFlowMetadataCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactFlowMetadataCommandOutput>;
|
|
1547
1006
|
updateContactFlowMetadata(args: UpdateContactFlowMetadataCommandInput, cb: (err: any, data?: UpdateContactFlowMetadataCommandOutput) => void): void;
|
|
1548
1007
|
updateContactFlowMetadata(args: UpdateContactFlowMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactFlowMetadataCommandOutput) => void): void;
|
|
1549
1008
|
/**
|
|
1550
|
-
* @
|
|
1551
|
-
* <p>Updates specified flow module for the specified Amazon Connect instance. </p>
|
|
1009
|
+
* @see {@link UpdateContactFlowModuleContentCommand}
|
|
1552
1010
|
*/
|
|
1553
1011
|
updateContactFlowModuleContent(args: UpdateContactFlowModuleContentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactFlowModuleContentCommandOutput>;
|
|
1554
1012
|
updateContactFlowModuleContent(args: UpdateContactFlowModuleContentCommandInput, cb: (err: any, data?: UpdateContactFlowModuleContentCommandOutput) => void): void;
|
|
1555
1013
|
updateContactFlowModuleContent(args: UpdateContactFlowModuleContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactFlowModuleContentCommandOutput) => void): void;
|
|
1556
1014
|
/**
|
|
1557
|
-
* @
|
|
1558
|
-
* <p>Updates metadata about specified flow module.</p>
|
|
1015
|
+
* @see {@link UpdateContactFlowModuleMetadataCommand}
|
|
1559
1016
|
*/
|
|
1560
1017
|
updateContactFlowModuleMetadata(args: UpdateContactFlowModuleMetadataCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactFlowModuleMetadataCommandOutput>;
|
|
1561
1018
|
updateContactFlowModuleMetadata(args: UpdateContactFlowModuleMetadataCommandInput, cb: (err: any, data?: UpdateContactFlowModuleMetadataCommandOutput) => void): void;
|
|
1562
1019
|
updateContactFlowModuleMetadata(args: UpdateContactFlowModuleMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactFlowModuleMetadataCommandOutput) => void): void;
|
|
1563
1020
|
/**
|
|
1564
|
-
* @
|
|
1565
|
-
* <p>The name of the flow.</p>
|
|
1566
|
-
* <p>You can also create and update flows using the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/flow-language.html">Amazon Connect
|
|
1567
|
-
* Flow language</a>.</p>
|
|
1021
|
+
* @see {@link UpdateContactFlowNameCommand}
|
|
1568
1022
|
*/
|
|
1569
1023
|
updateContactFlowName(args: UpdateContactFlowNameCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactFlowNameCommandOutput>;
|
|
1570
1024
|
updateContactFlowName(args: UpdateContactFlowNameCommandInput, cb: (err: any, data?: UpdateContactFlowNameCommandOutput) => void): void;
|
|
1571
1025
|
updateContactFlowName(args: UpdateContactFlowNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactFlowNameCommandOutput) => void): void;
|
|
1572
1026
|
/**
|
|
1573
|
-
* @
|
|
1574
|
-
* <p>Updates the scheduled time of a task contact that is already scheduled.</p>
|
|
1027
|
+
* @see {@link UpdateContactScheduleCommand}
|
|
1575
1028
|
*/
|
|
1576
1029
|
updateContactSchedule(args: UpdateContactScheduleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactScheduleCommandOutput>;
|
|
1577
1030
|
updateContactSchedule(args: UpdateContactScheduleCommandInput, cb: (err: any, data?: UpdateContactScheduleCommandOutput) => void): void;
|
|
1578
1031
|
updateContactSchedule(args: UpdateContactScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactScheduleCommandOutput) => void): void;
|
|
1579
1032
|
/**
|
|
1580
|
-
* @
|
|
1581
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1582
|
-
* <p>Updates the hours of operation.</p>
|
|
1033
|
+
* @see {@link UpdateHoursOfOperationCommand}
|
|
1583
1034
|
*/
|
|
1584
1035
|
updateHoursOfOperation(args: UpdateHoursOfOperationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateHoursOfOperationCommandOutput>;
|
|
1585
1036
|
updateHoursOfOperation(args: UpdateHoursOfOperationCommandInput, cb: (err: any, data?: UpdateHoursOfOperationCommandOutput) => void): void;
|
|
1586
1037
|
updateHoursOfOperation(args: UpdateHoursOfOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateHoursOfOperationCommandOutput) => void): void;
|
|
1587
1038
|
/**
|
|
1588
|
-
* @
|
|
1589
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1590
|
-
* <p>Updates the value for the specified attribute type.</p>
|
|
1039
|
+
* @see {@link UpdateInstanceAttributeCommand}
|
|
1591
1040
|
*/
|
|
1592
1041
|
updateInstanceAttribute(args: UpdateInstanceAttributeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateInstanceAttributeCommandOutput>;
|
|
1593
1042
|
updateInstanceAttribute(args: UpdateInstanceAttributeCommandInput, cb: (err: any, data?: UpdateInstanceAttributeCommandOutput) => void): void;
|
|
1594
1043
|
updateInstanceAttribute(args: UpdateInstanceAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateInstanceAttributeCommandOutput) => void): void;
|
|
1595
1044
|
/**
|
|
1596
|
-
* @
|
|
1597
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1598
|
-
* <p>Updates an existing configuration for a resource type. This API is idempotent.</p>
|
|
1045
|
+
* @see {@link UpdateInstanceStorageConfigCommand}
|
|
1599
1046
|
*/
|
|
1600
1047
|
updateInstanceStorageConfig(args: UpdateInstanceStorageConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateInstanceStorageConfigCommandOutput>;
|
|
1601
1048
|
updateInstanceStorageConfig(args: UpdateInstanceStorageConfigCommandInput, cb: (err: any, data?: UpdateInstanceStorageConfigCommandOutput) => void): void;
|
|
1602
1049
|
updateInstanceStorageConfig(args: UpdateInstanceStorageConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateInstanceStorageConfigCommandOutput) => void): void;
|
|
1603
1050
|
/**
|
|
1604
|
-
* @
|
|
1605
|
-
* <p>Updates timeouts for when human chat participants are to be considered idle, and when agents
|
|
1606
|
-
* are automatically disconnected from a chat due to idleness. You can set four timers:</p>
|
|
1607
|
-
* <ul>
|
|
1608
|
-
* <li>
|
|
1609
|
-
* <p>Customer idle timeout</p>
|
|
1610
|
-
* </li>
|
|
1611
|
-
* <li>
|
|
1612
|
-
* <p>Customer auto-disconnect timeout</p>
|
|
1613
|
-
* </li>
|
|
1614
|
-
* <li>
|
|
1615
|
-
* <p>Agent idle timeout</p>
|
|
1616
|
-
* </li>
|
|
1617
|
-
* <li>
|
|
1618
|
-
* <p>Agent auto-disconnect timeout</p>
|
|
1619
|
-
* </li>
|
|
1620
|
-
* </ul>
|
|
1621
|
-
* <p>For more information about how chat timeouts work, see
|
|
1622
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/setup-chat-timeouts.html">Set up chat timeouts for human participants</a>. </p>
|
|
1051
|
+
* @see {@link UpdateParticipantRoleConfigCommand}
|
|
1623
1052
|
*/
|
|
1624
1053
|
updateParticipantRoleConfig(args: UpdateParticipantRoleConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateParticipantRoleConfigCommandOutput>;
|
|
1625
1054
|
updateParticipantRoleConfig(args: UpdateParticipantRoleConfigCommandInput, cb: (err: any, data?: UpdateParticipantRoleConfigCommandOutput) => void): void;
|
|
1626
1055
|
updateParticipantRoleConfig(args: UpdateParticipantRoleConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateParticipantRoleConfigCommandOutput) => void): void;
|
|
1627
1056
|
/**
|
|
1628
|
-
* @
|
|
1629
|
-
* <p>Updates your claimed phone number from its current Amazon Connect instance or traffic distribution group to
|
|
1630
|
-
* another Amazon Connect instance or traffic distribution group in the same Amazon Web Services Region.</p>
|
|
1631
|
-
* <important>
|
|
1632
|
-
* <p>You can call <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribePhoneNumber.html">DescribePhoneNumber</a> API
|
|
1633
|
-
* to verify the status of a previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdatePhoneNumber.html">UpdatePhoneNumber</a>
|
|
1634
|
-
* operation.</p>
|
|
1635
|
-
* </important>
|
|
1057
|
+
* @see {@link UpdatePhoneNumberCommand}
|
|
1636
1058
|
*/
|
|
1637
1059
|
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePhoneNumberCommandOutput>;
|
|
1638
1060
|
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, cb: (err: any, data?: UpdatePhoneNumberCommandOutput) => void): void;
|
|
1639
1061
|
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePhoneNumberCommandOutput) => void): void;
|
|
1640
1062
|
/**
|
|
1641
|
-
* @
|
|
1642
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1643
|
-
* <p>Updates the hours of operation for the specified queue.</p>
|
|
1063
|
+
* @see {@link UpdateQueueHoursOfOperationCommand}
|
|
1644
1064
|
*/
|
|
1645
1065
|
updateQueueHoursOfOperation(args: UpdateQueueHoursOfOperationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueHoursOfOperationCommandOutput>;
|
|
1646
1066
|
updateQueueHoursOfOperation(args: UpdateQueueHoursOfOperationCommandInput, cb: (err: any, data?: UpdateQueueHoursOfOperationCommandOutput) => void): void;
|
|
1647
1067
|
updateQueueHoursOfOperation(args: UpdateQueueHoursOfOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQueueHoursOfOperationCommandOutput) => void): void;
|
|
1648
1068
|
/**
|
|
1649
|
-
* @
|
|
1650
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1651
|
-
* <p>Updates the maximum number of contacts allowed in a queue before it is considered
|
|
1652
|
-
* full.</p>
|
|
1069
|
+
* @see {@link UpdateQueueMaxContactsCommand}
|
|
1653
1070
|
*/
|
|
1654
1071
|
updateQueueMaxContacts(args: UpdateQueueMaxContactsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueMaxContactsCommandOutput>;
|
|
1655
1072
|
updateQueueMaxContacts(args: UpdateQueueMaxContactsCommandInput, cb: (err: any, data?: UpdateQueueMaxContactsCommandOutput) => void): void;
|
|
1656
1073
|
updateQueueMaxContacts(args: UpdateQueueMaxContactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQueueMaxContactsCommandOutput) => void): void;
|
|
1657
1074
|
/**
|
|
1658
|
-
* @
|
|
1659
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1660
|
-
* <p>Updates the name and description of a queue. At least <code>Name</code> or <code>Description</code> must be provided.</p>
|
|
1075
|
+
* @see {@link UpdateQueueNameCommand}
|
|
1661
1076
|
*/
|
|
1662
1077
|
updateQueueName(args: UpdateQueueNameCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueNameCommandOutput>;
|
|
1663
1078
|
updateQueueName(args: UpdateQueueNameCommandInput, cb: (err: any, data?: UpdateQueueNameCommandOutput) => void): void;
|
|
1664
1079
|
updateQueueName(args: UpdateQueueNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQueueNameCommandOutput) => void): void;
|
|
1665
1080
|
/**
|
|
1666
|
-
* @
|
|
1667
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1668
|
-
* <p>Updates the outbound caller ID name, number, and outbound whisper flow for a specified
|
|
1669
|
-
* queue.</p>
|
|
1670
|
-
* <important>
|
|
1671
|
-
* <p>If the number being used in the input is claimed to a traffic distribution group, and you are calling this API
|
|
1672
|
-
* using an instance in the Amazon Web Services Region where the traffic distribution group was created, you can use
|
|
1673
|
-
* either a full phone number ARN or UUID value for the <code>OutboundCallerIdNumberId</code> value
|
|
1674
|
-
* of the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_OutboundCallerConfig">OutboundCallerConfig</a> request body parameter. However, if the number is claimed to a
|
|
1675
|
-
* traffic distribution group and you are calling this API using an instance in the alternate Amazon Web Services Region
|
|
1676
|
-
* associated with the traffic distribution group, you must provide a full phone number ARN. If a UUID is provided
|
|
1677
|
-
* in
|
|
1678
|
-
* this scenario, you will receive a
|
|
1679
|
-
* <code>ResourceNotFoundException</code>.</p>
|
|
1680
|
-
* </important>
|
|
1081
|
+
* @see {@link UpdateQueueOutboundCallerConfigCommand}
|
|
1681
1082
|
*/
|
|
1682
1083
|
updateQueueOutboundCallerConfig(args: UpdateQueueOutboundCallerConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueOutboundCallerConfigCommandOutput>;
|
|
1683
1084
|
updateQueueOutboundCallerConfig(args: UpdateQueueOutboundCallerConfigCommandInput, cb: (err: any, data?: UpdateQueueOutboundCallerConfigCommandOutput) => void): void;
|
|
1684
1085
|
updateQueueOutboundCallerConfig(args: UpdateQueueOutboundCallerConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQueueOutboundCallerConfigCommandOutput) => void): void;
|
|
1685
1086
|
/**
|
|
1686
|
-
* @
|
|
1687
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1688
|
-
* <p>Updates the status of the queue.</p>
|
|
1087
|
+
* @see {@link UpdateQueueStatusCommand}
|
|
1689
1088
|
*/
|
|
1690
1089
|
updateQueueStatus(args: UpdateQueueStatusCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueStatusCommandOutput>;
|
|
1691
1090
|
updateQueueStatus(args: UpdateQueueStatusCommandInput, cb: (err: any, data?: UpdateQueueStatusCommandOutput) => void): void;
|
|
1692
1091
|
updateQueueStatus(args: UpdateQueueStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQueueStatusCommandOutput) => void): void;
|
|
1693
1092
|
/**
|
|
1694
|
-
* @
|
|
1695
|
-
* <p>Updates the configuration settings for the specified quick connect.</p>
|
|
1093
|
+
* @see {@link UpdateQuickConnectConfigCommand}
|
|
1696
1094
|
*/
|
|
1697
1095
|
updateQuickConnectConfig(args: UpdateQuickConnectConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQuickConnectConfigCommandOutput>;
|
|
1698
1096
|
updateQuickConnectConfig(args: UpdateQuickConnectConfigCommandInput, cb: (err: any, data?: UpdateQuickConnectConfigCommandOutput) => void): void;
|
|
1699
1097
|
updateQuickConnectConfig(args: UpdateQuickConnectConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQuickConnectConfigCommandOutput) => void): void;
|
|
1700
1098
|
/**
|
|
1701
|
-
* @
|
|
1702
|
-
* <p>Updates the name and description of a quick connect. The request accepts the following data in JSON format. At least <code>Name</code> or <code>Description</code> must be provided.</p>
|
|
1099
|
+
* @see {@link UpdateQuickConnectNameCommand}
|
|
1703
1100
|
*/
|
|
1704
1101
|
updateQuickConnectName(args: UpdateQuickConnectNameCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQuickConnectNameCommandOutput>;
|
|
1705
1102
|
updateQuickConnectName(args: UpdateQuickConnectNameCommandInput, cb: (err: any, data?: UpdateQuickConnectNameCommandOutput) => void): void;
|
|
1706
1103
|
updateQuickConnectName(args: UpdateQuickConnectNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQuickConnectNameCommandOutput) => void): void;
|
|
1707
1104
|
/**
|
|
1708
|
-
* @
|
|
1709
|
-
* <p>Updates the channels that agents can handle in the Contact Control Panel (CCP) for a routing
|
|
1710
|
-
* profile.</p>
|
|
1105
|
+
* @see {@link UpdateRoutingProfileConcurrencyCommand}
|
|
1711
1106
|
*/
|
|
1712
1107
|
updateRoutingProfileConcurrency(args: UpdateRoutingProfileConcurrencyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRoutingProfileConcurrencyCommandOutput>;
|
|
1713
1108
|
updateRoutingProfileConcurrency(args: UpdateRoutingProfileConcurrencyCommandInput, cb: (err: any, data?: UpdateRoutingProfileConcurrencyCommandOutput) => void): void;
|
|
1714
1109
|
updateRoutingProfileConcurrency(args: UpdateRoutingProfileConcurrencyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRoutingProfileConcurrencyCommandOutput) => void): void;
|
|
1715
1110
|
/**
|
|
1716
|
-
* @
|
|
1717
|
-
* <p>Updates the default outbound queue of a routing profile.</p>
|
|
1111
|
+
* @see {@link UpdateRoutingProfileDefaultOutboundQueueCommand}
|
|
1718
1112
|
*/
|
|
1719
1113
|
updateRoutingProfileDefaultOutboundQueue(args: UpdateRoutingProfileDefaultOutboundQueueCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRoutingProfileDefaultOutboundQueueCommandOutput>;
|
|
1720
1114
|
updateRoutingProfileDefaultOutboundQueue(args: UpdateRoutingProfileDefaultOutboundQueueCommandInput, cb: (err: any, data?: UpdateRoutingProfileDefaultOutboundQueueCommandOutput) => void): void;
|
|
1721
1115
|
updateRoutingProfileDefaultOutboundQueue(args: UpdateRoutingProfileDefaultOutboundQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRoutingProfileDefaultOutboundQueueCommandOutput) => void): void;
|
|
1722
1116
|
/**
|
|
1723
|
-
* @
|
|
1724
|
-
* <p>Updates the name and description of a routing profile. The request accepts the following data in JSON format.
|
|
1725
|
-
* At least <code>Name</code> or <code>Description</code> must be provided.</p>
|
|
1117
|
+
* @see {@link UpdateRoutingProfileNameCommand}
|
|
1726
1118
|
*/
|
|
1727
1119
|
updateRoutingProfileName(args: UpdateRoutingProfileNameCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRoutingProfileNameCommandOutput>;
|
|
1728
1120
|
updateRoutingProfileName(args: UpdateRoutingProfileNameCommandInput, cb: (err: any, data?: UpdateRoutingProfileNameCommandOutput) => void): void;
|
|
1729
1121
|
updateRoutingProfileName(args: UpdateRoutingProfileNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRoutingProfileNameCommandOutput) => void): void;
|
|
1730
1122
|
/**
|
|
1731
|
-
* @
|
|
1732
|
-
* <p>Updates the properties associated with a set of queues for a routing profile.</p>
|
|
1123
|
+
* @see {@link UpdateRoutingProfileQueuesCommand}
|
|
1733
1124
|
*/
|
|
1734
1125
|
updateRoutingProfileQueues(args: UpdateRoutingProfileQueuesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRoutingProfileQueuesCommandOutput>;
|
|
1735
1126
|
updateRoutingProfileQueues(args: UpdateRoutingProfileQueuesCommandInput, cb: (err: any, data?: UpdateRoutingProfileQueuesCommandOutput) => void): void;
|
|
1736
1127
|
updateRoutingProfileQueues(args: UpdateRoutingProfileQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRoutingProfileQueuesCommandOutput) => void): void;
|
|
1737
1128
|
/**
|
|
1738
|
-
* @
|
|
1739
|
-
* <p>Updates a rule for the specified Amazon Connect instance.</p>
|
|
1740
|
-
* <p>Use the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/connect-rules-language.html">Rules Function language</a> to
|
|
1741
|
-
* code conditions for the rule. </p>
|
|
1129
|
+
* @see {@link UpdateRuleCommand}
|
|
1742
1130
|
*/
|
|
1743
1131
|
updateRule(args: UpdateRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRuleCommandOutput>;
|
|
1744
1132
|
updateRule(args: UpdateRuleCommandInput, cb: (err: any, data?: UpdateRuleCommandOutput) => void): void;
|
|
1745
1133
|
updateRule(args: UpdateRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRuleCommandOutput) => void): void;
|
|
1746
1134
|
/**
|
|
1747
|
-
* @
|
|
1748
|
-
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
1749
|
-
* <p>Updates a security profile.</p>
|
|
1135
|
+
* @see {@link UpdateSecurityProfileCommand}
|
|
1750
1136
|
*/
|
|
1751
1137
|
updateSecurityProfile(args: UpdateSecurityProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSecurityProfileCommandOutput>;
|
|
1752
1138
|
updateSecurityProfile(args: UpdateSecurityProfileCommandInput, cb: (err: any, data?: UpdateSecurityProfileCommandOutput) => void): void;
|
|
1753
1139
|
updateSecurityProfile(args: UpdateSecurityProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSecurityProfileCommandOutput) => void): void;
|
|
1754
1140
|
/**
|
|
1755
|
-
* @
|
|
1756
|
-
* <p>Updates details about a specific task template in the specified Amazon Connect instance.
|
|
1757
|
-
* This operation does not support partial updates. Instead it does a full update of template
|
|
1758
|
-
* content.</p>
|
|
1141
|
+
* @see {@link UpdateTaskTemplateCommand}
|
|
1759
1142
|
*/
|
|
1760
1143
|
updateTaskTemplate(args: UpdateTaskTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTaskTemplateCommandOutput>;
|
|
1761
1144
|
updateTaskTemplate(args: UpdateTaskTemplateCommandInput, cb: (err: any, data?: UpdateTaskTemplateCommandOutput) => void): void;
|
|
1762
1145
|
updateTaskTemplate(args: UpdateTaskTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTaskTemplateCommandOutput) => void): void;
|
|
1763
1146
|
/**
|
|
1764
|
-
* @
|
|
1765
|
-
* <p>Updates the traffic distribution for a given traffic distribution group. </p>
|
|
1766
|
-
* <p>For more information about updating a traffic distribution group, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/update-telephony-traffic-distribution.html">Update telephony
|
|
1767
|
-
* traffic distribution across Amazon Web Services Regions
|
|
1768
|
-
* </a> in the <i>Amazon Connect Administrator Guide</i>. </p>
|
|
1147
|
+
* @see {@link UpdateTrafficDistributionCommand}
|
|
1769
1148
|
*/
|
|
1770
1149
|
updateTrafficDistribution(args: UpdateTrafficDistributionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrafficDistributionCommandOutput>;
|
|
1771
1150
|
updateTrafficDistribution(args: UpdateTrafficDistributionCommandInput, cb: (err: any, data?: UpdateTrafficDistributionCommandOutput) => void): void;
|
|
1772
1151
|
updateTrafficDistribution(args: UpdateTrafficDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrafficDistributionCommandOutput) => void): void;
|
|
1773
1152
|
/**
|
|
1774
|
-
* @
|
|
1775
|
-
* <p>Assigns the specified hierarchy group to the specified user.</p>
|
|
1153
|
+
* @see {@link UpdateUserHierarchyCommand}
|
|
1776
1154
|
*/
|
|
1777
1155
|
updateUserHierarchy(args: UpdateUserHierarchyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserHierarchyCommandOutput>;
|
|
1778
1156
|
updateUserHierarchy(args: UpdateUserHierarchyCommandInput, cb: (err: any, data?: UpdateUserHierarchyCommandOutput) => void): void;
|
|
1779
1157
|
updateUserHierarchy(args: UpdateUserHierarchyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserHierarchyCommandOutput) => void): void;
|
|
1780
1158
|
/**
|
|
1781
|
-
* @
|
|
1782
|
-
* <p>Updates the name of the user hierarchy group. </p>
|
|
1159
|
+
* @see {@link UpdateUserHierarchyGroupNameCommand}
|
|
1783
1160
|
*/
|
|
1784
1161
|
updateUserHierarchyGroupName(args: UpdateUserHierarchyGroupNameCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserHierarchyGroupNameCommandOutput>;
|
|
1785
1162
|
updateUserHierarchyGroupName(args: UpdateUserHierarchyGroupNameCommandInput, cb: (err: any, data?: UpdateUserHierarchyGroupNameCommandOutput) => void): void;
|
|
1786
1163
|
updateUserHierarchyGroupName(args: UpdateUserHierarchyGroupNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserHierarchyGroupNameCommandOutput) => void): void;
|
|
1787
1164
|
/**
|
|
1788
|
-
* @
|
|
1789
|
-
* <p>Updates the user hierarchy structure: add, remove, and rename user hierarchy levels.</p>
|
|
1165
|
+
* @see {@link UpdateUserHierarchyStructureCommand}
|
|
1790
1166
|
*/
|
|
1791
1167
|
updateUserHierarchyStructure(args: UpdateUserHierarchyStructureCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserHierarchyStructureCommandOutput>;
|
|
1792
1168
|
updateUserHierarchyStructure(args: UpdateUserHierarchyStructureCommandInput, cb: (err: any, data?: UpdateUserHierarchyStructureCommandOutput) => void): void;
|
|
1793
1169
|
updateUserHierarchyStructure(args: UpdateUserHierarchyStructureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserHierarchyStructureCommandOutput) => void): void;
|
|
1794
1170
|
/**
|
|
1795
|
-
* @
|
|
1796
|
-
* <p>Updates the identity information for the specified user.</p>
|
|
1797
|
-
* <important>
|
|
1798
|
-
* <p>We strongly recommend limiting who has the ability to invoke
|
|
1799
|
-
* <code>UpdateUserIdentityInfo</code>. Someone with that ability can change the login credentials
|
|
1800
|
-
* of other users by changing their email address. This poses a security risk to your organization.
|
|
1801
|
-
* They can change the email address of a user to the attacker's email address, and then reset the
|
|
1802
|
-
* password through email. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-best-practices.html">Best Practices for
|
|
1803
|
-
* Security Profiles</a> in the <i>Amazon Connect Administrator
|
|
1804
|
-
* Guide</i>.</p>
|
|
1805
|
-
* </important>
|
|
1171
|
+
* @see {@link UpdateUserIdentityInfoCommand}
|
|
1806
1172
|
*/
|
|
1807
1173
|
updateUserIdentityInfo(args: UpdateUserIdentityInfoCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserIdentityInfoCommandOutput>;
|
|
1808
1174
|
updateUserIdentityInfo(args: UpdateUserIdentityInfoCommandInput, cb: (err: any, data?: UpdateUserIdentityInfoCommandOutput) => void): void;
|
|
1809
1175
|
updateUserIdentityInfo(args: UpdateUserIdentityInfoCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserIdentityInfoCommandOutput) => void): void;
|
|
1810
1176
|
/**
|
|
1811
|
-
* @
|
|
1812
|
-
* <p>Updates the phone configuration settings for the specified user.</p>
|
|
1177
|
+
* @see {@link UpdateUserPhoneConfigCommand}
|
|
1813
1178
|
*/
|
|
1814
1179
|
updateUserPhoneConfig(args: UpdateUserPhoneConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserPhoneConfigCommandOutput>;
|
|
1815
1180
|
updateUserPhoneConfig(args: UpdateUserPhoneConfigCommandInput, cb: (err: any, data?: UpdateUserPhoneConfigCommandOutput) => void): void;
|
|
1816
1181
|
updateUserPhoneConfig(args: UpdateUserPhoneConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserPhoneConfigCommandOutput) => void): void;
|
|
1817
1182
|
/**
|
|
1818
|
-
* @
|
|
1819
|
-
* <p>Assigns the specified routing profile to the specified user.</p>
|
|
1183
|
+
* @see {@link UpdateUserRoutingProfileCommand}
|
|
1820
1184
|
*/
|
|
1821
1185
|
updateUserRoutingProfile(args: UpdateUserRoutingProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserRoutingProfileCommandOutput>;
|
|
1822
1186
|
updateUserRoutingProfile(args: UpdateUserRoutingProfileCommandInput, cb: (err: any, data?: UpdateUserRoutingProfileCommandOutput) => void): void;
|
|
1823
1187
|
updateUserRoutingProfile(args: UpdateUserRoutingProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserRoutingProfileCommandOutput) => void): void;
|
|
1824
1188
|
/**
|
|
1825
|
-
* @
|
|
1826
|
-
* <p>Assigns the specified security profiles to the specified user.</p>
|
|
1189
|
+
* @see {@link UpdateUserSecurityProfilesCommand}
|
|
1827
1190
|
*/
|
|
1828
1191
|
updateUserSecurityProfiles(args: UpdateUserSecurityProfilesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserSecurityProfilesCommandOutput>;
|
|
1829
1192
|
updateUserSecurityProfiles(args: UpdateUserSecurityProfilesCommandInput, cb: (err: any, data?: UpdateUserSecurityProfilesCommandOutput) => void): void;
|
|
1830
1193
|
updateUserSecurityProfiles(args: UpdateUserSecurityProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserSecurityProfilesCommandOutput) => void): void;
|
|
1831
1194
|
}
|
|
1195
|
+
/**
|
|
1196
|
+
* @public
|
|
1197
|
+
* <p>Amazon Connect is a cloud-based contact center solution that you use to set up and
|
|
1198
|
+
* manage a customer contact center and provide reliable customer engagement at any scale.</p>
|
|
1199
|
+
* <p>Amazon Connect provides metrics and real-time reporting that enable you to optimize
|
|
1200
|
+
* contact routing. You can also resolve customer issues more efficiently by getting customers in
|
|
1201
|
+
* touch with the appropriate agents.</p>
|
|
1202
|
+
* <p>There are limits to the number of Amazon Connect resources that you can create. There
|
|
1203
|
+
* are also limits to the number of requests that you can make per second. For more information, see
|
|
1204
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html">Amazon Connect Service Quotas</a> in the <i>Amazon Connect Administrator
|
|
1205
|
+
* Guide</i>.</p>
|
|
1206
|
+
* <p>You can connect programmatically to an Amazon Web Services service by using an endpoint. For
|
|
1207
|
+
* a list of Amazon Connect endpoints, see <a href="https://docs.aws.amazon.com/general/latest/gr/connect_region.html">Amazon Connect Endpoints</a>.</p>
|
|
1208
|
+
*/
|
|
1209
|
+
export declare class Connect extends ConnectClient implements Connect {
|
|
1210
|
+
}
|