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.
26774 26775 26776 26777 26778 26779 26780 26781 |
# File 'lib/aws-sdk-securityhub/types.rb', line 26774 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.
26774 26775 26776 26777 26778 26779 26780 26781 |
# File 'lib/aws-sdk-securityhub/types.rb', line 26774 class Malware < Struct.new( :name, :type, :path, :state) SENSITIVE = [] include Aws::Structure end |