Module Values.ContactContentSource

An object that represents a content of an Amazon Connect contact object.

Sourcetype nonrec t = {
  1. contactArn : ContactArn.t option;
    (*

    A unique identifier of a contact in Amazon Connect.

    *)
  2. channel : Channel.t option;
    (*

    A list of channels to filter on for related items of type Contact.

    *)
  3. connectedToSystemTime : ConnectedToSystemTime.t option;
    (*

    The difference between the InitiationTimestamp and the DisconnectTimestamp of the contact.

    *)
}
Sourceval make : ?contactArn:??? -> ?channel:??? -> ?connectedToSystemTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ContactArn.t | `Timestamp of ConnectedToSystemTime.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