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

Class: Aws::SecurityHub::Types::Vulnerability

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

Overview

Note:

When passing Vulnerability as input to an Aws::Client method, you can use a vanilla Hash:

{
  id: "NonEmptyString", # required
  vulnerable_packages: [
    {
      name: "NonEmptyString",
      version: "NonEmptyString",
      epoch: "NonEmptyString",
      release: "NonEmptyString",
      architecture: "NonEmptyString",
    },
  ],
  cvss: [
    {
      version: "NonEmptyString",
      base_score: 1.0,
      base_vector: "NonEmptyString",
    },
  ],
  related_vulnerabilities: ["NonEmptyString"],
  vendor: {
    name: "NonEmptyString", # required
    url: "NonEmptyString",
    vendor_severity: "NonEmptyString",
    vendor_created_at: "NonEmptyString",
    vendor_updated_at: "NonEmptyString",
  },
  reference_urls: ["NonEmptyString"],
}

A vulnerability associated with a finding.

Instance Attribute Summary collapse

Instance Attribute Details

#cvssArray<Types::Cvss>

CVSS scores from the advisory related to the vulnerability.

Returns:

  • (Array<Types::Cvss>)

    CVSS scores from the advisory related to the vulnerability.

#idString

The identifier of the vulnerability.

Returns:

  • (String)

    The identifier of the vulnerability.

#reference_urlsArray<String>

A list of URLs that provide additional information about the vulnerability.

Returns:

  • (Array<String>)

    A list of URLs that provide additional information about the vulnerability.

List of vulnerabilities that are related to this vulnerability.

Returns:

  • (Array<String>)

    List of vulnerabilities that are related to this vulnerability.

#vendorTypes::VulnerabilityVendor

Information about the vendor that generates the vulnerability report.

Returns:

#vulnerable_packagesArray<Types::SoftwarePackage>

List of software packages that have the vulnerability.

Returns: