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 ==.