Class: Aws::SecurityHub::Types::Malware
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::Malware
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
A list of malware related to a finding.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the malware that was observed.
-
#path ⇒ String
The file system path of the malware that was observed.
-
#state ⇒ String
The state of the malware that was observed.
-
#type ⇒ String
The type of the malware that was observed.
Instance Attribute Details
#name ⇒ String
The name of the malware that was observed.
Length Constraints: Minimum of 1. Maximum of 64.
26770 26771 26772 26773 26774 26775 26776 26777 |
# File 'lib/aws-sdk-securityhub/types.rb', line 26770 class Malware < Struct.new( :name, :type, :path, :state) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The file system path of the malware that was observed.
Length Constraints: Minimum of 1. Maximum of 512.
26770 26771 26772 26773 26774 26775 26776 26777 |
# File 'lib/aws-sdk-securityhub/types.rb', line 26770 class Malware < Struct.new( :name, :type, :path, :state) SENSITIVE = [] include Aws::Structure end |