Module Values.ProcessDetailsSource

The details of process-related information about a finding.

Sourcetype nonrec t = {
  1. name : NonEmptyString.t option;
    (*

    The name of the process. Length Constraints: Minimum of 1. Maximum of 64.

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

    The path to the process executable. Length Constraints: Minimum of 1. Maximum of 512.

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

    The process ID.

    *)
  4. parentPid : Integer.t option;
    (*

    The parent process ID. This field accepts positive integers between O and 2147483647.

    *)
  5. launchedAt : NonEmptyString.t option;
    (*

    Indicates when the process was launched. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  6. terminatedAt : NonEmptyString.t option;
    (*

    Indicates when the process was terminated. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
}
Sourceval make : ?name:??? -> ?path:??? -> ?pid:??? -> ?parentPid:??? -> ?launchedAt:??? -> ?terminatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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