| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.ECRPublic.Types.ReferencedImageDetail
Description
Synopsis
- data ReferencedImageDetail = ReferencedImageDetail' {}
- newReferencedImageDetail :: ReferencedImageDetail
- referencedImageDetail_artifactMediaType :: Lens' ReferencedImageDetail (Maybe Text)
- referencedImageDetail_imageDigest :: Lens' ReferencedImageDetail (Maybe Text)
- referencedImageDetail_imageManifestMediaType :: Lens' ReferencedImageDetail (Maybe Text)
- referencedImageDetail_imagePushedAt :: Lens' ReferencedImageDetail (Maybe UTCTime)
- referencedImageDetail_imageSizeInBytes :: Lens' ReferencedImageDetail (Maybe Integer)
Documentation
data ReferencedImageDetail Source #
An object that describes the image tag details returned by a DescribeImageTags action.
See: newReferencedImageDetail smart constructor.
Constructors
| ReferencedImageDetail' | |
Fields
| |
Instances
newReferencedImageDetail :: ReferencedImageDetail Source #
Create a value of ReferencedImageDetail with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:artifactMediaType:ReferencedImageDetail', referencedImageDetail_artifactMediaType - The artifact media type of the image.
$sel:imageDigest:ReferencedImageDetail', referencedImageDetail_imageDigest - The sha256 digest of the image manifest.
$sel:imageManifestMediaType:ReferencedImageDetail', referencedImageDetail_imageManifestMediaType - The media type of the image manifest.
$sel:imagePushedAt:ReferencedImageDetail', referencedImageDetail_imagePushedAt - The date and time, expressed in standard JavaScript date format, at
which the current image tag was pushed to the repository.
$sel:imageSizeInBytes:ReferencedImageDetail', referencedImageDetail_imageSizeInBytes - The size, in bytes, of the image in the repository.
If the image is a manifest list, this will be 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 may
return a larger image size than the image sizes returned by
DescribeImages.
referencedImageDetail_artifactMediaType :: Lens' ReferencedImageDetail (Maybe Text) Source #
The artifact media type of the image.
referencedImageDetail_imageDigest :: Lens' ReferencedImageDetail (Maybe Text) Source #
The sha256 digest of the image manifest.
referencedImageDetail_imageManifestMediaType :: Lens' ReferencedImageDetail (Maybe Text) Source #
The media type of the image manifest.
referencedImageDetail_imagePushedAt :: Lens' ReferencedImageDetail (Maybe UTCTime) Source #
The date and time, expressed in standard JavaScript date format, at which the current image tag was pushed to the repository.
referencedImageDetail_imageSizeInBytes :: Lens' ReferencedImageDetail (Maybe Integer) Source #
The size, in bytes, of the image in the repository.
If the image is a manifest list, this will be 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 may
return a larger image size than the image sizes returned by
DescribeImages.