Skip to content

Create Quick Connect

connect_create_quick_connect R Documentation

Creates a quick connect for the specified Amazon Connect instance

Description

Creates a quick connect for the specified Amazon Connect instance.

Usage

connect_create_quick_connect(InstanceId, Name, Description,
  QuickConnectConfig, Tags)

Arguments

InstanceId

[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

Name

[required] A unique name of the quick connect.

Description

The description of the quick connect.

QuickConnectConfig

[required] Configuration settings for the quick connect.

Tags

The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

Value

A list with the following syntax:

list(
  QuickConnectARN = "string",
  QuickConnectId = "string"
)

Request syntax

svc$create_quick_connect(
  InstanceId = "string",
  Name = "string",
  Description = "string",
  QuickConnectConfig = list(
    QuickConnectType = "USER"|"QUEUE"|"PHONE_NUMBER",
    UserConfig = list(
      UserId = "string",
      ContactFlowId = "string"
    ),
    QueueConfig = list(
      QueueId = "string",
      ContactFlowId = "string"
    ),
    PhoneConfig = list(
      PhoneNumber = "string"
    )
  ),
  Tags = list(
    "string"
  )
)