Struct aws_sdk_imagebuilder::types::ImageScanFinding
source · #[non_exhaustive]pub struct ImageScanFinding { /* private fields */ }
Expand description
Contains details about a vulnerability scan finding.
Implementations§
source§impl ImageScanFinding
impl ImageScanFinding
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The Amazon Web Services account ID that's associated with the finding.
sourcepub fn image_build_version_arn(&self) -> Option<&str>
pub fn image_build_version_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the image build version that's associated with the finding.
sourcepub fn image_pipeline_arn(&self) -> Option<&str>
pub fn image_pipeline_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the image pipeline that's associated with the finding.
sourcepub fn type(&self) -> Option<&str>
pub fn type(&self) -> Option<&str>
The type of the finding. Image Builder looks for findings of the type PACKAGE_VULNERABILITY
that apply to output images, and excludes other types.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the finding.
sourcepub fn remediation(&self) -> Option<&Remediation>
pub fn remediation(&self) -> Option<&Remediation>
An object that contains the details about how to remediate the finding.
sourcepub fn first_observed_at(&self) -> Option<&DateTime>
pub fn first_observed_at(&self) -> Option<&DateTime>
The date and time when the finding was first observed.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp when the finding was last updated.
sourcepub fn inspector_score(&self) -> Option<f64>
pub fn inspector_score(&self) -> Option<f64>
The score that Amazon Inspector assigned for the finding.
sourcepub fn inspector_score_details(&self) -> Option<&InspectorScoreDetails>
pub fn inspector_score_details(&self) -> Option<&InspectorScoreDetails>
An object that contains details of the Amazon Inspector score.
sourcepub fn package_vulnerability_details(
&self
) -> Option<&PackageVulnerabilityDetails>
pub fn package_vulnerability_details( &self ) -> Option<&PackageVulnerabilityDetails>
An object that contains the details of a package vulnerability finding.
sourcepub fn fix_available(&self) -> Option<&str>
pub fn fix_available(&self) -> Option<&str>
Details about whether a fix is available for any of the packages that are identified in the finding through a version update.
source§impl ImageScanFinding
impl ImageScanFinding
sourcepub fn builder() -> ImageScanFindingBuilder
pub fn builder() -> ImageScanFindingBuilder
Creates a new builder-style object to manufacture ImageScanFinding
.
Trait Implementations§
source§impl Clone for ImageScanFinding
impl Clone for ImageScanFinding
source§fn clone(&self) -> ImageScanFinding
fn clone(&self) -> ImageScanFinding
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ImageScanFinding
impl Debug for ImageScanFinding
source§impl PartialEq<ImageScanFinding> for ImageScanFinding
impl PartialEq<ImageScanFinding> for ImageScanFinding
source§fn eq(&self, other: &ImageScanFinding) -> bool
fn eq(&self, other: &ImageScanFinding) -> bool
self
and other
values to be equal, and is used
by ==
.