Module Values.BatchDeleteImageRequestSource

Deletes 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.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. repositoryName : RepositoryName.t;
    (*

    The repository in a public registry that contains the image to delete.

    *)
  3. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?registryId:??? -> repositoryName:RepositoryName.t -> imageIds:ImageIdentifierList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ImageDigest.t ]) list ] list | `String of RegistryIdOrAlias.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t