Learn R Programming

paws.customer.engagement (version 0.1.12)

connect_update_quick_connect_config: This API is in preview release for Amazon Connect and is subject to change

Description

This API is in preview release for Amazon Connect and is subject to change.

Updates the configuration settings for the specified quick connect.

Usage

connect_update_quick_connect_config(InstanceId, QuickConnectId,
  QuickConnectConfig)

Value

An empty list.

Arguments

InstanceId

[required] The identifier of the Amazon Connect instance.

QuickConnectId

[required] The identifier for the quick connect.

QuickConnectConfig

[required] Information about the configuration settings for the quick connect.

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"
    )
  )
)