public static interface ImageDetail.Builder extends CopyableBuilder<ImageDetail.Builder,ImageDetail>
Modifier and Type | Method and Description |
---|---|
ImageDetail.Builder |
imageDigest(String imageDigest)
The
sha256 digest of the image manifest. |
ImageDetail.Builder |
imagePushedAt(Instant imagePushedAt)
The date and time, expressed in standard JavaScript date format, at which the current image was pushed to the
repository.
|
ImageDetail.Builder |
imageSizeInBytes(Long imageSizeInBytes)
The size, in bytes, of the image in the repository.
|
ImageDetail.Builder |
imageTags(Collection<String> imageTags)
The list of tags associated with this image.
|
ImageDetail.Builder |
imageTags(String... imageTags)
The list of tags associated with this image.
|
ImageDetail.Builder |
registryId(String registryId)
The AWS account ID associated with the registry to which this image belongs.
|
ImageDetail.Builder |
repositoryName(String repositoryName)
The name of the repository to which this image belongs.
|
copy
applyMutation, build
ImageDetail.Builder registryId(String registryId)
The AWS account ID associated with the registry to which this image belongs.
registryId
- The AWS account ID associated with the registry to which this image belongs.ImageDetail.Builder repositoryName(String repositoryName)
The name of the repository to which this image belongs.
repositoryName
- The name of the repository to which this image belongs.ImageDetail.Builder imageDigest(String imageDigest)
The sha256
digest of the image manifest.
imageDigest
- The sha256
digest of the image manifest.ImageDetail.Builder imageTags(Collection<String> imageTags)
The list of tags associated with this image.
imageTags
- The list of tags associated with this image.ImageDetail.Builder imageTags(String... imageTags)
The list of tags associated with this image.
imageTags
- The list of tags associated with this image.ImageDetail.Builder imageSizeInBytes(Long imageSizeInBytes)
The size, in bytes, of the image in the repository.
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.
imageSizeInBytes
- The size, in bytes, of the image in the repository.
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.
ImageDetail.Builder imagePushedAt(Instant imagePushedAt)
The date and time, expressed in standard JavaScript date format, at which the current image was pushed to the repository.
imagePushedAt
- The date and time, expressed in standard JavaScript date format, at which the current image was pushed
to the repository.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.