Module Values_0.QuickConnectConfigSource

Contains configuration settings for a quick connect.

Sourcetype nonrec t = {
  1. quickConnectType : QuickConnectType.t;
    (*

    The type of quick connect. In the Amazon Connect admin website, when you create a quick connect, you are prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).

    *)
  2. userConfig : UserQuickConnectConfig.t option;
    (*

    The user configuration. This is required only if QuickConnectType is USER.

    *)
  3. queueConfig : QueueQuickConnectConfig.t option;
    (*

    The queue configuration. This is required only if QuickConnectType is QUEUE.

    *)
  4. phoneConfig : PhoneNumberQuickConnectConfig.t option;
    (*

    The phone configuration. This is required only if QuickConnectType is PHONE_NUMBER.

    *)
  5. flowConfig : FlowQuickConnectConfig.t option;
    (*

    Flow configuration for quick connect setup.

    *)
}
Sourceval context_ : string
Sourceval make : ?userConfig:??? -> ?queueConfig:??? -> ?phoneConfig:??? -> ?flowConfig:??? -> quickConnectType:QuickConnectType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of UserId.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t