Class: Aws::SecurityHub::Types::ProcessDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::ProcessDetails
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
The details of process-related information about a finding.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#launched_at ⇒ String
Indicates when the process was launched.
-
#name ⇒ String
The name of the process.
-
#parent_pid ⇒ Integer
The parent process ID.
-
#path ⇒ String
The path to the process executable.
-
#pid ⇒ Integer
The process ID.
-
#terminated_at ⇒ String
Indicates when the process was terminated.
Instance Attribute Details
#launched_at ⇒ String
Indicates when the process was launched.
For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.
29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29096 class ProcessDetails < Struct.new( :name, :path, :pid, :parent_pid, :launched_at, :terminated_at) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the process.
Length Constraints: Minimum of 1. Maximum of 64.
29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29096 class ProcessDetails < Struct.new( :name, :path, :pid, :parent_pid, :launched_at, :terminated_at) SENSITIVE = [] include Aws::Structure end |
#parent_pid ⇒ Integer
The parent process ID. This field accepts positive integers between
O and 2147483647.
29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29096 class ProcessDetails < Struct.new( :name, :path, :pid, :parent_pid, :launched_at, :terminated_at) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The path to the process executable.
Length Constraints: Minimum of 1. Maximum of 512.
29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29096 class ProcessDetails < Struct.new( :name, :path, :pid, :parent_pid, :launched_at, :terminated_at) SENSITIVE = [] include Aws::Structure end |
#pid ⇒ Integer
The process ID.
29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29096 class ProcessDetails < Struct.new( :name, :path, :pid, :parent_pid, :launched_at, :terminated_at) SENSITIVE = [] include Aws::Structure end |
#terminated_at ⇒ String
Indicates when the process was terminated.
For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.
29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29096 class ProcessDetails < Struct.new( :name, :path, :pid, :parent_pid, :launched_at, :terminated_at) SENSITIVE = [] include Aws::Structure end |