Module Values.GetConnectionResponseSource

Get information about the connection with the provided id.

Sourcetype nonrec t = {
  1. connectedAt : string option;
    (*

    The time in ISO 8601 format for when the connection was established.

    *)
  2. identity : Identity.t option;
  3. lastActiveAt : string option;
    (*

    The time in ISO 8601 format for when the connection was last active.

    *)
}
Sourcetype nonrec error = [
  1. | `ForbiddenException of ForbiddenException.t
  2. | `GoneException of GoneException.t
  3. | `LimitExceededException of LimitExceededException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?connectedAt:??? -> ?identity:??? -> ?lastActiveAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ForbiddenException of unit | `GoneException of unit | `LimitExceededException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ForbiddenException of unit | `GoneException of unit | `LimitExceededException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of string ]) list | `Timestamp of string ]) 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