Struct aws_sdk_securityhub::model::Vulnerability
source · [−]#[non_exhaustive]pub struct Vulnerability {
pub id: Option<String>,
pub vulnerable_packages: Option<Vec<SoftwarePackage>>,
pub cvss: Option<Vec<Cvss>>,
pub related_vulnerabilities: Option<Vec<String>>,
pub vendor: Option<VulnerabilityVendor>,
pub reference_urls: Option<Vec<String>>,
}
Expand description
A vulnerability associated with a finding.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Option<String>
The identifier of the vulnerability.
vulnerable_packages: Option<Vec<SoftwarePackage>>
List of software packages that have the vulnerability.
cvss: Option<Vec<Cvss>>
CVSS scores from the advisory related to the vulnerability.
List of vulnerabilities that are related to this vulnerability.
vendor: Option<VulnerabilityVendor>
Information about the vendor that generates the vulnerability report.
reference_urls: Option<Vec<String>>
A list of URLs that provide additional information about the vulnerability.
Implementations
List of software packages that have the vulnerability.
CVSS scores from the advisory related to the vulnerability.
List of vulnerabilities that are related to this vulnerability.
Information about the vendor that generates the vulnerability report.
Creates a new builder-style object to manufacture Vulnerability
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for Vulnerability
impl Send for Vulnerability
impl Sync for Vulnerability
impl Unpin for Vulnerability
impl UnwindSafe for Vulnerability
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more