You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SecurityHub::Types::ProcessDetails

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ProcessDetails as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "NonEmptyString",
  path: "NonEmptyString",
  pid: 1,
  parent_pid: 1,
  launched_at: "NonEmptyString",
  terminated_at: "NonEmptyString",
}

The details of process-related information about a finding.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#launched_atString

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. For example, 2020-03-22T13:22:13.933Z.

Returns:

  • (String)

    Indicates when the process was launched.

#nameString

The name of the process.

Returns:

  • (String)

    The name of the process.

#parent_pidInteger

The parent process ID.

Returns:

  • (Integer)

    The parent process ID.

#pathString

The path to the process executable.

Returns:

  • (String)

    The path to the process executable.

#pidInteger

The process ID.

Returns:

  • (Integer)

    The process ID.

#terminated_atString

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. For example, 2020-03-22T13:22:13.933Z.

Returns:

  • (String)

    Indicates when the process was terminated.