Struct aws_sdk_ecr::operation::put_image_scanning_configuration::PutImageScanningConfigurationInput
source · #[non_exhaustive]pub struct PutImageScanningConfigurationInput {
pub registry_id: Option<String>,
pub repository_name: Option<String>,
pub image_scanning_configuration: Option<ImageScanningConfiguration>,
}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.registry_id: Option<String>The Amazon Web Services account ID associated with the registry that contains the repository in which to update the image scanning configuration setting. If you do not specify a registry, the default registry is assumed.
repository_name: Option<String>The name of the repository in which to update the image scanning configuration setting.
image_scanning_configuration: Option<ImageScanningConfiguration>The image scanning configuration for the repository. This setting determines whether images are scanned for known vulnerabilities after being pushed to the repository.
Implementations§
source§impl PutImageScanningConfigurationInput
impl PutImageScanningConfigurationInput
sourcepub fn registry_id(&self) -> Option<&str>
pub fn registry_id(&self) -> Option<&str>
The Amazon Web Services account ID associated with the registry that contains the repository in which to update the image scanning configuration setting. If you do not specify a registry, the default registry is assumed.
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The name of the repository in which to update the image scanning configuration setting.
sourcepub fn image_scanning_configuration(
&self
) -> Option<&ImageScanningConfiguration>
pub fn image_scanning_configuration( &self ) -> Option<&ImageScanningConfiguration>
The image scanning configuration for the repository. This setting determines whether images are scanned for known vulnerabilities after being pushed to the repository.
source§impl PutImageScanningConfigurationInput
impl PutImageScanningConfigurationInput
sourcepub fn builder() -> PutImageScanningConfigurationInputBuilder
pub fn builder() -> PutImageScanningConfigurationInputBuilder
Creates a new builder-style object to manufacture PutImageScanningConfigurationInput.
Trait Implementations§
source§impl Clone for PutImageScanningConfigurationInput
impl Clone for PutImageScanningConfigurationInput
source§fn clone(&self) -> PutImageScanningConfigurationInput
fn clone(&self) -> PutImageScanningConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for PutImageScanningConfigurationInput
impl PartialEq for PutImageScanningConfigurationInput
source§fn eq(&self, other: &PutImageScanningConfigurationInput) -> bool
fn eq(&self, other: &PutImageScanningConfigurationInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PutImageScanningConfigurationInput
Auto Trait Implementations§
impl Freeze for PutImageScanningConfigurationInput
impl RefUnwindSafe for PutImageScanningConfigurationInput
impl Send for PutImageScanningConfigurationInput
impl Sync for PutImageScanningConfigurationInput
impl Unpin for PutImageScanningConfigurationInput
impl UnwindSafe for PutImageScanningConfigurationInput
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more