Struct aws_sdk_ecr::types::ImageScanFinding
source · #[non_exhaustive]pub struct ImageScanFinding {
pub name: Option<String>,
pub description: Option<String>,
pub uri: Option<String>,
pub severity: Option<FindingSeverity>,
pub attributes: Option<Vec<Attribute>>,
}
Expand description
Contains information about an image scan finding.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name associated with the finding, usually a CVE number.
description: Option<String>
The description of the finding.
uri: Option<String>
A link containing additional details about the security vulnerability.
severity: Option<FindingSeverity>
The finding severity.
attributes: Option<Vec<Attribute>>
A collection of attributes of the host from which the finding is generated.
Implementations§
source§impl ImageScanFinding
impl ImageScanFinding
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the finding.
sourcepub fn uri(&self) -> Option<&str>
pub fn uri(&self) -> Option<&str>
A link containing additional details about the security vulnerability.
sourcepub fn severity(&self) -> Option<&FindingSeverity>
pub fn severity(&self) -> Option<&FindingSeverity>
The finding severity.
sourcepub fn attributes(&self) -> &[Attribute]
pub fn attributes(&self) -> &[Attribute]
A collection of attributes of the host from which the finding is generated.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .attributes.is_none()
.
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
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 ImageScanFinding
impl Debug for ImageScanFinding
source§impl PartialEq for ImageScanFinding
impl PartialEq for ImageScanFinding
source§fn eq(&self, other: &ImageScanFinding) -> bool
fn eq(&self, other: &ImageScanFinding) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ImageScanFinding
Auto Trait Implementations§
impl RefUnwindSafe for ImageScanFinding
impl Send for ImageScanFinding
impl Sync for ImageScanFinding
impl Unpin for ImageScanFinding
impl UnwindSafe for ImageScanFinding
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.