Module Values.SessionSummarySource

The summary of a session.

Sourcetype nonrec t = {
  1. sessionId : SessionId.t option;
    (*

    The session ID.

    *)
  2. fleetId : FleetId.t option;
    (*

    The fleet ID.

    *)
  3. workerId : WorkerId.t option;
    (*

    The worker ID.

    *)
  4. startedAt : StartedAt.t option;
    (*

    The date and time the resource started running.

    *)
  5. lifecycleStatus : SessionLifecycleStatus.t option;
    (*

    The life cycle status for the session.

    *)
  6. endedAt : EndedAt.t option;
    (*

    The date and time the resource ended running.

    *)
  7. targetLifecycleStatus : SessionLifecycleTargetStatus.t option;
    (*

    The target life cycle status for the session.

    *)
  8. updatedAt : UpdatedAt.t option;
    (*

    The date and time the resource was updated.

    *)
  9. updatedBy : UpdatedBy.t option;
    (*

    The user or system that updated this resource.

    *)
}
Sourceval make : ?sessionId:??? -> ?fleetId:??? -> ?workerId:??? -> ?startedAt:??? -> ?lifecycleStatus:??? -> ?endedAt:??? -> ?targetLifecycleStatus:??? -> ?updatedAt:??? -> ?updatedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SessionId.t | `Timestamp of StartedAt.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