Module Values.DebugSessionSource

Contains information about the debug session for a build. For more information, see Viewing a running build in Session Manager.

Sourcetype nonrec t = {
  1. sessionEnabled : WrapperBoolean.t option;
    (*

    Specifies if session debugging is enabled for this build.

    *)
  2. sessionTarget : NonEmptyString.t option;
    (*

    Contains the identifier of the Session Manager session used for the build. To work with the paused build, you open this session to examine, control, and resume the build.

    *)
}
Sourceval make : ?sessionEnabled:??? -> ?sessionTarget:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of WrapperBoolean.t | `String of NonEmptyString.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