Values.LineageObjectSourceInformation about the runtime process details.
type nonrec t = {startTime : Timestamp.t option;The time when the process started. This is in UTC format.
*)namespacePid : Integer.t option;The process ID of the child process.
*)userId : Integer.t option;The user ID of the user that executed the process.
*)name : String_.t option;The name of the process.
*)pid : Integer.t option;The ID of the process.
*)uuid : String_.t option;The unique ID assigned to the process by GuardDuty.
*)executablePath : String_.t option;The absolute path of the process executable file.
*)euid : Integer.t option;The effective user ID that was used to execute the process.
*)parentUuid : String_.t option;The unique ID of the parent process. This ID is assigned to the parent process by GuardDuty.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Integer of Integer.t
| `String of String_.t
| `Timestamp of Timestamp.t ])
list ]