Struct rusoto_ecr::BatchDeleteImageRequest [] [src]

pub struct BatchDeleteImageRequest {
    pub image_ids: Vec<ImageIdentifier>,
    pub registry_id: Option<String>,
    pub repository_name: String,
}

Deletes specified images within a specified repository. Images are specified with either the imageTag or imageDigest.

Fields

A list of image ID references that correspond to images to delete. The format of the imageIds reference is imageTag=tag or imageDigest=digest.

The AWS 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

impl Default for BatchDeleteImageRequest
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for BatchDeleteImageRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for BatchDeleteImageRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations