This API is in preview release for Amazon Connect and is subject to change.
Creates a quick connect for the specified Amazon Connect instance.
connect_create_quick_connect(InstanceId, Name, Description,
QuickConnectConfig, Tags)
A list with the following syntax:
list(
QuickConnectARN = "string",
QuickConnectId = "string"
)
[required] The identifier of the Amazon Connect instance.
[required] The name of the quick connect.
The description of the quick connect.
[required] Configuration settings for the quick connect.
One or more tags.
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"
)
)