Class: Aws::SecurityHub::Types::Malware
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::Malware
- Defined in:
- gems/aws-sdk-securityhub/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.
25863 25864 25865 25866 25867 25868 25869 25870 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 25863 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.
25863 25864 25865 25866 25867 25868 25869 25870 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 25863 class Malware < Struct.new( :name, :type, :path, :state) SENSITIVE = [] include Aws::Structure end |