Vulnerability
public struct Vulnerability : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
CVSS scores from the advisory related to the vulnerability.
Declaration
Swift
public let cvss: [Cvss]?
-
The identifier of the vulnerability.
Declaration
Swift
public let id: String
-
A list of URLs that provide additional information about the vulnerability.
Declaration
Swift
public let referenceUrls: [String]?
-
List of vulnerabilities that are related to this vulnerability.
Declaration
Swift
public let relatedVulnerabilities: [String]?
-
Information about the vendor that generates the vulnerability report.
Declaration
Swift
public let vendor: VulnerabilityVendor?
-
List of software packages that have the vulnerability.
Declaration
Swift
public let vulnerablePackages: [SoftwarePackage]?
-
Undocumented
Declaration
Swift
public init(cvss: [Cvss]? = nil, id: String, referenceUrls: [String]? = nil, relatedVulnerabilities: [String]? = nil, vendor: VulnerabilityVendor? = nil, vulnerablePackages: [SoftwarePackage]? = nil)
-
Declaration
Swift
public func validate(name: String) throws