Module Values.LineageObjectSource

Information about the runtime process details.

Sourcetype nonrec t = {
  1. startTime : Timestamp.t option;
    (*

    The time when the process started. This is in UTC format.

    *)
  2. namespacePid : Integer.t option;
    (*

    The process ID of the child process.

    *)
  3. userId : Integer.t option;
    (*

    The user ID of the user that executed the process.

    *)
  4. name : String_.t option;
    (*

    The name of the process.

    *)
  5. pid : Integer.t option;
    (*

    The ID of the process.

    *)
  6. uuid : String_.t option;
    (*

    The unique ID assigned to the process by GuardDuty.

    *)
  7. executablePath : String_.t option;
    (*

    The absolute path of the process executable file.

    *)
  8. euid : Integer.t option;
    (*

    The effective user ID that was used to execute the process.

    *)
  9. parentUuid : String_.t option;
    (*

    The unique ID of the parent process. This ID is assigned to the parent process by GuardDuty.

    *)
}
Sourceval make : ?startTime:??? -> ?namespacePid:??? -> ?userId:??? -> ?name:??? -> ?pid:??? -> ?uuid:??? -> ?executablePath:??? -> ?euid:??? -> ?parentUuid:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t | `Timestamp of Timestamp.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