Class: Aws::ECR::Types::BatchDeleteImageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::BatchDeleteImageRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecr/types.rb
Overview
Deletes specified images within a specified repository. Images are specified with either the ‘imageTag` or `imageDigest`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_ids ⇒ Array<Types::ImageIdentifier>
A list of image ID references that correspond to images to delete.
-
#registry_id ⇒ String
The Amazon Web Services account ID associated with the registry that contains the image to delete.
-
#repository_name ⇒ String
The repository that contains the image to delete.
Instance Attribute Details
#image_ids ⇒ Array<Types::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`.
177 178 179 180 181 182 183 |
# File 'lib/aws-sdk-ecr/types.rb', line 177 class BatchDeleteImageRequest < Struct.new( :registry_id, :repository_name, :image_ids) SENSITIVE = [] include Aws::Structure end |
#registry_id ⇒ 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.
177 178 179 180 181 182 183 |
# File 'lib/aws-sdk-ecr/types.rb', line 177 class BatchDeleteImageRequest < Struct.new( :registry_id, :repository_name, :image_ids) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The repository that contains the image to delete.
177 178 179 180 181 182 183 |
# File 'lib/aws-sdk-ecr/types.rb', line 177 class BatchDeleteImageRequest < Struct.new( :registry_id, :repository_name, :image_ids) SENSITIVE = [] include Aws::Structure end |