Module Values_2.RoutingProfileQueueConfigSummarySource

Contains summary information about a routing profile queue.

Sourcetype nonrec t = {
  1. queueId : Values_0.QueueId.t option;
    (*

    The identifier for the queue.

    *)
  2. queueArn : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the queue.

    *)
  3. queueName : QueueName.t option;
    (*

    The name of the queue.

    *)
  4. priority : Values_0.Priority.t option;
    (*

    The order in which contacts are to be handled for the queue. For more information, see Queues: priority and delay.

    *)
  5. delay : Values_0.Delay.t option;
    (*

    The delay, in seconds, that a contact should be in the queue before they are routed to an available agent. For more information, see Queues: priority and delay in the Amazon Connect Administrator Guide.

    *)
  6. channel : Values_0.Channel.t option;
    (*

    The channels this queue supports.

    *)
}
Sourceval make : ?queueId:??? -> ?queueArn:??? -> ?queueName:??? -> ?priority:??? -> ?delay:??? -> ?channel:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Priority.t | `String of Values_0.QueueId.t ]) 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