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
Note:
When making an API call, you may pass Malware data as a hash:
{
name: "NonEmptyString", # required
type: "ADWARE", # accepts ADWARE, BLENDED_THREAT, BOTNET_AGENT, COIN_MINER, EXPLOIT_KIT, KEYLOGGER, MACRO, POTENTIALLY_UNWANTED, SPYWARE, RANSOMWARE, REMOTE_ACCESS, ROOTKIT, TROJAN, VIRUS, WORM
path: "NonEmptyString",
state: "OBSERVED", # accepts OBSERVED, REMOVAL_FAILED, REMOVED
}
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.
19921 19922 19923 19924 19925 19926 19927 19928 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 19921 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.
19921 19922 19923 19924 19925 19926 19927 19928 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 19921 class Malware < Struct.new( :name, :type, :path, :state) SENSITIVE = [] include Aws::Structure end |