AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
This is the response object from the BatchDeleteImage operation.
Namespace: Amazon.ECR.Model
Assembly: AWSSDK.ECR.dll
Version: 3.x.y.z
public class BatchDeleteImageResponse : AmazonWebServiceResponse
The BatchDeleteImageResponse type exposes the following members
Name | Description | |
---|---|---|
![]() |
BatchDeleteImageResponse() |
Name | Type | Description | |
---|---|---|---|
![]() |
ContentLength | System.Int64 | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
![]() |
Failures | System.Collections.Generic.List<Amazon.ECR.Model.ImageFailure> |
Gets and sets the property Failures. Any failures associated with the call. |
![]() |
HttpStatusCode | System.Net.HttpStatusCode | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
![]() |
ImageIds | System.Collections.Generic.List<Amazon.ECR.Model.ImageIdentifier> |
Gets and sets the property ImageIds. The image IDs of the deleted images. |
![]() |
ResponseMetadata | Amazon.Runtime.ResponseMetadata | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
This example deletes images with the tags precise and trusty in a repository called ubuntu in the default registry for an account.
var client = new AmazonECRClient(); var response = client.BatchDeleteImage(new BatchDeleteImageRequest { ImageIds = new List<ImageIdentifier> { new ImageIdentifier { ImageTag = "precise" } }, RepositoryName = "ubuntu" }); List<ImageFailure> failures = response.Failures; List<ImageIdentifier> imageIds = response.ImageIds;
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5