Struct aws_sdk_ecr::input::BatchDeleteImageInput [−][src]
#[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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<BatchDeleteImage, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<BatchDeleteImage, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<BatchDeleteImage>
Creates a new builder-style object to manufacture BatchDeleteImageInput
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.
The repository that contains the image to delete.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for BatchDeleteImageInput
impl Send for BatchDeleteImageInput
impl Sync for BatchDeleteImageInput
impl Unpin for BatchDeleteImageInput
impl UnwindSafe for BatchDeleteImageInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
