Struct aws_sdk_ecr::types::ImageScanFindingsSummary
source · #[non_exhaustive]pub struct ImageScanFindingsSummary { /* private fields */ }
Expand description
A summary of the last completed image scan.
Implementations§
source§impl ImageScanFindingsSummary
impl ImageScanFindingsSummary
sourcepub fn image_scan_completed_at(&self) -> Option<&DateTime>
pub fn image_scan_completed_at(&self) -> Option<&DateTime>
The time of the last completed image scan.
sourcepub fn vulnerability_source_updated_at(&self) -> Option<&DateTime>
pub fn vulnerability_source_updated_at(&self) -> Option<&DateTime>
The time when the vulnerability data was last scanned.
sourcepub fn finding_severity_counts(&self) -> Option<&HashMap<FindingSeverity, i32>>
pub fn finding_severity_counts(&self) -> Option<&HashMap<FindingSeverity, i32>>
The image vulnerability counts, sorted by severity.
source§impl ImageScanFindingsSummary
impl ImageScanFindingsSummary
sourcepub fn builder() -> ImageScanFindingsSummaryBuilder
pub fn builder() -> ImageScanFindingsSummaryBuilder
Creates a new builder-style object to manufacture ImageScanFindingsSummary
.
Trait Implementations§
source§impl Clone for ImageScanFindingsSummary
impl Clone for ImageScanFindingsSummary
source§fn clone(&self) -> ImageScanFindingsSummary
fn clone(&self) -> ImageScanFindingsSummary
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ImageScanFindingsSummary
impl Debug for ImageScanFindingsSummary
source§impl PartialEq<ImageScanFindingsSummary> for ImageScanFindingsSummary
impl PartialEq<ImageScanFindingsSummary> for ImageScanFindingsSummary
source§fn eq(&self, other: &ImageScanFindingsSummary) -> bool
fn eq(&self, other: &ImageScanFindingsSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ImageScanFindingsSummary
Auto Trait Implementations§
impl RefUnwindSafe for ImageScanFindingsSummary
impl Send for ImageScanFindingsSummary
impl Sync for ImageScanFindingsSummary
impl Unpin for ImageScanFindingsSummary
impl UnwindSafe for ImageScanFindingsSummary
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more