Values.ImageDetailSourceAn object that describes an image that's returned by a DescribeImages operation.
type nonrec t = {registryId : RegistryId.t option;The Amazon Web Services account ID that's associated with the public registry where this image belongs.
*)repositoryName : RepositoryName.t option;The name of the repository where this image belongs.
*)imageDigest : ImageDigest.t option;The sha256 digest of the image manifest.
*)imageTags : ImageTagList.t option;The list of tags that's associated with this image.
*)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, that the current image 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
* [> `List of [> `String of ImageTag.t ] list
| `Long of ImageSizeInBytes.t
| `String of RegistryId.t
| `Timestamp of PushTimestamp.t ])
list ]