#[non_exhaustive]pub struct BatchDeleteImageInput {
pub registry_id: Option<String>,
pub repository_name: Option<String>,
pub image_ids: Option<Vec<ImageIdentifier>>,
}Expand description
Deletes specified images within a specified repository. Images are specified with either the imageTag or imageDigest.
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 image to delete. If you do not specify a registry, the default registry is assumed.
repository_name: Option<String>The repository that contains the image to delete.
image_ids: Option<Vec<ImageIdentifier>>A list of image ID references that correspond to images to delete. The format of the imageIds reference is imageTag=tag or imageDigest=digest.
Implementations§
source§impl BatchDeleteImageInput
impl BatchDeleteImageInput
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 image to delete. 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 repository that contains the image to delete.
sourcepub fn image_ids(&self) -> &[ImageIdentifier]
pub fn image_ids(&self) -> &[ImageIdentifier]
A list of image ID references that correspond to images to delete. The format of the imageIds reference is imageTag=tag or imageDigest=digest.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .image_ids.is_none().
source§impl BatchDeleteImageInput
impl BatchDeleteImageInput
sourcepub fn builder() -> BatchDeleteImageInputBuilder
pub fn builder() -> BatchDeleteImageInputBuilder
Creates a new builder-style object to manufacture BatchDeleteImageInput.
Trait Implementations§
source§impl Clone for BatchDeleteImageInput
impl Clone for BatchDeleteImageInput
source§fn clone(&self) -> BatchDeleteImageInput
fn clone(&self) -> BatchDeleteImageInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for BatchDeleteImageInput
impl Debug for BatchDeleteImageInput
source§impl PartialEq for BatchDeleteImageInput
impl PartialEq for BatchDeleteImageInput
impl StructuralPartialEq for BatchDeleteImageInput
Auto Trait Implementations§
impl Freeze for BatchDeleteImageInput
impl RefUnwindSafe for BatchDeleteImageInput
impl Send for BatchDeleteImageInput
impl Sync for BatchDeleteImageInput
impl Unpin for BatchDeleteImageInput
impl UnwindSafe for BatchDeleteImageInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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