Values.ReferencedImageDetailSourceAn object that describes the image tag details that are returned by a DescribeImageTags action.
type nonrec t = {imageDigest : ImageDigest.t option;The sha256 digest of the image manifest.
*)imageSizeInBytes : ImageSizeInBytes.t option;The size, in bytes, of the image in the repository. If the image is a manifest list, this is the max size of all manifests in the list. Beginning with Docker version 1.9, the Docker client compresses image layers before pushing them to a V2 Docker registry. The output of the docker images command shows the uncompressed image size, so it might return a larger image size than the image sizes that are returned by DescribeImages.
*)imagePushedAt : PushTimestamp.t option;The date and time, expressed in standard JavaScript date format, which the current image tag was pushed to the repository at.
*)imageManifestMediaType : MediaType.t option;The media type of the image manifest.
*)artifactMediaType : MediaType.t option;The artifact media type of the image.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Long of ImageSizeInBytes.t
| `String of ImageDigest.t
| `Timestamp of PushTimestamp.t ])
list ]