Values.BatchDeleteImageRequestSourceDeletes a list of specified images that are within a repository in a public registry. Images are specified with either an imageTag or imageDigest. You can remove a tag from an image by specifying the image's tag in your request. When you remove the last tag from an image, the image is deleted from your repository. You can completely delete an image (and all of its tags) by specifying the digest of the image in your request.
type nonrec t = {registryId : RegistryIdOrAlias.t option;The Amazon Web Services account ID, or registry alias, that's associated with the registry that contains the image to delete. If you do not specify a registry, the default public registry is assumed.
*)repositoryName : RepositoryName.t;The repository in a public registry that contains the image to delete.
*)imageIds : ImageIdentifierList.t;A list of image ID references that correspond to images to delete. The format of the imageIds reference is imageTag=tag or imageDigest=digest.
*)}val make :
?registryId:??? ->
repositoryName:RepositoryName.t ->
imageIds:ImageIdentifierList.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of (string * [> `String of ImageDigest.t ]) list ]
list
| `String of RegistryIdOrAlias.t ])
list ]