Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ProcessDetails

import type { ProcessDetails } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

The details of process-related information about a finding.

interface ProcessDetails {
LaunchedAt?: string | null;
Name?: string | null;
ParentPid?: number | null;
Path?: string | null;
Pid?: number | null;
TerminatedAt?: string | null;
}

§Properties

§
LaunchedAt?: string | null
[src]

Indicates when the process was launched.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T. For example, 2020-03-22T13:22:13.933Z.

§
Name?: string | null
[src]

The name of the process.

§
ParentPid?: number | null
[src]

The parent process ID.

§
Path?: string | null
[src]

The path to the process executable.

§
Pid?: number | null
[src]

The process ID.

§
TerminatedAt?: string | null
[src]

Indicates when the process was terminated.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T. For example, 2020-03-22T13:22:13.933Z.