Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data ProcessDetails = ProcessDetails' {}
- newProcessDetails :: ProcessDetails
- processDetails_path :: Lens' ProcessDetails (Maybe Text)
- processDetails_name :: Lens' ProcessDetails (Maybe Text)
- processDetails_pid :: Lens' ProcessDetails (Maybe Int)
- processDetails_terminatedAt :: Lens' ProcessDetails (Maybe Text)
- processDetails_parentPid :: Lens' ProcessDetails (Maybe Int)
- processDetails_launchedAt :: Lens' ProcessDetails (Maybe Text)
Documentation
data ProcessDetails Source #
The details of process-related information about a finding.
See: newProcessDetails
smart constructor.
ProcessDetails' | |
|
Instances
newProcessDetails :: ProcessDetails Source #
Create a value of ProcessDetails
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:path:ProcessDetails'
, processDetails_path
- The path to the process executable.
$sel:name:ProcessDetails'
, processDetails_name
- The name of the process.
$sel:pid:ProcessDetails'
, processDetails_pid
- The process ID.
$sel:terminatedAt:ProcessDetails'
, processDetails_terminatedAt
- 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
.
$sel:parentPid:ProcessDetails'
, processDetails_parentPid
- The parent process ID.
$sel:launchedAt:ProcessDetails'
, processDetails_launchedAt
- 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
.
processDetails_path :: Lens' ProcessDetails (Maybe Text) Source #
The path to the process executable.
processDetails_name :: Lens' ProcessDetails (Maybe Text) Source #
The name of the process.
processDetails_pid :: Lens' ProcessDetails (Maybe Int) Source #
The process ID.
processDetails_terminatedAt :: Lens' ProcessDetails (Maybe Text) Source #
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
.
processDetails_parentPid :: Lens' ProcessDetails (Maybe Int) Source #
The parent process ID.
processDetails_launchedAt :: Lens' ProcessDetails (Maybe Text) Source #
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
.