You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SecurityHub::Types::Malware

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Malware as input to an Aws::Client method, you can use a vanilla 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.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the malware that was observed.

Returns:

  • (String)

    The name of the malware that was observed.

#pathString

The file system path of the malware that was observed.

Returns:

  • (String)

    The file system path of the malware that was observed.

#stateString

The state of the malware that was observed.

Possible values:

  • OBSERVED
  • REMOVAL_FAILED
  • REMOVED

Returns:

  • (String)

    The state of the malware that was observed.

#typeString

The type of the malware that was observed.

Possible values:

  • ADWARE
  • BLENDED_THREAT
  • BOTNET_AGENT
  • COIN_MINER
  • EXPLOIT_KIT
  • KEYLOGGER
  • MACRO
  • POTENTIALLY_UNWANTED
  • SPYWARE
  • RANSOMWARE
  • REMOTE_ACCESS
  • ROOTKIT
  • TROJAN
  • VIRUS
  • WORM

Returns:

  • (String)

    The type of the malware that was observed.