Update Quick Connect Config
connect_update_quick_connect_config | R Documentation |
Updates the configuration settings for the specified quick connect¶
Description¶
Updates the configuration settings for the specified quick connect.
Usage¶
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.
QuickConnectId
[required] The identifier for the quick connect.
QuickConnectConfig
[required] Information about the configuration settings for the quick connect.
Value¶
An empty list.
Request syntax¶
svc$update_quick_connect_config(
InstanceId = "string",
QuickConnectId = "string",
QuickConnectConfig = list(
QuickConnectType = "USER"|"QUEUE"|"PHONE_NUMBER",
UserConfig = list(
UserId = "string",
ContactFlowId = "string"
),
QueueConfig = list(
QueueId = "string",
ContactFlowId = "string"
),
PhoneConfig = list(
PhoneNumber = "string"
)
)
)