Struct aws_sdk_ecr::model::ImageScanningConfiguration
source · [−]#[non_exhaustive]pub struct ImageScanningConfiguration { /* private fields */ }Expand description
The image scanning configuration for a repository.
Implementations
sourceimpl ImageScanningConfiguration
impl ImageScanningConfiguration
sourcepub fn scan_on_push(&self) -> bool
pub fn scan_on_push(&self) -> bool
The setting that determines whether images are scanned after being pushed to a repository. If set to true, images will be scanned after being pushed. If this parameter is not specified, it will default to false and images will not be scanned unless a scan is manually started with the API_StartImageScan API.
sourceimpl ImageScanningConfiguration
impl ImageScanningConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ImageScanningConfiguration.
Trait Implementations
sourceimpl Clone for ImageScanningConfiguration
impl Clone for ImageScanningConfiguration
sourcefn clone(&self) -> ImageScanningConfiguration
fn clone(&self) -> ImageScanningConfiguration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ImageScanningConfiguration
impl Debug for ImageScanningConfiguration
sourceimpl PartialEq<ImageScanningConfiguration> for ImageScanningConfiguration
impl PartialEq<ImageScanningConfiguration> for ImageScanningConfiguration
sourcefn eq(&self, other: &ImageScanningConfiguration) -> bool
fn eq(&self, other: &ImageScanningConfiguration) -> bool
impl StructuralPartialEq for ImageScanningConfiguration
Auto Trait Implementations
impl RefUnwindSafe for ImageScanningConfiguration
impl Send for ImageScanningConfiguration
impl Sync for ImageScanningConfiguration
impl Unpin for ImageScanningConfiguration
impl UnwindSafe for ImageScanningConfiguration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more