@aws-sdk/client-connect 3.315.0 → 3.318.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.
Files changed (34) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/Connect.js +176 -2380
  3. package/dist-cjs/commands/CreateParticipantCommand.js +45 -0
  4. package/dist-cjs/commands/index.js +1 -0
  5. package/dist-cjs/models/models_0.js +8 -6
  6. package/dist-cjs/models/models_1.js +5 -1
  7. package/dist-cjs/protocols/Aws_restJson1.js +95 -21
  8. package/dist-es/Connect.js +176 -2380
  9. package/dist-es/commands/CreateParticipantCommand.js +41 -0
  10. package/dist-es/commands/index.js +1 -0
  11. package/dist-es/models/models_0.js +6 -4
  12. package/dist-es/models/models_1.js +4 -0
  13. package/dist-es/protocols/Aws_restJson1.js +86 -14
  14. package/dist-types/Connect.d.ts +194 -808
  15. package/dist-types/ConnectClient.d.ts +3 -2
  16. package/dist-types/commands/CreateParticipantCommand.d.ts +88 -0
  17. package/dist-types/commands/ListAgentStatusesCommand.d.ts +2 -1
  18. package/dist-types/commands/ListApprovedOriginsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListBotsCommand.d.ts +1 -2
  20. package/dist-types/commands/index.d.ts +1 -0
  21. package/dist-types/models/models_0.d.ts +97 -86
  22. package/dist-types/models/models_1.d.ts +91 -14
  23. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  24. package/dist-types/ts3.4/Connect.d.ts +19 -1
  25. package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
  26. package/dist-types/ts3.4/commands/CreateParticipantCommand.d.ts +38 -0
  27. package/dist-types/ts3.4/commands/ListAgentStatusesCommand.d.ts +2 -4
  28. package/dist-types/ts3.4/commands/ListApprovedOriginsCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/ListBotsCommand.d.ts +1 -2
  30. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +26 -24
  32. package/dist-types/ts3.4/models/models_1.d.ts +25 -0
  33. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  34. package/package.json +6 -6
@@ -16,6 +16,7 @@ import { CreateContactFlowModuleCommandInput, CreateContactFlowModuleCommandOutp
16
16
  import { CreateHoursOfOperationCommandInput, CreateHoursOfOperationCommandOutput } from "./commands/CreateHoursOfOperationCommand";
17
17
  import { CreateInstanceCommandInput, CreateInstanceCommandOutput } from "./commands/CreateInstanceCommand";
18
18
  import { CreateIntegrationAssociationCommandInput, CreateIntegrationAssociationCommandOutput } from "./commands/CreateIntegrationAssociationCommand";
19
+ import { CreateParticipantCommandInput, CreateParticipantCommandOutput } from "./commands/CreateParticipantCommand";
19
20
  import { CreateQueueCommandInput, CreateQueueCommandOutput } from "./commands/CreateQueueCommand";
20
21
  import { CreateQuickConnectCommandInput, CreateQuickConnectCommandOutput } from "./commands/CreateQuickConnectCommand";
21
22
  import { CreateRoutingProfileCommandInput, CreateRoutingProfileCommandOutput } from "./commands/CreateRoutingProfileCommand";
@@ -170,1662 +171,1047 @@ import { UpdateUserPhoneConfigCommandInput, UpdateUserPhoneConfigCommandOutput }
170
171
  import { UpdateUserRoutingProfileCommandInput, UpdateUserRoutingProfileCommandOutput } from "./commands/UpdateUserRoutingProfileCommand";
171
172
  import { UpdateUserSecurityProfilesCommandInput, UpdateUserSecurityProfilesCommandOutput } from "./commands/UpdateUserSecurityProfilesCommand";
172
173
  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 {
174
+ export interface Connect {
188
175
  /**
189
- * @public
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>
176
+ * @see {@link AssociateApprovedOriginCommand}
192
177
  */
193
178
  associateApprovedOrigin(args: AssociateApprovedOriginCommandInput, options?: __HttpHandlerOptions): Promise<AssociateApprovedOriginCommandOutput>;
194
179
  associateApprovedOrigin(args: AssociateApprovedOriginCommandInput, cb: (err: any, data?: AssociateApprovedOriginCommandOutput) => void): void;
195
180
  associateApprovedOrigin(args: AssociateApprovedOriginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateApprovedOriginCommandOutput) => void): void;
196
181
  /**
197
- * @public
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>
182
+ * @see {@link AssociateBotCommand}
201
183
  */
202
184
  associateBot(args: AssociateBotCommandInput, options?: __HttpHandlerOptions): Promise<AssociateBotCommandOutput>;
203
185
  associateBot(args: AssociateBotCommandInput, cb: (err: any, data?: AssociateBotCommandOutput) => void): void;
204
186
  associateBot(args: AssociateBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateBotCommandOutput) => void): void;
205
187
  /**
206
- * @public
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>
188
+ * @see {@link AssociateDefaultVocabularyCommand}
209
189
  */
210
190
  associateDefaultVocabulary(args: AssociateDefaultVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<AssociateDefaultVocabularyCommandOutput>;
211
191
  associateDefaultVocabulary(args: AssociateDefaultVocabularyCommandInput, cb: (err: any, data?: AssociateDefaultVocabularyCommandOutput) => void): void;
212
192
  associateDefaultVocabulary(args: AssociateDefaultVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateDefaultVocabularyCommandOutput) => void): void;
213
193
  /**
214
- * @public
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>
194
+ * @see {@link AssociateInstanceStorageConfigCommand}
222
195
  */
223
196
  associateInstanceStorageConfig(args: AssociateInstanceStorageConfigCommandInput, options?: __HttpHandlerOptions): Promise<AssociateInstanceStorageConfigCommandOutput>;
224
197
  associateInstanceStorageConfig(args: AssociateInstanceStorageConfigCommandInput, cb: (err: any, data?: AssociateInstanceStorageConfigCommandOutput) => void): void;
225
198
  associateInstanceStorageConfig(args: AssociateInstanceStorageConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateInstanceStorageConfigCommandOutput) => void): void;
226
199
  /**
227
- * @public
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>
200
+ * @see {@link AssociateLambdaFunctionCommand}
231
201
  */
232
202
  associateLambdaFunction(args: AssociateLambdaFunctionCommandInput, options?: __HttpHandlerOptions): Promise<AssociateLambdaFunctionCommandOutput>;
233
203
  associateLambdaFunction(args: AssociateLambdaFunctionCommandInput, cb: (err: any, data?: AssociateLambdaFunctionCommandOutput) => void): void;
234
204
  associateLambdaFunction(args: AssociateLambdaFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateLambdaFunctionCommandOutput) => void): void;
235
205
  /**
236
- * @public
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>
206
+ * @see {@link AssociateLexBotCommand}
240
207
  */
241
208
  associateLexBot(args: AssociateLexBotCommandInput, options?: __HttpHandlerOptions): Promise<AssociateLexBotCommandOutput>;
242
209
  associateLexBot(args: AssociateLexBotCommandInput, cb: (err: any, data?: AssociateLexBotCommandOutput) => void): void;
243
210
  associateLexBot(args: AssociateLexBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateLexBotCommandOutput) => void): void;
244
211
  /**
245
- * @public
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>
212
+ * @see {@link AssociatePhoneNumberContactFlowCommand}
258
213
  */
259
214
  associatePhoneNumberContactFlow(args: AssociatePhoneNumberContactFlowCommandInput, options?: __HttpHandlerOptions): Promise<AssociatePhoneNumberContactFlowCommandOutput>;
260
215
  associatePhoneNumberContactFlow(args: AssociatePhoneNumberContactFlowCommandInput, cb: (err: any, data?: AssociatePhoneNumberContactFlowCommandOutput) => void): void;
261
216
  associatePhoneNumberContactFlow(args: AssociatePhoneNumberContactFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociatePhoneNumberContactFlowCommandOutput) => void): void;
262
217
  /**
263
- * @public
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>
218
+ * @see {@link AssociateQueueQuickConnectsCommand}
266
219
  */
267
220
  associateQueueQuickConnects(args: AssociateQueueQuickConnectsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateQueueQuickConnectsCommandOutput>;
268
221
  associateQueueQuickConnects(args: AssociateQueueQuickConnectsCommandInput, cb: (err: any, data?: AssociateQueueQuickConnectsCommandOutput) => void): void;
269
222
  associateQueueQuickConnects(args: AssociateQueueQuickConnectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateQueueQuickConnectsCommandOutput) => void): void;
270
223
  /**
271
- * @public
272
- * <p>Associates a set of queues with a routing profile.</p>
224
+ * @see {@link AssociateRoutingProfileQueuesCommand}
273
225
  */
274
226
  associateRoutingProfileQueues(args: AssociateRoutingProfileQueuesCommandInput, options?: __HttpHandlerOptions): Promise<AssociateRoutingProfileQueuesCommandOutput>;
275
227
  associateRoutingProfileQueues(args: AssociateRoutingProfileQueuesCommandInput, cb: (err: any, data?: AssociateRoutingProfileQueuesCommandOutput) => void): void;
276
228
  associateRoutingProfileQueues(args: AssociateRoutingProfileQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateRoutingProfileQueuesCommandOutput) => void): void;
277
229
  /**
278
- * @public
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>
230
+ * @see {@link AssociateSecurityKeyCommand}
281
231
  */
282
232
  associateSecurityKey(args: AssociateSecurityKeyCommandInput, options?: __HttpHandlerOptions): Promise<AssociateSecurityKeyCommandOutput>;
283
233
  associateSecurityKey(args: AssociateSecurityKeyCommandInput, cb: (err: any, data?: AssociateSecurityKeyCommandOutput) => void): void;
284
234
  associateSecurityKey(args: AssociateSecurityKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateSecurityKeyCommandOutput) => void): void;
285
235
  /**
286
- * @public
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>
236
+ * @see {@link ClaimPhoneNumberCommand}
298
237
  */
299
238
  claimPhoneNumber(args: ClaimPhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<ClaimPhoneNumberCommandOutput>;
300
239
  claimPhoneNumber(args: ClaimPhoneNumberCommandInput, cb: (err: any, data?: ClaimPhoneNumberCommandOutput) => void): void;
301
240
  claimPhoneNumber(args: ClaimPhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ClaimPhoneNumberCommandOutput) => void): void;
302
241
  /**
303
- * @public
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>
242
+ * @see {@link CreateAgentStatusCommand}
306
243
  */
307
244
  createAgentStatus(args: CreateAgentStatusCommandInput, options?: __HttpHandlerOptions): Promise<CreateAgentStatusCommandOutput>;
308
245
  createAgentStatus(args: CreateAgentStatusCommandInput, cb: (err: any, data?: CreateAgentStatusCommandOutput) => void): void;
309
246
  createAgentStatus(args: CreateAgentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAgentStatusCommandOutput) => void): void;
310
247
  /**
311
- * @public
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>
248
+ * @see {@link CreateContactFlowCommand}
315
249
  */
316
250
  createContactFlow(args: CreateContactFlowCommandInput, options?: __HttpHandlerOptions): Promise<CreateContactFlowCommandOutput>;
317
251
  createContactFlow(args: CreateContactFlowCommandInput, cb: (err: any, data?: CreateContactFlowCommandOutput) => void): void;
318
252
  createContactFlow(args: CreateContactFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContactFlowCommandOutput) => void): void;
319
253
  /**
320
- * @public
321
- * <p>Creates a flow module for the specified Amazon Connect instance. </p>
254
+ * @see {@link CreateContactFlowModuleCommand}
322
255
  */
323
256
  createContactFlowModule(args: CreateContactFlowModuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateContactFlowModuleCommandOutput>;
324
257
  createContactFlowModule(args: CreateContactFlowModuleCommandInput, cb: (err: any, data?: CreateContactFlowModuleCommandOutput) => void): void;
325
258
  createContactFlowModule(args: CreateContactFlowModuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContactFlowModuleCommandOutput) => void): void;
326
259
  /**
327
- * @public
328
- * <p>This API is in preview release for Amazon Connect and is subject to change.</p>
329
- * <p>Creates hours of operation. </p>
260
+ * @see {@link CreateHoursOfOperationCommand}
330
261
  */
331
262
  createHoursOfOperation(args: CreateHoursOfOperationCommandInput, options?: __HttpHandlerOptions): Promise<CreateHoursOfOperationCommandOutput>;
332
263
  createHoursOfOperation(args: CreateHoursOfOperationCommandInput, cb: (err: any, data?: CreateHoursOfOperationCommandOutput) => void): void;
333
264
  createHoursOfOperation(args: CreateHoursOfOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHoursOfOperationCommandOutput) => void): void;
334
265
  /**
335
- * @public
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>
266
+ * @see {@link CreateInstanceCommand}
343
267
  */
344
268
  createInstance(args: CreateInstanceCommandInput, options?: __HttpHandlerOptions): Promise<CreateInstanceCommandOutput>;
345
269
  createInstance(args: CreateInstanceCommandInput, cb: (err: any, data?: CreateInstanceCommandOutput) => void): void;
346
270
  createInstance(args: CreateInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInstanceCommandOutput) => void): void;
347
271
  /**
348
- * @public
349
- * <p>Creates an Amazon Web Services resource association with an Amazon Connect
350
- * instance.</p>
272
+ * @see {@link CreateIntegrationAssociationCommand}
351
273
  */
352
274
  createIntegrationAssociation(args: CreateIntegrationAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateIntegrationAssociationCommandOutput>;
353
275
  createIntegrationAssociation(args: CreateIntegrationAssociationCommandInput, cb: (err: any, data?: CreateIntegrationAssociationCommandOutput) => void): void;
354
276
  createIntegrationAssociation(args: CreateIntegrationAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIntegrationAssociationCommandOutput) => void): void;
355
277
  /**
356
- * @public
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>
278
+ * @see {@link CreateParticipantCommand}
279
+ */
280
+ createParticipant(args: CreateParticipantCommandInput, options?: __HttpHandlerOptions): Promise<CreateParticipantCommandOutput>;
281
+ createParticipant(args: CreateParticipantCommandInput, cb: (err: any, data?: CreateParticipantCommandOutput) => void): void;
282
+ createParticipant(args: CreateParticipantCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateParticipantCommandOutput) => void): void;
283
+ /**
284
+ * @see {@link CreateQueueCommand}
370
285
  */
371
286
  createQueue(args: CreateQueueCommandInput, options?: __HttpHandlerOptions): Promise<CreateQueueCommandOutput>;
372
287
  createQueue(args: CreateQueueCommandInput, cb: (err: any, data?: CreateQueueCommandOutput) => void): void;
373
288
  createQueue(args: CreateQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQueueCommandOutput) => void): void;
374
289
  /**
375
- * @public
376
- * <p>Creates a quick connect for the specified Amazon Connect instance.</p>
290
+ * @see {@link CreateQuickConnectCommand}
377
291
  */
378
292
  createQuickConnect(args: CreateQuickConnectCommandInput, options?: __HttpHandlerOptions): Promise<CreateQuickConnectCommandOutput>;
379
293
  createQuickConnect(args: CreateQuickConnectCommandInput, cb: (err: any, data?: CreateQuickConnectCommandOutput) => void): void;
380
294
  createQuickConnect(args: CreateQuickConnectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQuickConnectCommandOutput) => void): void;
381
295
  /**
382
- * @public
383
- * <p>Creates a new routing profile.</p>
296
+ * @see {@link CreateRoutingProfileCommand}
384
297
  */
385
298
  createRoutingProfile(args: CreateRoutingProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateRoutingProfileCommandOutput>;
386
299
  createRoutingProfile(args: CreateRoutingProfileCommandInput, cb: (err: any, data?: CreateRoutingProfileCommandOutput) => void): void;
387
300
  createRoutingProfile(args: CreateRoutingProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRoutingProfileCommandOutput) => void): void;
388
301
  /**
389
- * @public
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>
302
+ * @see {@link CreateRuleCommand}
393
303
  */
394
304
  createRule(args: CreateRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateRuleCommandOutput>;
395
305
  createRule(args: CreateRuleCommandInput, cb: (err: any, data?: CreateRuleCommandOutput) => void): void;
396
306
  createRule(args: CreateRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRuleCommandOutput) => void): void;
397
307
  /**
398
- * @public
399
- * <p>This API is in preview release for Amazon Connect and is subject to change.</p>
400
- * <p>Creates a security profile.</p>
308
+ * @see {@link CreateSecurityProfileCommand}
401
309
  */
402
310
  createSecurityProfile(args: CreateSecurityProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateSecurityProfileCommandOutput>;
403
311
  createSecurityProfile(args: CreateSecurityProfileCommandInput, cb: (err: any, data?: CreateSecurityProfileCommandOutput) => void): void;
404
312
  createSecurityProfile(args: CreateSecurityProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSecurityProfileCommandOutput) => void): void;
405
313
  /**
406
- * @public
407
- * <p>Creates a new task template in the specified Amazon Connect instance.</p>
314
+ * @see {@link CreateTaskTemplateCommand}
408
315
  */
409
316
  createTaskTemplate(args: CreateTaskTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateTaskTemplateCommandOutput>;
410
317
  createTaskTemplate(args: CreateTaskTemplateCommandInput, cb: (err: any, data?: CreateTaskTemplateCommandOutput) => void): void;
411
318
  createTaskTemplate(args: CreateTaskTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTaskTemplateCommandOutput) => void): void;
412
319
  /**
413
- * @public
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>
320
+ * @see {@link CreateTrafficDistributionGroupCommand}
417
321
  */
418
322
  createTrafficDistributionGroup(args: CreateTrafficDistributionGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrafficDistributionGroupCommandOutput>;
419
323
  createTrafficDistributionGroup(args: CreateTrafficDistributionGroupCommandInput, cb: (err: any, data?: CreateTrafficDistributionGroupCommandOutput) => void): void;
420
324
  createTrafficDistributionGroup(args: CreateTrafficDistributionGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrafficDistributionGroupCommandOutput) => void): void;
421
325
  /**
422
- * @public
423
- * <p>Creates a use case for an integration association.</p>
326
+ * @see {@link CreateUseCaseCommand}
424
327
  */
425
328
  createUseCase(args: CreateUseCaseCommandInput, options?: __HttpHandlerOptions): Promise<CreateUseCaseCommandOutput>;
426
329
  createUseCase(args: CreateUseCaseCommandInput, cb: (err: any, data?: CreateUseCaseCommandOutput) => void): void;
427
330
  createUseCase(args: CreateUseCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUseCaseCommandOutput) => void): void;
428
331
  /**
429
- * @public
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>
332
+ * @see {@link CreateUserCommand}
434
333
  */
435
334
  createUser(args: CreateUserCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserCommandOutput>;
436
335
  createUser(args: CreateUserCommandInput, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
437
336
  createUser(args: CreateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
438
337
  /**
439
- * @public
440
- * <p>Creates a new user hierarchy group.</p>
338
+ * @see {@link CreateUserHierarchyGroupCommand}
441
339
  */
442
340
  createUserHierarchyGroup(args: CreateUserHierarchyGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserHierarchyGroupCommandOutput>;
443
341
  createUserHierarchyGroup(args: CreateUserHierarchyGroupCommandInput, cb: (err: any, data?: CreateUserHierarchyGroupCommandOutput) => void): void;
444
342
  createUserHierarchyGroup(args: CreateUserHierarchyGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserHierarchyGroupCommandOutput) => void): void;
445
343
  /**
446
- * @public
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>
344
+ * @see {@link CreateVocabularyCommand}
450
345
  */
451
346
  createVocabulary(args: CreateVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<CreateVocabularyCommandOutput>;
452
347
  createVocabulary(args: CreateVocabularyCommandInput, cb: (err: any, data?: CreateVocabularyCommandOutput) => void): void;
453
348
  createVocabulary(args: CreateVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVocabularyCommandOutput) => void): void;
454
349
  /**
455
- * @public
456
- * <p>Deletes a flow for the specified Amazon Connect instance.</p>
350
+ * @see {@link DeleteContactFlowCommand}
457
351
  */
458
352
  deleteContactFlow(args: DeleteContactFlowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContactFlowCommandOutput>;
459
353
  deleteContactFlow(args: DeleteContactFlowCommandInput, cb: (err: any, data?: DeleteContactFlowCommandOutput) => void): void;
460
354
  deleteContactFlow(args: DeleteContactFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContactFlowCommandOutput) => void): void;
461
355
  /**
462
- * @public
463
- * <p>Deletes the specified flow module.</p>
356
+ * @see {@link DeleteContactFlowModuleCommand}
464
357
  */
465
358
  deleteContactFlowModule(args: DeleteContactFlowModuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContactFlowModuleCommandOutput>;
466
359
  deleteContactFlowModule(args: DeleteContactFlowModuleCommandInput, cb: (err: any, data?: DeleteContactFlowModuleCommandOutput) => void): void;
467
360
  deleteContactFlowModule(args: DeleteContactFlowModuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContactFlowModuleCommandOutput) => void): void;
468
361
  /**
469
- * @public
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>
362
+ * @see {@link DeleteHoursOfOperationCommand}
472
363
  */
473
364
  deleteHoursOfOperation(args: DeleteHoursOfOperationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHoursOfOperationCommandOutput>;
474
365
  deleteHoursOfOperation(args: DeleteHoursOfOperationCommandInput, cb: (err: any, data?: DeleteHoursOfOperationCommandOutput) => void): void;
475
366
  deleteHoursOfOperation(args: DeleteHoursOfOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHoursOfOperationCommandOutput) => void): void;
476
367
  /**
477
- * @public
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>
368
+ * @see {@link DeleteInstanceCommand}
483
369
  */
484
370
  deleteInstance(args: DeleteInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteInstanceCommandOutput>;
485
371
  deleteInstance(args: DeleteInstanceCommandInput, cb: (err: any, data?: DeleteInstanceCommandOutput) => void): void;
486
372
  deleteInstance(args: DeleteInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInstanceCommandOutput) => void): void;
487
373
  /**
488
- * @public
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>
374
+ * @see {@link DeleteIntegrationAssociationCommand}
491
375
  */
492
376
  deleteIntegrationAssociation(args: DeleteIntegrationAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIntegrationAssociationCommandOutput>;
493
377
  deleteIntegrationAssociation(args: DeleteIntegrationAssociationCommandInput, cb: (err: any, data?: DeleteIntegrationAssociationCommandOutput) => void): void;
494
378
  deleteIntegrationAssociation(args: DeleteIntegrationAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIntegrationAssociationCommandOutput) => void): void;
495
379
  /**
496
- * @public
497
- * <p>Deletes a quick connect.</p>
380
+ * @see {@link DeleteQuickConnectCommand}
498
381
  */
499
382
  deleteQuickConnect(args: DeleteQuickConnectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQuickConnectCommandOutput>;
500
383
  deleteQuickConnect(args: DeleteQuickConnectCommandInput, cb: (err: any, data?: DeleteQuickConnectCommandOutput) => void): void;
501
384
  deleteQuickConnect(args: DeleteQuickConnectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQuickConnectCommandOutput) => void): void;
502
385
  /**
503
- * @public
504
- * <p>Deletes a rule for the specified Amazon Connect instance.</p>
386
+ * @see {@link DeleteRuleCommand}
505
387
  */
506
388
  deleteRule(args: DeleteRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRuleCommandOutput>;
507
389
  deleteRule(args: DeleteRuleCommandInput, cb: (err: any, data?: DeleteRuleCommandOutput) => void): void;
508
390
  deleteRule(args: DeleteRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRuleCommandOutput) => void): void;
509
391
  /**
510
- * @public
511
- * <p>This API is in preview release for Amazon Connect and is subject to change.</p>
512
- * <p>Deletes a security profile.</p>
392
+ * @see {@link DeleteSecurityProfileCommand}
513
393
  */
514
394
  deleteSecurityProfile(args: DeleteSecurityProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSecurityProfileCommandOutput>;
515
395
  deleteSecurityProfile(args: DeleteSecurityProfileCommandInput, cb: (err: any, data?: DeleteSecurityProfileCommandOutput) => void): void;
516
396
  deleteSecurityProfile(args: DeleteSecurityProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSecurityProfileCommandOutput) => void): void;
517
397
  /**
518
- * @public
519
- * <p>Deletes the task template.</p>
398
+ * @see {@link DeleteTaskTemplateCommand}
520
399
  */
521
400
  deleteTaskTemplate(args: DeleteTaskTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTaskTemplateCommandOutput>;
522
401
  deleteTaskTemplate(args: DeleteTaskTemplateCommandInput, cb: (err: any, data?: DeleteTaskTemplateCommandOutput) => void): void;
523
402
  deleteTaskTemplate(args: DeleteTaskTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTaskTemplateCommandOutput) => void): void;
524
403
  /**
525
- * @public
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>
404
+ * @see {@link DeleteTrafficDistributionGroupCommand}
530
405
  */
531
406
  deleteTrafficDistributionGroup(args: DeleteTrafficDistributionGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrafficDistributionGroupCommandOutput>;
532
407
  deleteTrafficDistributionGroup(args: DeleteTrafficDistributionGroupCommandInput, cb: (err: any, data?: DeleteTrafficDistributionGroupCommandOutput) => void): void;
533
408
  deleteTrafficDistributionGroup(args: DeleteTrafficDistributionGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrafficDistributionGroupCommandOutput) => void): void;
534
409
  /**
535
- * @public
536
- * <p>Deletes a use case from an integration association.</p>
410
+ * @see {@link DeleteUseCaseCommand}
537
411
  */
538
412
  deleteUseCase(args: DeleteUseCaseCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUseCaseCommandOutput>;
539
413
  deleteUseCase(args: DeleteUseCaseCommandInput, cb: (err: any, data?: DeleteUseCaseCommandOutput) => void): void;
540
414
  deleteUseCase(args: DeleteUseCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUseCaseCommandOutput) => void): void;
541
415
  /**
542
- * @public
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>
416
+ * @see {@link DeleteUserCommand}
548
417
  */
549
418
  deleteUser(args: DeleteUserCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserCommandOutput>;
550
419
  deleteUser(args: DeleteUserCommandInput, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
551
420
  deleteUser(args: DeleteUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
552
421
  /**
553
- * @public
554
- * <p>Deletes an existing user hierarchy group. It must not be associated with any agents or have
555
- * any active child groups.</p>
422
+ * @see {@link DeleteUserHierarchyGroupCommand}
556
423
  */
557
424
  deleteUserHierarchyGroup(args: DeleteUserHierarchyGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserHierarchyGroupCommandOutput>;
558
425
  deleteUserHierarchyGroup(args: DeleteUserHierarchyGroupCommandInput, cb: (err: any, data?: DeleteUserHierarchyGroupCommandOutput) => void): void;
559
426
  deleteUserHierarchyGroup(args: DeleteUserHierarchyGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserHierarchyGroupCommandOutput) => void): void;
560
427
  /**
561
- * @public
562
- * <p>Deletes the vocabulary that has the given identifier.</p>
428
+ * @see {@link DeleteVocabularyCommand}
563
429
  */
564
430
  deleteVocabulary(args: DeleteVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVocabularyCommandOutput>;
565
431
  deleteVocabulary(args: DeleteVocabularyCommandInput, cb: (err: any, data?: DeleteVocabularyCommandOutput) => void): void;
566
432
  deleteVocabulary(args: DeleteVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVocabularyCommandOutput) => void): void;
567
433
  /**
568
- * @public
569
- * <p>This API is in preview release for Amazon Connect and is subject to change.</p>
570
- * <p>Describes an agent status.</p>
434
+ * @see {@link DescribeAgentStatusCommand}
571
435
  */
572
436
  describeAgentStatus(args: DescribeAgentStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAgentStatusCommandOutput>;
573
437
  describeAgentStatus(args: DescribeAgentStatusCommandInput, cb: (err: any, data?: DescribeAgentStatusCommandOutput) => void): void;
574
438
  describeAgentStatus(args: DescribeAgentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAgentStatusCommandOutput) => void): void;
575
439
  /**
576
- * @public
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>
440
+ * @see {@link DescribeContactCommand}
585
441
  */
586
442
  describeContact(args: DescribeContactCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContactCommandOutput>;
587
443
  describeContact(args: DescribeContactCommandInput, cb: (err: any, data?: DescribeContactCommandOutput) => void): void;
588
444
  describeContact(args: DescribeContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContactCommandOutput) => void): void;
589
445
  /**
590
- * @public
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>
446
+ * @see {@link DescribeContactFlowCommand}
594
447
  */
595
448
  describeContactFlow(args: DescribeContactFlowCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContactFlowCommandOutput>;
596
449
  describeContactFlow(args: DescribeContactFlowCommandInput, cb: (err: any, data?: DescribeContactFlowCommandOutput) => void): void;
597
450
  describeContactFlow(args: DescribeContactFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContactFlowCommandOutput) => void): void;
598
451
  /**
599
- * @public
600
- * <p>Describes the specified flow module.</p>
452
+ * @see {@link DescribeContactFlowModuleCommand}
601
453
  */
602
454
  describeContactFlowModule(args: DescribeContactFlowModuleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContactFlowModuleCommandOutput>;
603
455
  describeContactFlowModule(args: DescribeContactFlowModuleCommandInput, cb: (err: any, data?: DescribeContactFlowModuleCommandOutput) => void): void;
604
456
  describeContactFlowModule(args: DescribeContactFlowModuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContactFlowModuleCommandOutput) => void): void;
605
457
  /**
606
- * @public
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>
458
+ * @see {@link DescribeHoursOfOperationCommand}
609
459
  */
610
460
  describeHoursOfOperation(args: DescribeHoursOfOperationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHoursOfOperationCommandOutput>;
611
461
  describeHoursOfOperation(args: DescribeHoursOfOperationCommandInput, cb: (err: any, data?: DescribeHoursOfOperationCommandOutput) => void): void;
612
462
  describeHoursOfOperation(args: DescribeHoursOfOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHoursOfOperationCommandOutput) => void): void;
613
463
  /**
614
- * @public
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>
464
+ * @see {@link DescribeInstanceCommand}
621
465
  */
622
466
  describeInstance(args: DescribeInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceCommandOutput>;
623
467
  describeInstance(args: DescribeInstanceCommandInput, cb: (err: any, data?: DescribeInstanceCommandOutput) => void): void;
624
468
  describeInstance(args: DescribeInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceCommandOutput) => void): void;
625
469
  /**
626
- * @public
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>
470
+ * @see {@link DescribeInstanceAttributeCommand}
629
471
  */
630
472
  describeInstanceAttribute(args: DescribeInstanceAttributeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceAttributeCommandOutput>;
631
473
  describeInstanceAttribute(args: DescribeInstanceAttributeCommandInput, cb: (err: any, data?: DescribeInstanceAttributeCommandOutput) => void): void;
632
474
  describeInstanceAttribute(args: DescribeInstanceAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceAttributeCommandOutput) => void): void;
633
475
  /**
634
- * @public
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>
476
+ * @see {@link DescribeInstanceStorageConfigCommand}
638
477
  */
639
478
  describeInstanceStorageConfig(args: DescribeInstanceStorageConfigCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceStorageConfigCommandOutput>;
640
479
  describeInstanceStorageConfig(args: DescribeInstanceStorageConfigCommandInput, cb: (err: any, data?: DescribeInstanceStorageConfigCommandOutput) => void): void;
641
480
  describeInstanceStorageConfig(args: DescribeInstanceStorageConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceStorageConfigCommandOutput) => void): void;
642
481
  /**
643
- * @public
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>
482
+ * @see {@link DescribePhoneNumberCommand}
656
483
  */
657
484
  describePhoneNumber(args: DescribePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<DescribePhoneNumberCommandOutput>;
658
485
  describePhoneNumber(args: DescribePhoneNumberCommandInput, cb: (err: any, data?: DescribePhoneNumberCommandOutput) => void): void;
659
486
  describePhoneNumber(args: DescribePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePhoneNumberCommandOutput) => void): void;
660
487
  /**
661
- * @public
662
- * <p>This API is in preview release for Amazon Connect and is subject to change.</p>
663
- * <p>Describes the specified queue.</p>
488
+ * @see {@link DescribeQueueCommand}
664
489
  */
665
490
  describeQueue(args: DescribeQueueCommandInput, options?: __HttpHandlerOptions): Promise<DescribeQueueCommandOutput>;
666
491
  describeQueue(args: DescribeQueueCommandInput, cb: (err: any, data?: DescribeQueueCommandOutput) => void): void;
667
492
  describeQueue(args: DescribeQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeQueueCommandOutput) => void): void;
668
493
  /**
669
- * @public
670
- * <p>Describes the quick connect.</p>
494
+ * @see {@link DescribeQuickConnectCommand}
671
495
  */
672
496
  describeQuickConnect(args: DescribeQuickConnectCommandInput, options?: __HttpHandlerOptions): Promise<DescribeQuickConnectCommandOutput>;
673
497
  describeQuickConnect(args: DescribeQuickConnectCommandInput, cb: (err: any, data?: DescribeQuickConnectCommandOutput) => void): void;
674
498
  describeQuickConnect(args: DescribeQuickConnectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeQuickConnectCommandOutput) => void): void;
675
499
  /**
676
- * @public
677
- * <p>Describes the specified routing profile.</p>
500
+ * @see {@link DescribeRoutingProfileCommand}
678
501
  */
679
502
  describeRoutingProfile(args: DescribeRoutingProfileCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRoutingProfileCommandOutput>;
680
503
  describeRoutingProfile(args: DescribeRoutingProfileCommandInput, cb: (err: any, data?: DescribeRoutingProfileCommandOutput) => void): void;
681
504
  describeRoutingProfile(args: DescribeRoutingProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRoutingProfileCommandOutput) => void): void;
682
505
  /**
683
- * @public
684
- * <p>Describes a rule for the specified Amazon Connect instance.</p>
506
+ * @see {@link DescribeRuleCommand}
685
507
  */
686
508
  describeRule(args: DescribeRuleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRuleCommandOutput>;
687
509
  describeRule(args: DescribeRuleCommandInput, cb: (err: any, data?: DescribeRuleCommandOutput) => void): void;
688
510
  describeRule(args: DescribeRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRuleCommandOutput) => void): void;
689
511
  /**
690
- * @public
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>
512
+ * @see {@link DescribeSecurityProfileCommand}
693
513
  */
694
514
  describeSecurityProfile(args: DescribeSecurityProfileCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSecurityProfileCommandOutput>;
695
515
  describeSecurityProfile(args: DescribeSecurityProfileCommandInput, cb: (err: any, data?: DescribeSecurityProfileCommandOutput) => void): void;
696
516
  describeSecurityProfile(args: DescribeSecurityProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSecurityProfileCommandOutput) => void): void;
697
517
  /**
698
- * @public
699
- * <p>Gets details and status of a traffic distribution group.</p>
518
+ * @see {@link DescribeTrafficDistributionGroupCommand}
700
519
  */
701
520
  describeTrafficDistributionGroup(args: DescribeTrafficDistributionGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrafficDistributionGroupCommandOutput>;
702
521
  describeTrafficDistributionGroup(args: DescribeTrafficDistributionGroupCommandInput, cb: (err: any, data?: DescribeTrafficDistributionGroupCommandOutput) => void): void;
703
522
  describeTrafficDistributionGroup(args: DescribeTrafficDistributionGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrafficDistributionGroupCommandOutput) => void): void;
704
523
  /**
705
- * @public
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>
524
+ * @see {@link DescribeUserCommand}
708
525
  */
709
526
  describeUser(args: DescribeUserCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUserCommandOutput>;
710
527
  describeUser(args: DescribeUserCommandInput, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
711
528
  describeUser(args: DescribeUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
712
529
  /**
713
- * @public
714
- * <p>Describes the specified hierarchy group.</p>
530
+ * @see {@link DescribeUserHierarchyGroupCommand}
715
531
  */
716
532
  describeUserHierarchyGroup(args: DescribeUserHierarchyGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUserHierarchyGroupCommandOutput>;
717
533
  describeUserHierarchyGroup(args: DescribeUserHierarchyGroupCommandInput, cb: (err: any, data?: DescribeUserHierarchyGroupCommandOutput) => void): void;
718
534
  describeUserHierarchyGroup(args: DescribeUserHierarchyGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUserHierarchyGroupCommandOutput) => void): void;
719
535
  /**
720
- * @public
721
- * <p>Describes the hierarchy structure of the specified Amazon Connect instance.</p>
536
+ * @see {@link DescribeUserHierarchyStructureCommand}
722
537
  */
723
538
  describeUserHierarchyStructure(args: DescribeUserHierarchyStructureCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUserHierarchyStructureCommandOutput>;
724
539
  describeUserHierarchyStructure(args: DescribeUserHierarchyStructureCommandInput, cb: (err: any, data?: DescribeUserHierarchyStructureCommandOutput) => void): void;
725
540
  describeUserHierarchyStructure(args: DescribeUserHierarchyStructureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUserHierarchyStructureCommandOutput) => void): void;
726
541
  /**
727
- * @public
728
- * <p>Describes the specified vocabulary.</p>
542
+ * @see {@link DescribeVocabularyCommand}
729
543
  */
730
544
  describeVocabulary(args: DescribeVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVocabularyCommandOutput>;
731
545
  describeVocabulary(args: DescribeVocabularyCommandInput, cb: (err: any, data?: DescribeVocabularyCommandOutput) => void): void;
732
546
  describeVocabulary(args: DescribeVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVocabularyCommandOutput) => void): void;
733
547
  /**
734
- * @public
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>
548
+ * @see {@link DisassociateApprovedOriginCommand}
737
549
  */
738
550
  disassociateApprovedOrigin(args: DisassociateApprovedOriginCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateApprovedOriginCommandOutput>;
739
551
  disassociateApprovedOrigin(args: DisassociateApprovedOriginCommandInput, cb: (err: any, data?: DisassociateApprovedOriginCommandOutput) => void): void;
740
552
  disassociateApprovedOrigin(args: DisassociateApprovedOriginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateApprovedOriginCommandOutput) => void): void;
741
553
  /**
742
- * @public
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>
554
+ * @see {@link DisassociateBotCommand}
746
555
  */
747
556
  disassociateBot(args: DisassociateBotCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateBotCommandOutput>;
748
557
  disassociateBot(args: DisassociateBotCommandInput, cb: (err: any, data?: DisassociateBotCommandOutput) => void): void;
749
558
  disassociateBot(args: DisassociateBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateBotCommandOutput) => void): void;
750
559
  /**
751
- * @public
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>
560
+ * @see {@link DisassociateInstanceStorageConfigCommand}
755
561
  */
756
562
  disassociateInstanceStorageConfig(args: DisassociateInstanceStorageConfigCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateInstanceStorageConfigCommandOutput>;
757
563
  disassociateInstanceStorageConfig(args: DisassociateInstanceStorageConfigCommandInput, cb: (err: any, data?: DisassociateInstanceStorageConfigCommandOutput) => void): void;
758
564
  disassociateInstanceStorageConfig(args: DisassociateInstanceStorageConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateInstanceStorageConfigCommandOutput) => void): void;
759
565
  /**
760
- * @public
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>
566
+ * @see {@link DisassociateLambdaFunctionCommand}
764
567
  */
765
568
  disassociateLambdaFunction(args: DisassociateLambdaFunctionCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateLambdaFunctionCommandOutput>;
766
569
  disassociateLambdaFunction(args: DisassociateLambdaFunctionCommandInput, cb: (err: any, data?: DisassociateLambdaFunctionCommandOutput) => void): void;
767
570
  disassociateLambdaFunction(args: DisassociateLambdaFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateLambdaFunctionCommandOutput) => void): void;
768
571
  /**
769
- * @public
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>
572
+ * @see {@link DisassociateLexBotCommand}
773
573
  */
774
574
  disassociateLexBot(args: DisassociateLexBotCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateLexBotCommandOutput>;
775
575
  disassociateLexBot(args: DisassociateLexBotCommandInput, cb: (err: any, data?: DisassociateLexBotCommandOutput) => void): void;
776
576
  disassociateLexBot(args: DisassociateLexBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateLexBotCommandOutput) => void): void;
777
577
  /**
778
- * @public
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>
578
+ * @see {@link DisassociatePhoneNumberContactFlowCommand}
790
579
  */
791
580
  disassociatePhoneNumberContactFlow(args: DisassociatePhoneNumberContactFlowCommandInput, options?: __HttpHandlerOptions): Promise<DisassociatePhoneNumberContactFlowCommandOutput>;
792
581
  disassociatePhoneNumberContactFlow(args: DisassociatePhoneNumberContactFlowCommandInput, cb: (err: any, data?: DisassociatePhoneNumberContactFlowCommandOutput) => void): void;
793
582
  disassociatePhoneNumberContactFlow(args: DisassociatePhoneNumberContactFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociatePhoneNumberContactFlowCommandOutput) => void): void;
794
583
  /**
795
- * @public
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>
584
+ * @see {@link DisassociateQueueQuickConnectsCommand}
798
585
  */
799
586
  disassociateQueueQuickConnects(args: DisassociateQueueQuickConnectsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateQueueQuickConnectsCommandOutput>;
800
587
  disassociateQueueQuickConnects(args: DisassociateQueueQuickConnectsCommandInput, cb: (err: any, data?: DisassociateQueueQuickConnectsCommandOutput) => void): void;
801
588
  disassociateQueueQuickConnects(args: DisassociateQueueQuickConnectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateQueueQuickConnectsCommandOutput) => void): void;
802
589
  /**
803
- * @public
804
- * <p>Disassociates a set of queues from a routing profile.</p>
590
+ * @see {@link DisassociateRoutingProfileQueuesCommand}
805
591
  */
806
592
  disassociateRoutingProfileQueues(args: DisassociateRoutingProfileQueuesCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateRoutingProfileQueuesCommandOutput>;
807
593
  disassociateRoutingProfileQueues(args: DisassociateRoutingProfileQueuesCommandInput, cb: (err: any, data?: DisassociateRoutingProfileQueuesCommandOutput) => void): void;
808
594
  disassociateRoutingProfileQueues(args: DisassociateRoutingProfileQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateRoutingProfileQueuesCommandOutput) => void): void;
809
595
  /**
810
- * @public
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>
596
+ * @see {@link DisassociateSecurityKeyCommand}
813
597
  */
814
598
  disassociateSecurityKey(args: DisassociateSecurityKeyCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateSecurityKeyCommandOutput>;
815
599
  disassociateSecurityKey(args: DisassociateSecurityKeyCommandInput, cb: (err: any, data?: DisassociateSecurityKeyCommandOutput) => void): void;
816
600
  disassociateSecurityKey(args: DisassociateSecurityKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateSecurityKeyCommandOutput) => void): void;
817
601
  /**
818
- * @public
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>
602
+ * @see {@link DismissUserContactCommand}
824
603
  */
825
604
  dismissUserContact(args: DismissUserContactCommandInput, options?: __HttpHandlerOptions): Promise<DismissUserContactCommandOutput>;
826
605
  dismissUserContact(args: DismissUserContactCommandInput, cb: (err: any, data?: DismissUserContactCommandOutput) => void): void;
827
606
  dismissUserContact(args: DismissUserContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DismissUserContactCommandOutput) => void): void;
828
607
  /**
829
- * @public
830
- * <p>Retrieves the contact attributes for the specified contact.</p>
608
+ * @see {@link GetContactAttributesCommand}
831
609
  */
832
610
  getContactAttributes(args: GetContactAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetContactAttributesCommandOutput>;
833
611
  getContactAttributes(args: GetContactAttributesCommandInput, cb: (err: any, data?: GetContactAttributesCommandOutput) => void): void;
834
612
  getContactAttributes(args: GetContactAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContactAttributesCommandOutput) => void): void;
835
613
  /**
836
- * @public
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>
614
+ * @see {@link GetCurrentMetricDataCommand}
840
615
  */
841
616
  getCurrentMetricData(args: GetCurrentMetricDataCommandInput, options?: __HttpHandlerOptions): Promise<GetCurrentMetricDataCommandOutput>;
842
617
  getCurrentMetricData(args: GetCurrentMetricDataCommandInput, cb: (err: any, data?: GetCurrentMetricDataCommandOutput) => void): void;
843
618
  getCurrentMetricData(args: GetCurrentMetricDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCurrentMetricDataCommandOutput) => void): void;
844
619
  /**
845
- * @public
846
- * <p>Gets the real-time active user data from the specified Amazon Connect instance. </p>
620
+ * @see {@link GetCurrentUserDataCommand}
847
621
  */
848
622
  getCurrentUserData(args: GetCurrentUserDataCommandInput, options?: __HttpHandlerOptions): Promise<GetCurrentUserDataCommandOutput>;
849
623
  getCurrentUserData(args: GetCurrentUserDataCommandInput, cb: (err: any, data?: GetCurrentUserDataCommandOutput) => void): void;
850
624
  getCurrentUserData(args: GetCurrentUserDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCurrentUserDataCommandOutput) => void): void;
851
625
  /**
852
- * @public
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>
626
+ * @see {@link GetFederationTokenCommand}
862
627
  */
863
628
  getFederationToken(args: GetFederationTokenCommandInput, options?: __HttpHandlerOptions): Promise<GetFederationTokenCommandOutput>;
864
629
  getFederationToken(args: GetFederationTokenCommandInput, cb: (err: any, data?: GetFederationTokenCommandOutput) => void): void;
865
630
  getFederationToken(args: GetFederationTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFederationTokenCommandOutput) => void): void;
866
631
  /**
867
- * @public
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>
632
+ * @see {@link GetMetricDataCommand}
871
633
  */
872
634
  getMetricData(args: GetMetricDataCommandInput, options?: __HttpHandlerOptions): Promise<GetMetricDataCommandOutput>;
873
635
  getMetricData(args: GetMetricDataCommandInput, cb: (err: any, data?: GetMetricDataCommandOutput) => void): void;
874
636
  getMetricData(args: GetMetricDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMetricDataCommandOutput) => void): void;
875
637
  /**
876
- * @public
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>
638
+ * @see {@link GetMetricDataV2Command}
888
639
  */
889
640
  getMetricDataV2(args: GetMetricDataV2CommandInput, options?: __HttpHandlerOptions): Promise<GetMetricDataV2CommandOutput>;
890
641
  getMetricDataV2(args: GetMetricDataV2CommandInput, cb: (err: any, data?: GetMetricDataV2CommandOutput) => void): void;
891
642
  getMetricDataV2(args: GetMetricDataV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMetricDataV2CommandOutput) => void): void;
892
643
  /**
893
- * @public
894
- * <p>Gets details about a specific task template in the specified Amazon Connect
895
- * instance.</p>
644
+ * @see {@link GetTaskTemplateCommand}
896
645
  */
897
646
  getTaskTemplate(args: GetTaskTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetTaskTemplateCommandOutput>;
898
647
  getTaskTemplate(args: GetTaskTemplateCommandInput, cb: (err: any, data?: GetTaskTemplateCommandOutput) => void): void;
899
648
  getTaskTemplate(args: GetTaskTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTaskTemplateCommandOutput) => void): void;
900
649
  /**
901
- * @public
902
- * <p>Retrieves the current traffic distribution for a given traffic distribution group.</p>
650
+ * @see {@link GetTrafficDistributionCommand}
903
651
  */
904
652
  getTrafficDistribution(args: GetTrafficDistributionCommandInput, options?: __HttpHandlerOptions): Promise<GetTrafficDistributionCommandOutput>;
905
653
  getTrafficDistribution(args: GetTrafficDistributionCommandInput, cb: (err: any, data?: GetTrafficDistributionCommandOutput) => void): void;
906
654
  getTrafficDistribution(args: GetTrafficDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTrafficDistributionCommandOutput) => void): void;
907
655
  /**
908
- * @public
909
- * <p>This API is in preview release for Amazon Connect and is subject to change.</p>
910
- * <p>Lists agent statuses.</p>
656
+ * @see {@link ListAgentStatusesCommand}
911
657
  */
912
658
  listAgentStatuses(args: ListAgentStatusesCommandInput, options?: __HttpHandlerOptions): Promise<ListAgentStatusesCommandOutput>;
913
659
  listAgentStatuses(args: ListAgentStatusesCommandInput, cb: (err: any, data?: ListAgentStatusesCommandOutput) => void): void;
914
660
  listAgentStatuses(args: ListAgentStatusesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAgentStatusesCommandOutput) => void): void;
915
661
  /**
916
- * @public
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>
662
+ * @see {@link ListApprovedOriginsCommand}
919
663
  */
920
664
  listApprovedOrigins(args: ListApprovedOriginsCommandInput, options?: __HttpHandlerOptions): Promise<ListApprovedOriginsCommandOutput>;
921
665
  listApprovedOrigins(args: ListApprovedOriginsCommandInput, cb: (err: any, data?: ListApprovedOriginsCommandOutput) => void): void;
922
666
  listApprovedOrigins(args: ListApprovedOriginsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApprovedOriginsCommandOutput) => void): void;
923
667
  /**
924
- * @public
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>
668
+ * @see {@link ListBotsCommand}
927
669
  */
928
670
  listBots(args: ListBotsCommandInput, options?: __HttpHandlerOptions): Promise<ListBotsCommandOutput>;
929
671
  listBots(args: ListBotsCommandInput, cb: (err: any, data?: ListBotsCommandOutput) => void): void;
930
672
  listBots(args: ListBotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBotsCommandOutput) => void): void;
931
673
  /**
932
- * @public
933
- * <p>Provides information about the flow modules for the specified Amazon Connect
934
- * instance.</p>
674
+ * @see {@link ListContactFlowModulesCommand}
935
675
  */
936
676
  listContactFlowModules(args: ListContactFlowModulesCommandInput, options?: __HttpHandlerOptions): Promise<ListContactFlowModulesCommandOutput>;
937
677
  listContactFlowModules(args: ListContactFlowModulesCommandInput, cb: (err: any, data?: ListContactFlowModulesCommandOutput) => void): void;
938
678
  listContactFlowModules(args: ListContactFlowModulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactFlowModulesCommandOutput) => void): void;
939
679
  /**
940
- * @public
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>
680
+ * @see {@link ListContactFlowsCommand}
946
681
  */
947
682
  listContactFlows(args: ListContactFlowsCommandInput, options?: __HttpHandlerOptions): Promise<ListContactFlowsCommandOutput>;
948
683
  listContactFlows(args: ListContactFlowsCommandInput, cb: (err: any, data?: ListContactFlowsCommandOutput) => void): void;
949
684
  listContactFlows(args: ListContactFlowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactFlowsCommandOutput) => void): void;
950
685
  /**
951
- * @public
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>
686
+ * @see {@link ListContactReferencesCommand}
955
687
  */
956
688
  listContactReferences(args: ListContactReferencesCommandInput, options?: __HttpHandlerOptions): Promise<ListContactReferencesCommandOutput>;
957
689
  listContactReferences(args: ListContactReferencesCommandInput, cb: (err: any, data?: ListContactReferencesCommandOutput) => void): void;
958
690
  listContactReferences(args: ListContactReferencesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactReferencesCommandOutput) => void): void;
959
691
  /**
960
- * @public
961
- * <p>Lists the default vocabularies for the specified Amazon Connect instance.</p>
692
+ * @see {@link ListDefaultVocabulariesCommand}
962
693
  */
963
694
  listDefaultVocabularies(args: ListDefaultVocabulariesCommandInput, options?: __HttpHandlerOptions): Promise<ListDefaultVocabulariesCommandOutput>;
964
695
  listDefaultVocabularies(args: ListDefaultVocabulariesCommandInput, cb: (err: any, data?: ListDefaultVocabulariesCommandOutput) => void): void;
965
696
  listDefaultVocabularies(args: ListDefaultVocabulariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDefaultVocabulariesCommandOutput) => void): void;
966
697
  /**
967
- * @public
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>
698
+ * @see {@link ListHoursOfOperationsCommand}
972
699
  */
973
700
  listHoursOfOperations(args: ListHoursOfOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListHoursOfOperationsCommandOutput>;
974
701
  listHoursOfOperations(args: ListHoursOfOperationsCommandInput, cb: (err: any, data?: ListHoursOfOperationsCommandOutput) => void): void;
975
702
  listHoursOfOperations(args: ListHoursOfOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHoursOfOperationsCommandOutput) => void): void;
976
703
  /**
977
- * @public
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>
704
+ * @see {@link ListInstanceAttributesCommand}
980
705
  */
981
706
  listInstanceAttributes(args: ListInstanceAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ListInstanceAttributesCommandOutput>;
982
707
  listInstanceAttributes(args: ListInstanceAttributesCommandInput, cb: (err: any, data?: ListInstanceAttributesCommandOutput) => void): void;
983
708
  listInstanceAttributes(args: ListInstanceAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInstanceAttributesCommandOutput) => void): void;
984
709
  /**
985
- * @public
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>
710
+ * @see {@link ListInstancesCommand}
990
711
  */
991
712
  listInstances(args: ListInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListInstancesCommandOutput>;
992
713
  listInstances(args: ListInstancesCommandInput, cb: (err: any, data?: ListInstancesCommandOutput) => void): void;
993
714
  listInstances(args: ListInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInstancesCommandOutput) => void): void;
994
715
  /**
995
- * @public
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>
716
+ * @see {@link ListInstanceStorageConfigsCommand}
999
717
  */
1000
718
  listInstanceStorageConfigs(args: ListInstanceStorageConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListInstanceStorageConfigsCommandOutput>;
1001
719
  listInstanceStorageConfigs(args: ListInstanceStorageConfigsCommandInput, cb: (err: any, data?: ListInstanceStorageConfigsCommandOutput) => void): void;
1002
720
  listInstanceStorageConfigs(args: ListInstanceStorageConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInstanceStorageConfigsCommandOutput) => void): void;
1003
721
  /**
1004
- * @public
1005
- * <p>Provides summary information about the Amazon Web Services resource associations for the
1006
- * specified Amazon Connect instance.</p>
722
+ * @see {@link ListIntegrationAssociationsCommand}
1007
723
  */
1008
724
  listIntegrationAssociations(args: ListIntegrationAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListIntegrationAssociationsCommandOutput>;
1009
725
  listIntegrationAssociations(args: ListIntegrationAssociationsCommandInput, cb: (err: any, data?: ListIntegrationAssociationsCommandOutput) => void): void;
1010
726
  listIntegrationAssociations(args: ListIntegrationAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIntegrationAssociationsCommandOutput) => void): void;
1011
727
  /**
1012
- * @public
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>
728
+ * @see {@link ListLambdaFunctionsCommand}
1016
729
  */
1017
730
  listLambdaFunctions(args: ListLambdaFunctionsCommandInput, options?: __HttpHandlerOptions): Promise<ListLambdaFunctionsCommandOutput>;
1018
731
  listLambdaFunctions(args: ListLambdaFunctionsCommandInput, cb: (err: any, data?: ListLambdaFunctionsCommandOutput) => void): void;
1019
732
  listLambdaFunctions(args: ListLambdaFunctionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLambdaFunctionsCommandOutput) => void): void;
1020
733
  /**
1021
- * @public
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>
734
+ * @see {@link ListLexBotsCommand}
1026
735
  */
1027
736
  listLexBots(args: ListLexBotsCommandInput, options?: __HttpHandlerOptions): Promise<ListLexBotsCommandOutput>;
1028
737
  listLexBots(args: ListLexBotsCommandInput, cb: (err: any, data?: ListLexBotsCommandOutput) => void): void;
1029
738
  listLexBots(args: ListLexBotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLexBotsCommandOutput) => void): void;
1030
739
  /**
1031
- * @public
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>
740
+ * @see {@link ListPhoneNumbersCommand}
1042
741
  */
1043
742
  listPhoneNumbers(args: ListPhoneNumbersCommandInput, options?: __HttpHandlerOptions): Promise<ListPhoneNumbersCommandOutput>;
1044
743
  listPhoneNumbers(args: ListPhoneNumbersCommandInput, cb: (err: any, data?: ListPhoneNumbersCommandOutput) => void): void;
1045
744
  listPhoneNumbers(args: ListPhoneNumbersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPhoneNumbersCommandOutput) => void): void;
1046
745
  /**
1047
- * @public
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>
746
+ * @see {@link ListPhoneNumbersV2Command}
1054
747
  */
1055
748
  listPhoneNumbersV2(args: ListPhoneNumbersV2CommandInput, options?: __HttpHandlerOptions): Promise<ListPhoneNumbersV2CommandOutput>;
1056
749
  listPhoneNumbersV2(args: ListPhoneNumbersV2CommandInput, cb: (err: any, data?: ListPhoneNumbersV2CommandOutput) => void): void;
1057
750
  listPhoneNumbersV2(args: ListPhoneNumbersV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPhoneNumbersV2CommandOutput) => void): void;
1058
751
  /**
1059
- * @public
1060
- * <p>Provides information about the prompts for the specified Amazon Connect instance.</p>
752
+ * @see {@link ListPromptsCommand}
1061
753
  */
1062
754
  listPrompts(args: ListPromptsCommandInput, options?: __HttpHandlerOptions): Promise<ListPromptsCommandOutput>;
1063
755
  listPrompts(args: ListPromptsCommandInput, cb: (err: any, data?: ListPromptsCommandOutput) => void): void;
1064
756
  listPrompts(args: ListPromptsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPromptsCommandOutput) => void): void;
1065
757
  /**
1066
- * @public
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>
758
+ * @see {@link ListQueueQuickConnectsCommand}
1069
759
  */
1070
760
  listQueueQuickConnects(args: ListQueueQuickConnectsCommandInput, options?: __HttpHandlerOptions): Promise<ListQueueQuickConnectsCommandOutput>;
1071
761
  listQueueQuickConnects(args: ListQueueQuickConnectsCommandInput, cb: (err: any, data?: ListQueueQuickConnectsCommandOutput) => void): void;
1072
762
  listQueueQuickConnects(args: ListQueueQuickConnectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueueQuickConnectsCommandOutput) => void): void;
1073
763
  /**
1074
- * @public
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>
764
+ * @see {@link ListQueuesCommand}
1082
765
  */
1083
766
  listQueues(args: ListQueuesCommandInput, options?: __HttpHandlerOptions): Promise<ListQueuesCommandOutput>;
1084
767
  listQueues(args: ListQueuesCommandInput, cb: (err: any, data?: ListQueuesCommandOutput) => void): void;
1085
768
  listQueues(args: ListQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueuesCommandOutput) => void): void;
1086
769
  /**
1087
- * @public
1088
- * <p>Provides information about the quick connects for the specified Amazon Connect instance.
1089
- * </p>
770
+ * @see {@link ListQuickConnectsCommand}
1090
771
  */
1091
772
  listQuickConnects(args: ListQuickConnectsCommandInput, options?: __HttpHandlerOptions): Promise<ListQuickConnectsCommandOutput>;
1092
773
  listQuickConnects(args: ListQuickConnectsCommandInput, cb: (err: any, data?: ListQuickConnectsCommandOutput) => void): void;
1093
774
  listQuickConnects(args: ListQuickConnectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQuickConnectsCommandOutput) => void): void;
1094
775
  /**
1095
- * @public
1096
- * <p>Lists the queues associated with a routing profile.</p>
776
+ * @see {@link ListRoutingProfileQueuesCommand}
1097
777
  */
1098
778
  listRoutingProfileQueues(args: ListRoutingProfileQueuesCommandInput, options?: __HttpHandlerOptions): Promise<ListRoutingProfileQueuesCommandOutput>;
1099
779
  listRoutingProfileQueues(args: ListRoutingProfileQueuesCommandInput, cb: (err: any, data?: ListRoutingProfileQueuesCommandOutput) => void): void;
1100
780
  listRoutingProfileQueues(args: ListRoutingProfileQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRoutingProfileQueuesCommandOutput) => void): void;
1101
781
  /**
1102
- * @public
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>
782
+ * @see {@link ListRoutingProfilesCommand}
1107
783
  */
1108
784
  listRoutingProfiles(args: ListRoutingProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListRoutingProfilesCommandOutput>;
1109
785
  listRoutingProfiles(args: ListRoutingProfilesCommandInput, cb: (err: any, data?: ListRoutingProfilesCommandOutput) => void): void;
1110
786
  listRoutingProfiles(args: ListRoutingProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRoutingProfilesCommandOutput) => void): void;
1111
787
  /**
1112
- * @public
1113
- * <p>List all rules for the specified Amazon Connect instance.</p>
788
+ * @see {@link ListRulesCommand}
1114
789
  */
1115
790
  listRules(args: ListRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListRulesCommandOutput>;
1116
791
  listRules(args: ListRulesCommandInput, cb: (err: any, data?: ListRulesCommandOutput) => void): void;
1117
792
  listRules(args: ListRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRulesCommandOutput) => void): void;
1118
793
  /**
1119
- * @public
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>
794
+ * @see {@link ListSecurityKeysCommand}
1122
795
  */
1123
796
  listSecurityKeys(args: ListSecurityKeysCommandInput, options?: __HttpHandlerOptions): Promise<ListSecurityKeysCommandOutput>;
1124
797
  listSecurityKeys(args: ListSecurityKeysCommandInput, cb: (err: any, data?: ListSecurityKeysCommandOutput) => void): void;
1125
798
  listSecurityKeys(args: ListSecurityKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSecurityKeysCommandOutput) => void): void;
1126
799
  /**
1127
- * @public
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>
800
+ * @see {@link ListSecurityProfilePermissionsCommand}
1130
801
  */
1131
802
  listSecurityProfilePermissions(args: ListSecurityProfilePermissionsCommandInput, options?: __HttpHandlerOptions): Promise<ListSecurityProfilePermissionsCommandOutput>;
1132
803
  listSecurityProfilePermissions(args: ListSecurityProfilePermissionsCommandInput, cb: (err: any, data?: ListSecurityProfilePermissionsCommandOutput) => void): void;
1133
804
  listSecurityProfilePermissions(args: ListSecurityProfilePermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSecurityProfilePermissionsCommandOutput) => void): void;
1134
805
  /**
1135
- * @public
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>
806
+ * @see {@link ListSecurityProfilesCommand}
1139
807
  */
1140
808
  listSecurityProfiles(args: ListSecurityProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListSecurityProfilesCommandOutput>;
1141
809
  listSecurityProfiles(args: ListSecurityProfilesCommandInput, cb: (err: any, data?: ListSecurityProfilesCommandOutput) => void): void;
1142
810
  listSecurityProfiles(args: ListSecurityProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSecurityProfilesCommandOutput) => void): void;
1143
811
  /**
1144
- * @public
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>
812
+ * @see {@link ListTagsForResourceCommand}
1149
813
  */
1150
814
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
1151
815
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
1152
816
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
1153
817
  /**
1154
- * @public
1155
- * <p>Lists task templates for the specified Amazon Connect instance.</p>
818
+ * @see {@link ListTaskTemplatesCommand}
1156
819
  */
1157
820
  listTaskTemplates(args: ListTaskTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListTaskTemplatesCommandOutput>;
1158
821
  listTaskTemplates(args: ListTaskTemplatesCommandInput, cb: (err: any, data?: ListTaskTemplatesCommandOutput) => void): void;
1159
822
  listTaskTemplates(args: ListTaskTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTaskTemplatesCommandOutput) => void): void;
1160
823
  /**
1161
- * @public
1162
- * <p>Lists traffic distribution groups.</p>
824
+ * @see {@link ListTrafficDistributionGroupsCommand}
1163
825
  */
1164
826
  listTrafficDistributionGroups(args: ListTrafficDistributionGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListTrafficDistributionGroupsCommandOutput>;
1165
827
  listTrafficDistributionGroups(args: ListTrafficDistributionGroupsCommandInput, cb: (err: any, data?: ListTrafficDistributionGroupsCommandOutput) => void): void;
1166
828
  listTrafficDistributionGroups(args: ListTrafficDistributionGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrafficDistributionGroupsCommandOutput) => void): void;
1167
829
  /**
1168
- * @public
1169
- * <p>Lists the use cases for the integration association. </p>
830
+ * @see {@link ListUseCasesCommand}
1170
831
  */
1171
832
  listUseCases(args: ListUseCasesCommandInput, options?: __HttpHandlerOptions): Promise<ListUseCasesCommandOutput>;
1172
833
  listUseCases(args: ListUseCasesCommandInput, cb: (err: any, data?: ListUseCasesCommandOutput) => void): void;
1173
834
  listUseCases(args: ListUseCasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUseCasesCommandOutput) => void): void;
1174
835
  /**
1175
- * @public
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>
836
+ * @see {@link ListUserHierarchyGroupsCommand}
1180
837
  */
1181
838
  listUserHierarchyGroups(args: ListUserHierarchyGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListUserHierarchyGroupsCommandOutput>;
1182
839
  listUserHierarchyGroups(args: ListUserHierarchyGroupsCommandInput, cb: (err: any, data?: ListUserHierarchyGroupsCommandOutput) => void): void;
1183
840
  listUserHierarchyGroups(args: ListUserHierarchyGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUserHierarchyGroupsCommandOutput) => void): void;
1184
841
  /**
1185
- * @public
1186
- * <p>Provides summary information about the users for the specified Amazon Connect
1187
- * instance.</p>
842
+ * @see {@link ListUsersCommand}
1188
843
  */
1189
844
  listUsers(args: ListUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListUsersCommandOutput>;
1190
845
  listUsers(args: ListUsersCommandInput, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
1191
846
  listUsers(args: ListUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
1192
847
  /**
1193
- * @public
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>
848
+ * @see {@link MonitorContactCommand}
1197
849
  */
1198
850
  monitorContact(args: MonitorContactCommandInput, options?: __HttpHandlerOptions): Promise<MonitorContactCommandOutput>;
1199
851
  monitorContact(args: MonitorContactCommandInput, cb: (err: any, data?: MonitorContactCommandOutput) => void): void;
1200
852
  monitorContact(args: MonitorContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: MonitorContactCommandOutput) => void): void;
1201
853
  /**
1202
- * @public
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>
854
+ * @see {@link PutUserStatusCommand}
1207
855
  */
1208
856
  putUserStatus(args: PutUserStatusCommandInput, options?: __HttpHandlerOptions): Promise<PutUserStatusCommandOutput>;
1209
857
  putUserStatus(args: PutUserStatusCommandInput, cb: (err: any, data?: PutUserStatusCommandOutput) => void): void;
1210
858
  putUserStatus(args: PutUserStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutUserStatusCommandOutput) => void): void;
1211
859
  /**
1212
- * @public
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>
860
+ * @see {@link ReleasePhoneNumberCommand}
1222
861
  */
1223
862
  releasePhoneNumber(args: ReleasePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<ReleasePhoneNumberCommandOutput>;
1224
863
  releasePhoneNumber(args: ReleasePhoneNumberCommandInput, cb: (err: any, data?: ReleasePhoneNumberCommandOutput) => void): void;
1225
864
  releasePhoneNumber(args: ReleasePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReleasePhoneNumberCommandOutput) => void): void;
1226
865
  /**
1227
- * @public
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>
866
+ * @see {@link ReplicateInstanceCommand}
1232
867
  */
1233
868
  replicateInstance(args: ReplicateInstanceCommandInput, options?: __HttpHandlerOptions): Promise<ReplicateInstanceCommandOutput>;
1234
869
  replicateInstance(args: ReplicateInstanceCommandInput, cb: (err: any, data?: ReplicateInstanceCommandOutput) => void): void;
1235
870
  replicateInstance(args: ReplicateInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReplicateInstanceCommandOutput) => void): void;
1236
871
  /**
1237
- * @public
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>
872
+ * @see {@link ResumeContactRecordingCommand}
1241
873
  */
1242
874
  resumeContactRecording(args: ResumeContactRecordingCommandInput, options?: __HttpHandlerOptions): Promise<ResumeContactRecordingCommandOutput>;
1243
875
  resumeContactRecording(args: ResumeContactRecordingCommandInput, cb: (err: any, data?: ResumeContactRecordingCommandOutput) => void): void;
1244
876
  resumeContactRecording(args: ResumeContactRecordingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResumeContactRecordingCommandOutput) => void): void;
1245
877
  /**
1246
- * @public
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>
878
+ * @see {@link SearchAvailablePhoneNumbersCommand}
1250
879
  */
1251
880
  searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options?: __HttpHandlerOptions): Promise<SearchAvailablePhoneNumbersCommandOutput>;
1252
881
  searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
1253
882
  searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
1254
883
  /**
1255
- * @public
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>
884
+ * @see {@link SearchQueuesCommand}
1258
885
  */
1259
886
  searchQueues(args: SearchQueuesCommandInput, options?: __HttpHandlerOptions): Promise<SearchQueuesCommandOutput>;
1260
887
  searchQueues(args: SearchQueuesCommandInput, cb: (err: any, data?: SearchQueuesCommandOutput) => void): void;
1261
888
  searchQueues(args: SearchQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchQueuesCommandOutput) => void): void;
1262
889
  /**
1263
- * @public
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>
890
+ * @see {@link SearchRoutingProfilesCommand}
1266
891
  */
1267
892
  searchRoutingProfiles(args: SearchRoutingProfilesCommandInput, options?: __HttpHandlerOptions): Promise<SearchRoutingProfilesCommandOutput>;
1268
893
  searchRoutingProfiles(args: SearchRoutingProfilesCommandInput, cb: (err: any, data?: SearchRoutingProfilesCommandOutput) => void): void;
1269
894
  searchRoutingProfiles(args: SearchRoutingProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchRoutingProfilesCommandOutput) => void): void;
1270
895
  /**
1271
- * @public
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>
896
+ * @see {@link SearchSecurityProfilesCommand}
1275
897
  */
1276
898
  searchSecurityProfiles(args: SearchSecurityProfilesCommandInput, options?: __HttpHandlerOptions): Promise<SearchSecurityProfilesCommandOutput>;
1277
899
  searchSecurityProfiles(args: SearchSecurityProfilesCommandInput, cb: (err: any, data?: SearchSecurityProfilesCommandOutput) => void): void;
1278
900
  searchSecurityProfiles(args: SearchSecurityProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchSecurityProfilesCommandOutput) => void): void;
1279
901
  /**
1280
- * @public
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>
902
+ * @see {@link SearchUsersCommand}
1286
903
  */
1287
904
  searchUsers(args: SearchUsersCommandInput, options?: __HttpHandlerOptions): Promise<SearchUsersCommandOutput>;
1288
905
  searchUsers(args: SearchUsersCommandInput, cb: (err: any, data?: SearchUsersCommandOutput) => void): void;
1289
906
  searchUsers(args: SearchUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchUsersCommandOutput) => void): void;
1290
907
  /**
1291
- * @public
1292
- * <p>Searches for vocabularies within a specific Amazon Connect instance using
1293
- * <code>State</code>, <code>NameStartsWith</code>, and <code>LanguageCode</code>.</p>
908
+ * @see {@link SearchVocabulariesCommand}
1294
909
  */
1295
910
  searchVocabularies(args: SearchVocabulariesCommandInput, options?: __HttpHandlerOptions): Promise<SearchVocabulariesCommandOutput>;
1296
911
  searchVocabularies(args: SearchVocabulariesCommandInput, cb: (err: any, data?: SearchVocabulariesCommandOutput) => void): void;
1297
912
  searchVocabularies(args: SearchVocabulariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchVocabulariesCommandOutput) => void): void;
1298
913
  /**
1299
- * @public
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>
914
+ * @see {@link StartChatContactCommand}
1321
915
  */
1322
916
  startChatContact(args: StartChatContactCommandInput, options?: __HttpHandlerOptions): Promise<StartChatContactCommandOutput>;
1323
917
  startChatContact(args: StartChatContactCommandInput, cb: (err: any, data?: StartChatContactCommandOutput) => void): void;
1324
918
  startChatContact(args: StartChatContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartChatContactCommandOutput) => void): void;
1325
919
  /**
1326
- * @public
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>
920
+ * @see {@link StartContactRecordingCommand}
1346
921
  */
1347
922
  startContactRecording(args: StartContactRecordingCommandInput, options?: __HttpHandlerOptions): Promise<StartContactRecordingCommandOutput>;
1348
923
  startContactRecording(args: StartContactRecordingCommandInput, cb: (err: any, data?: StartContactRecordingCommandOutput) => void): void;
1349
924
  startContactRecording(args: StartContactRecordingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartContactRecordingCommandOutput) => void): void;
1350
925
  /**
1351
- * @public
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>
926
+ * @see {@link StartContactStreamingCommand}
1355
927
  */
1356
928
  startContactStreaming(args: StartContactStreamingCommandInput, options?: __HttpHandlerOptions): Promise<StartContactStreamingCommandOutput>;
1357
929
  startContactStreaming(args: StartContactStreamingCommandInput, cb: (err: any, data?: StartContactStreamingCommandOutput) => void): void;
1358
930
  startContactStreaming(args: StartContactStreamingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartContactStreamingCommandOutput) => void): void;
1359
931
  /**
1360
- * @public
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>
932
+ * @see {@link StartOutboundVoiceContactCommand}
1379
933
  */
1380
934
  startOutboundVoiceContact(args: StartOutboundVoiceContactCommandInput, options?: __HttpHandlerOptions): Promise<StartOutboundVoiceContactCommandOutput>;
1381
935
  startOutboundVoiceContact(args: StartOutboundVoiceContactCommandInput, cb: (err: any, data?: StartOutboundVoiceContactCommandOutput) => void): void;
1382
936
  startOutboundVoiceContact(args: StartOutboundVoiceContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartOutboundVoiceContactCommandOutput) => void): void;
1383
937
  /**
1384
- * @public
1385
- * <p>Initiates a flow to start a new task.</p>
938
+ * @see {@link StartTaskContactCommand}
1386
939
  */
1387
940
  startTaskContact(args: StartTaskContactCommandInput, options?: __HttpHandlerOptions): Promise<StartTaskContactCommandOutput>;
1388
941
  startTaskContact(args: StartTaskContactCommandInput, cb: (err: any, data?: StartTaskContactCommandOutput) => void): void;
1389
942
  startTaskContact(args: StartTaskContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartTaskContactCommandOutput) => void): void;
1390
943
  /**
1391
- * @public
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>
944
+ * @see {@link StopContactCommand}
1405
945
  */
1406
946
  stopContact(args: StopContactCommandInput, options?: __HttpHandlerOptions): Promise<StopContactCommandOutput>;
1407
947
  stopContact(args: StopContactCommandInput, cb: (err: any, data?: StopContactCommandOutput) => void): void;
1408
948
  stopContact(args: StopContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopContactCommandOutput) => void): void;
1409
949
  /**
1410
- * @public
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>
950
+ * @see {@link StopContactRecordingCommand}
1417
951
  */
1418
952
  stopContactRecording(args: StopContactRecordingCommandInput, options?: __HttpHandlerOptions): Promise<StopContactRecordingCommandOutput>;
1419
953
  stopContactRecording(args: StopContactRecordingCommandInput, cb: (err: any, data?: StopContactRecordingCommandOutput) => void): void;
1420
954
  stopContactRecording(args: StopContactRecordingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopContactRecordingCommandOutput) => void): void;
1421
955
  /**
1422
- * @public
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>
956
+ * @see {@link StopContactStreamingCommand}
1426
957
  */
1427
958
  stopContactStreaming(args: StopContactStreamingCommandInput, options?: __HttpHandlerOptions): Promise<StopContactStreamingCommandOutput>;
1428
959
  stopContactStreaming(args: StopContactStreamingCommandInput, cb: (err: any, data?: StopContactStreamingCommandOutput) => void): void;
1429
960
  stopContactStreaming(args: StopContactStreamingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopContactStreamingCommandOutput) => void): void;
1430
961
  /**
1431
- * @public
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>
962
+ * @see {@link SuspendContactRecordingCommand}
1438
963
  */
1439
964
  suspendContactRecording(args: SuspendContactRecordingCommandInput, options?: __HttpHandlerOptions): Promise<SuspendContactRecordingCommandOutput>;
1440
965
  suspendContactRecording(args: SuspendContactRecordingCommandInput, cb: (err: any, data?: SuspendContactRecordingCommandOutput) => void): void;
1441
966
  suspendContactRecording(args: SuspendContactRecordingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SuspendContactRecordingCommandOutput) => void): void;
1442
967
  /**
1443
- * @public
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>
968
+ * @see {@link TagResourceCommand}
1451
969
  */
1452
970
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
1453
971
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
1454
972
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
1455
973
  /**
1456
- * @public
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>
974
+ * @see {@link TransferContactCommand}
1481
975
  */
1482
976
  transferContact(args: TransferContactCommandInput, options?: __HttpHandlerOptions): Promise<TransferContactCommandOutput>;
1483
977
  transferContact(args: TransferContactCommandInput, cb: (err: any, data?: TransferContactCommandOutput) => void): void;
1484
978
  transferContact(args: TransferContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TransferContactCommandOutput) => void): void;
1485
979
  /**
1486
- * @public
1487
- * <p>Removes the specified tags from the specified resource.</p>
980
+ * @see {@link UntagResourceCommand}
1488
981
  */
1489
982
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
1490
983
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
1491
984
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
1492
985
  /**
1493
- * @public
1494
- * <p>This API is in preview release for Amazon Connect and is subject to change.</p>
1495
- * <p>Updates agent status.</p>
986
+ * @see {@link UpdateAgentStatusCommand}
1496
987
  */
1497
988
  updateAgentStatus(args: UpdateAgentStatusCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAgentStatusCommandOutput>;
1498
989
  updateAgentStatus(args: UpdateAgentStatusCommandInput, cb: (err: any, data?: UpdateAgentStatusCommandOutput) => void): void;
1499
990
  updateAgentStatus(args: UpdateAgentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAgentStatusCommandOutput) => void): void;
1500
991
  /**
1501
- * @public
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>
992
+ * @see {@link UpdateContactCommand}
1509
993
  */
1510
994
  updateContact(args: UpdateContactCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactCommandOutput>;
1511
995
  updateContact(args: UpdateContactCommandInput, cb: (err: any, data?: UpdateContactCommandOutput) => void): void;
1512
996
  updateContact(args: UpdateContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactCommandOutput) => void): void;
1513
997
  /**
1514
- * @public
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>
998
+ * @see {@link UpdateContactAttributesCommand}
1529
999
  */
1530
1000
  updateContactAttributes(args: UpdateContactAttributesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactAttributesCommandOutput>;
1531
1001
  updateContactAttributes(args: UpdateContactAttributesCommandInput, cb: (err: any, data?: UpdateContactAttributesCommandOutput) => void): void;
1532
1002
  updateContactAttributes(args: UpdateContactAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactAttributesCommandOutput) => void): void;
1533
1003
  /**
1534
- * @public
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>
1004
+ * @see {@link UpdateContactFlowContentCommand}
1538
1005
  */
1539
1006
  updateContactFlowContent(args: UpdateContactFlowContentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactFlowContentCommandOutput>;
1540
1007
  updateContactFlowContent(args: UpdateContactFlowContentCommandInput, cb: (err: any, data?: UpdateContactFlowContentCommandOutput) => void): void;
1541
1008
  updateContactFlowContent(args: UpdateContactFlowContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactFlowContentCommandOutput) => void): void;
1542
1009
  /**
1543
- * @public
1544
- * <p>Updates metadata about specified flow.</p>
1010
+ * @see {@link UpdateContactFlowMetadataCommand}
1545
1011
  */
1546
1012
  updateContactFlowMetadata(args: UpdateContactFlowMetadataCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactFlowMetadataCommandOutput>;
1547
1013
  updateContactFlowMetadata(args: UpdateContactFlowMetadataCommandInput, cb: (err: any, data?: UpdateContactFlowMetadataCommandOutput) => void): void;
1548
1014
  updateContactFlowMetadata(args: UpdateContactFlowMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactFlowMetadataCommandOutput) => void): void;
1549
1015
  /**
1550
- * @public
1551
- * <p>Updates specified flow module for the specified Amazon Connect instance. </p>
1016
+ * @see {@link UpdateContactFlowModuleContentCommand}
1552
1017
  */
1553
1018
  updateContactFlowModuleContent(args: UpdateContactFlowModuleContentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactFlowModuleContentCommandOutput>;
1554
1019
  updateContactFlowModuleContent(args: UpdateContactFlowModuleContentCommandInput, cb: (err: any, data?: UpdateContactFlowModuleContentCommandOutput) => void): void;
1555
1020
  updateContactFlowModuleContent(args: UpdateContactFlowModuleContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactFlowModuleContentCommandOutput) => void): void;
1556
1021
  /**
1557
- * @public
1558
- * <p>Updates metadata about specified flow module.</p>
1022
+ * @see {@link UpdateContactFlowModuleMetadataCommand}
1559
1023
  */
1560
1024
  updateContactFlowModuleMetadata(args: UpdateContactFlowModuleMetadataCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactFlowModuleMetadataCommandOutput>;
1561
1025
  updateContactFlowModuleMetadata(args: UpdateContactFlowModuleMetadataCommandInput, cb: (err: any, data?: UpdateContactFlowModuleMetadataCommandOutput) => void): void;
1562
1026
  updateContactFlowModuleMetadata(args: UpdateContactFlowModuleMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactFlowModuleMetadataCommandOutput) => void): void;
1563
1027
  /**
1564
- * @public
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>
1028
+ * @see {@link UpdateContactFlowNameCommand}
1568
1029
  */
1569
1030
  updateContactFlowName(args: UpdateContactFlowNameCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactFlowNameCommandOutput>;
1570
1031
  updateContactFlowName(args: UpdateContactFlowNameCommandInput, cb: (err: any, data?: UpdateContactFlowNameCommandOutput) => void): void;
1571
1032
  updateContactFlowName(args: UpdateContactFlowNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactFlowNameCommandOutput) => void): void;
1572
1033
  /**
1573
- * @public
1574
- * <p>Updates the scheduled time of a task contact that is already scheduled.</p>
1034
+ * @see {@link UpdateContactScheduleCommand}
1575
1035
  */
1576
1036
  updateContactSchedule(args: UpdateContactScheduleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactScheduleCommandOutput>;
1577
1037
  updateContactSchedule(args: UpdateContactScheduleCommandInput, cb: (err: any, data?: UpdateContactScheduleCommandOutput) => void): void;
1578
1038
  updateContactSchedule(args: UpdateContactScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactScheduleCommandOutput) => void): void;
1579
1039
  /**
1580
- * @public
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>
1040
+ * @see {@link UpdateHoursOfOperationCommand}
1583
1041
  */
1584
1042
  updateHoursOfOperation(args: UpdateHoursOfOperationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateHoursOfOperationCommandOutput>;
1585
1043
  updateHoursOfOperation(args: UpdateHoursOfOperationCommandInput, cb: (err: any, data?: UpdateHoursOfOperationCommandOutput) => void): void;
1586
1044
  updateHoursOfOperation(args: UpdateHoursOfOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateHoursOfOperationCommandOutput) => void): void;
1587
1045
  /**
1588
- * @public
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>
1046
+ * @see {@link UpdateInstanceAttributeCommand}
1591
1047
  */
1592
1048
  updateInstanceAttribute(args: UpdateInstanceAttributeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateInstanceAttributeCommandOutput>;
1593
1049
  updateInstanceAttribute(args: UpdateInstanceAttributeCommandInput, cb: (err: any, data?: UpdateInstanceAttributeCommandOutput) => void): void;
1594
1050
  updateInstanceAttribute(args: UpdateInstanceAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateInstanceAttributeCommandOutput) => void): void;
1595
1051
  /**
1596
- * @public
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>
1052
+ * @see {@link UpdateInstanceStorageConfigCommand}
1599
1053
  */
1600
1054
  updateInstanceStorageConfig(args: UpdateInstanceStorageConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateInstanceStorageConfigCommandOutput>;
1601
1055
  updateInstanceStorageConfig(args: UpdateInstanceStorageConfigCommandInput, cb: (err: any, data?: UpdateInstanceStorageConfigCommandOutput) => void): void;
1602
1056
  updateInstanceStorageConfig(args: UpdateInstanceStorageConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateInstanceStorageConfigCommandOutput) => void): void;
1603
1057
  /**
1604
- * @public
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>
1058
+ * @see {@link UpdateParticipantRoleConfigCommand}
1623
1059
  */
1624
1060
  updateParticipantRoleConfig(args: UpdateParticipantRoleConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateParticipantRoleConfigCommandOutput>;
1625
1061
  updateParticipantRoleConfig(args: UpdateParticipantRoleConfigCommandInput, cb: (err: any, data?: UpdateParticipantRoleConfigCommandOutput) => void): void;
1626
1062
  updateParticipantRoleConfig(args: UpdateParticipantRoleConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateParticipantRoleConfigCommandOutput) => void): void;
1627
1063
  /**
1628
- * @public
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>
1064
+ * @see {@link UpdatePhoneNumberCommand}
1636
1065
  */
1637
1066
  updatePhoneNumber(args: UpdatePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePhoneNumberCommandOutput>;
1638
1067
  updatePhoneNumber(args: UpdatePhoneNumberCommandInput, cb: (err: any, data?: UpdatePhoneNumberCommandOutput) => void): void;
1639
1068
  updatePhoneNumber(args: UpdatePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePhoneNumberCommandOutput) => void): void;
1640
1069
  /**
1641
- * @public
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>
1070
+ * @see {@link UpdateQueueHoursOfOperationCommand}
1644
1071
  */
1645
1072
  updateQueueHoursOfOperation(args: UpdateQueueHoursOfOperationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueHoursOfOperationCommandOutput>;
1646
1073
  updateQueueHoursOfOperation(args: UpdateQueueHoursOfOperationCommandInput, cb: (err: any, data?: UpdateQueueHoursOfOperationCommandOutput) => void): void;
1647
1074
  updateQueueHoursOfOperation(args: UpdateQueueHoursOfOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQueueHoursOfOperationCommandOutput) => void): void;
1648
1075
  /**
1649
- * @public
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>
1076
+ * @see {@link UpdateQueueMaxContactsCommand}
1653
1077
  */
1654
1078
  updateQueueMaxContacts(args: UpdateQueueMaxContactsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueMaxContactsCommandOutput>;
1655
1079
  updateQueueMaxContacts(args: UpdateQueueMaxContactsCommandInput, cb: (err: any, data?: UpdateQueueMaxContactsCommandOutput) => void): void;
1656
1080
  updateQueueMaxContacts(args: UpdateQueueMaxContactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQueueMaxContactsCommandOutput) => void): void;
1657
1081
  /**
1658
- * @public
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>
1082
+ * @see {@link UpdateQueueNameCommand}
1661
1083
  */
1662
1084
  updateQueueName(args: UpdateQueueNameCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueNameCommandOutput>;
1663
1085
  updateQueueName(args: UpdateQueueNameCommandInput, cb: (err: any, data?: UpdateQueueNameCommandOutput) => void): void;
1664
1086
  updateQueueName(args: UpdateQueueNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQueueNameCommandOutput) => void): void;
1665
1087
  /**
1666
- * @public
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>
1088
+ * @see {@link UpdateQueueOutboundCallerConfigCommand}
1681
1089
  */
1682
1090
  updateQueueOutboundCallerConfig(args: UpdateQueueOutboundCallerConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueOutboundCallerConfigCommandOutput>;
1683
1091
  updateQueueOutboundCallerConfig(args: UpdateQueueOutboundCallerConfigCommandInput, cb: (err: any, data?: UpdateQueueOutboundCallerConfigCommandOutput) => void): void;
1684
1092
  updateQueueOutboundCallerConfig(args: UpdateQueueOutboundCallerConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQueueOutboundCallerConfigCommandOutput) => void): void;
1685
1093
  /**
1686
- * @public
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>
1094
+ * @see {@link UpdateQueueStatusCommand}
1689
1095
  */
1690
1096
  updateQueueStatus(args: UpdateQueueStatusCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueStatusCommandOutput>;
1691
1097
  updateQueueStatus(args: UpdateQueueStatusCommandInput, cb: (err: any, data?: UpdateQueueStatusCommandOutput) => void): void;
1692
1098
  updateQueueStatus(args: UpdateQueueStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQueueStatusCommandOutput) => void): void;
1693
1099
  /**
1694
- * @public
1695
- * <p>Updates the configuration settings for the specified quick connect.</p>
1100
+ * @see {@link UpdateQuickConnectConfigCommand}
1696
1101
  */
1697
1102
  updateQuickConnectConfig(args: UpdateQuickConnectConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQuickConnectConfigCommandOutput>;
1698
1103
  updateQuickConnectConfig(args: UpdateQuickConnectConfigCommandInput, cb: (err: any, data?: UpdateQuickConnectConfigCommandOutput) => void): void;
1699
1104
  updateQuickConnectConfig(args: UpdateQuickConnectConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQuickConnectConfigCommandOutput) => void): void;
1700
1105
  /**
1701
- * @public
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>
1106
+ * @see {@link UpdateQuickConnectNameCommand}
1703
1107
  */
1704
1108
  updateQuickConnectName(args: UpdateQuickConnectNameCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQuickConnectNameCommandOutput>;
1705
1109
  updateQuickConnectName(args: UpdateQuickConnectNameCommandInput, cb: (err: any, data?: UpdateQuickConnectNameCommandOutput) => void): void;
1706
1110
  updateQuickConnectName(args: UpdateQuickConnectNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQuickConnectNameCommandOutput) => void): void;
1707
1111
  /**
1708
- * @public
1709
- * <p>Updates the channels that agents can handle in the Contact Control Panel (CCP) for a routing
1710
- * profile.</p>
1112
+ * @see {@link UpdateRoutingProfileConcurrencyCommand}
1711
1113
  */
1712
1114
  updateRoutingProfileConcurrency(args: UpdateRoutingProfileConcurrencyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRoutingProfileConcurrencyCommandOutput>;
1713
1115
  updateRoutingProfileConcurrency(args: UpdateRoutingProfileConcurrencyCommandInput, cb: (err: any, data?: UpdateRoutingProfileConcurrencyCommandOutput) => void): void;
1714
1116
  updateRoutingProfileConcurrency(args: UpdateRoutingProfileConcurrencyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRoutingProfileConcurrencyCommandOutput) => void): void;
1715
1117
  /**
1716
- * @public
1717
- * <p>Updates the default outbound queue of a routing profile.</p>
1118
+ * @see {@link UpdateRoutingProfileDefaultOutboundQueueCommand}
1718
1119
  */
1719
1120
  updateRoutingProfileDefaultOutboundQueue(args: UpdateRoutingProfileDefaultOutboundQueueCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRoutingProfileDefaultOutboundQueueCommandOutput>;
1720
1121
  updateRoutingProfileDefaultOutboundQueue(args: UpdateRoutingProfileDefaultOutboundQueueCommandInput, cb: (err: any, data?: UpdateRoutingProfileDefaultOutboundQueueCommandOutput) => void): void;
1721
1122
  updateRoutingProfileDefaultOutboundQueue(args: UpdateRoutingProfileDefaultOutboundQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRoutingProfileDefaultOutboundQueueCommandOutput) => void): void;
1722
1123
  /**
1723
- * @public
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>
1124
+ * @see {@link UpdateRoutingProfileNameCommand}
1726
1125
  */
1727
1126
  updateRoutingProfileName(args: UpdateRoutingProfileNameCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRoutingProfileNameCommandOutput>;
1728
1127
  updateRoutingProfileName(args: UpdateRoutingProfileNameCommandInput, cb: (err: any, data?: UpdateRoutingProfileNameCommandOutput) => void): void;
1729
1128
  updateRoutingProfileName(args: UpdateRoutingProfileNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRoutingProfileNameCommandOutput) => void): void;
1730
1129
  /**
1731
- * @public
1732
- * <p>Updates the properties associated with a set of queues for a routing profile.</p>
1130
+ * @see {@link UpdateRoutingProfileQueuesCommand}
1733
1131
  */
1734
1132
  updateRoutingProfileQueues(args: UpdateRoutingProfileQueuesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRoutingProfileQueuesCommandOutput>;
1735
1133
  updateRoutingProfileQueues(args: UpdateRoutingProfileQueuesCommandInput, cb: (err: any, data?: UpdateRoutingProfileQueuesCommandOutput) => void): void;
1736
1134
  updateRoutingProfileQueues(args: UpdateRoutingProfileQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRoutingProfileQueuesCommandOutput) => void): void;
1737
1135
  /**
1738
- * @public
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>
1136
+ * @see {@link UpdateRuleCommand}
1742
1137
  */
1743
1138
  updateRule(args: UpdateRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRuleCommandOutput>;
1744
1139
  updateRule(args: UpdateRuleCommandInput, cb: (err: any, data?: UpdateRuleCommandOutput) => void): void;
1745
1140
  updateRule(args: UpdateRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRuleCommandOutput) => void): void;
1746
1141
  /**
1747
- * @public
1748
- * <p>This API is in preview release for Amazon Connect and is subject to change.</p>
1749
- * <p>Updates a security profile.</p>
1142
+ * @see {@link UpdateSecurityProfileCommand}
1750
1143
  */
1751
1144
  updateSecurityProfile(args: UpdateSecurityProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSecurityProfileCommandOutput>;
1752
1145
  updateSecurityProfile(args: UpdateSecurityProfileCommandInput, cb: (err: any, data?: UpdateSecurityProfileCommandOutput) => void): void;
1753
1146
  updateSecurityProfile(args: UpdateSecurityProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSecurityProfileCommandOutput) => void): void;
1754
1147
  /**
1755
- * @public
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>
1148
+ * @see {@link UpdateTaskTemplateCommand}
1759
1149
  */
1760
1150
  updateTaskTemplate(args: UpdateTaskTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTaskTemplateCommandOutput>;
1761
1151
  updateTaskTemplate(args: UpdateTaskTemplateCommandInput, cb: (err: any, data?: UpdateTaskTemplateCommandOutput) => void): void;
1762
1152
  updateTaskTemplate(args: UpdateTaskTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTaskTemplateCommandOutput) => void): void;
1763
1153
  /**
1764
- * @public
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>
1154
+ * @see {@link UpdateTrafficDistributionCommand}
1769
1155
  */
1770
1156
  updateTrafficDistribution(args: UpdateTrafficDistributionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrafficDistributionCommandOutput>;
1771
1157
  updateTrafficDistribution(args: UpdateTrafficDistributionCommandInput, cb: (err: any, data?: UpdateTrafficDistributionCommandOutput) => void): void;
1772
1158
  updateTrafficDistribution(args: UpdateTrafficDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrafficDistributionCommandOutput) => void): void;
1773
1159
  /**
1774
- * @public
1775
- * <p>Assigns the specified hierarchy group to the specified user.</p>
1160
+ * @see {@link UpdateUserHierarchyCommand}
1776
1161
  */
1777
1162
  updateUserHierarchy(args: UpdateUserHierarchyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserHierarchyCommandOutput>;
1778
1163
  updateUserHierarchy(args: UpdateUserHierarchyCommandInput, cb: (err: any, data?: UpdateUserHierarchyCommandOutput) => void): void;
1779
1164
  updateUserHierarchy(args: UpdateUserHierarchyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserHierarchyCommandOutput) => void): void;
1780
1165
  /**
1781
- * @public
1782
- * <p>Updates the name of the user hierarchy group. </p>
1166
+ * @see {@link UpdateUserHierarchyGroupNameCommand}
1783
1167
  */
1784
1168
  updateUserHierarchyGroupName(args: UpdateUserHierarchyGroupNameCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserHierarchyGroupNameCommandOutput>;
1785
1169
  updateUserHierarchyGroupName(args: UpdateUserHierarchyGroupNameCommandInput, cb: (err: any, data?: UpdateUserHierarchyGroupNameCommandOutput) => void): void;
1786
1170
  updateUserHierarchyGroupName(args: UpdateUserHierarchyGroupNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserHierarchyGroupNameCommandOutput) => void): void;
1787
1171
  /**
1788
- * @public
1789
- * <p>Updates the user hierarchy structure: add, remove, and rename user hierarchy levels.</p>
1172
+ * @see {@link UpdateUserHierarchyStructureCommand}
1790
1173
  */
1791
1174
  updateUserHierarchyStructure(args: UpdateUserHierarchyStructureCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserHierarchyStructureCommandOutput>;
1792
1175
  updateUserHierarchyStructure(args: UpdateUserHierarchyStructureCommandInput, cb: (err: any, data?: UpdateUserHierarchyStructureCommandOutput) => void): void;
1793
1176
  updateUserHierarchyStructure(args: UpdateUserHierarchyStructureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserHierarchyStructureCommandOutput) => void): void;
1794
1177
  /**
1795
- * @public
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>
1178
+ * @see {@link UpdateUserIdentityInfoCommand}
1806
1179
  */
1807
1180
  updateUserIdentityInfo(args: UpdateUserIdentityInfoCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserIdentityInfoCommandOutput>;
1808
1181
  updateUserIdentityInfo(args: UpdateUserIdentityInfoCommandInput, cb: (err: any, data?: UpdateUserIdentityInfoCommandOutput) => void): void;
1809
1182
  updateUserIdentityInfo(args: UpdateUserIdentityInfoCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserIdentityInfoCommandOutput) => void): void;
1810
1183
  /**
1811
- * @public
1812
- * <p>Updates the phone configuration settings for the specified user.</p>
1184
+ * @see {@link UpdateUserPhoneConfigCommand}
1813
1185
  */
1814
1186
  updateUserPhoneConfig(args: UpdateUserPhoneConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserPhoneConfigCommandOutput>;
1815
1187
  updateUserPhoneConfig(args: UpdateUserPhoneConfigCommandInput, cb: (err: any, data?: UpdateUserPhoneConfigCommandOutput) => void): void;
1816
1188
  updateUserPhoneConfig(args: UpdateUserPhoneConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserPhoneConfigCommandOutput) => void): void;
1817
1189
  /**
1818
- * @public
1819
- * <p>Assigns the specified routing profile to the specified user.</p>
1190
+ * @see {@link UpdateUserRoutingProfileCommand}
1820
1191
  */
1821
1192
  updateUserRoutingProfile(args: UpdateUserRoutingProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserRoutingProfileCommandOutput>;
1822
1193
  updateUserRoutingProfile(args: UpdateUserRoutingProfileCommandInput, cb: (err: any, data?: UpdateUserRoutingProfileCommandOutput) => void): void;
1823
1194
  updateUserRoutingProfile(args: UpdateUserRoutingProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserRoutingProfileCommandOutput) => void): void;
1824
1195
  /**
1825
- * @public
1826
- * <p>Assigns the specified security profiles to the specified user.</p>
1196
+ * @see {@link UpdateUserSecurityProfilesCommand}
1827
1197
  */
1828
1198
  updateUserSecurityProfiles(args: UpdateUserSecurityProfilesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserSecurityProfilesCommandOutput>;
1829
1199
  updateUserSecurityProfiles(args: UpdateUserSecurityProfilesCommandInput, cb: (err: any, data?: UpdateUserSecurityProfilesCommandOutput) => void): void;
1830
1200
  updateUserSecurityProfiles(args: UpdateUserSecurityProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserSecurityProfilesCommandOutput) => void): void;
1831
1201
  }
1202
+ /**
1203
+ * @public
1204
+ * <p>Amazon Connect is a cloud-based contact center solution that you use to set up and
1205
+ * manage a customer contact center and provide reliable customer engagement at any scale.</p>
1206
+ * <p>Amazon Connect provides metrics and real-time reporting that enable you to optimize
1207
+ * contact routing. You can also resolve customer issues more efficiently by getting customers in
1208
+ * touch with the appropriate agents.</p>
1209
+ * <p>There are limits to the number of Amazon Connect resources that you can create. There
1210
+ * are also limits to the number of requests that you can make per second. For more information, see
1211
+ * <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
1212
+ * Guide</i>.</p>
1213
+ * <p>You can connect programmatically to an Amazon Web Services service by using an endpoint. For
1214
+ * 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>
1215
+ */
1216
+ export declare class Connect extends ConnectClient implements Connect {
1217
+ }