Struct aws_sdk_ecrpublic::types::builders::ImageDetailBuilder
source · #[non_exhaustive]pub struct ImageDetailBuilder { /* private fields */ }Expand description
A builder for ImageDetail.
Implementations§
source§impl ImageDetailBuilder
impl ImageDetailBuilder
sourcepub fn registry_id(self, input: impl Into<String>) -> Self
pub fn registry_id(self, input: impl Into<String>) -> Self
The Amazon Web Services account ID that's associated with the public registry where this image belongs.
sourcepub fn set_registry_id(self, input: Option<String>) -> Self
pub fn set_registry_id(self, input: Option<String>) -> Self
The Amazon Web Services account ID that's associated with the public registry where this image belongs.
sourcepub fn get_registry_id(&self) -> &Option<String>
pub fn get_registry_id(&self) -> &Option<String>
The Amazon Web Services account ID that's associated with the public registry where this image belongs.
sourcepub fn repository_name(self, input: impl Into<String>) -> Self
pub fn repository_name(self, input: impl Into<String>) -> Self
The name of the repository where this image belongs.
sourcepub fn set_repository_name(self, input: Option<String>) -> Self
pub fn set_repository_name(self, input: Option<String>) -> Self
The name of the repository where this image belongs.
sourcepub fn get_repository_name(&self) -> &Option<String>
pub fn get_repository_name(&self) -> &Option<String>
The name of the repository where this image belongs.
sourcepub fn image_digest(self, input: impl Into<String>) -> Self
pub fn image_digest(self, input: impl Into<String>) -> Self
The sha256 digest of the image manifest.
sourcepub fn set_image_digest(self, input: Option<String>) -> Self
pub fn set_image_digest(self, input: Option<String>) -> Self
The sha256 digest of the image manifest.
sourcepub fn get_image_digest(&self) -> &Option<String>
pub fn get_image_digest(&self) -> &Option<String>
The sha256 digest of the image manifest.
Appends an item to image_tags.
To override the contents of this collection use set_image_tags.
The list of tags that's associated with this image.
The list of tags that's associated with this image.
The list of tags that's associated with this image.
sourcepub fn image_size_in_bytes(self, input: i64) -> Self
pub fn image_size_in_bytes(self, input: i64) -> Self
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.
sourcepub fn set_image_size_in_bytes(self, input: Option<i64>) -> Self
pub fn set_image_size_in_bytes(self, input: Option<i64>) -> Self
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.
sourcepub fn get_image_size_in_bytes(&self) -> &Option<i64>
pub fn get_image_size_in_bytes(&self) -> &Option<i64>
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.
sourcepub fn image_pushed_at(self, input: DateTime) -> Self
pub fn image_pushed_at(self, input: DateTime) -> Self
The date and time, expressed in standard JavaScript date format, that the current image was pushed to the repository at.
sourcepub fn set_image_pushed_at(self, input: Option<DateTime>) -> Self
pub fn set_image_pushed_at(self, input: Option<DateTime>) -> Self
The date and time, expressed in standard JavaScript date format, that the current image was pushed to the repository at.
sourcepub fn get_image_pushed_at(&self) -> &Option<DateTime>
pub fn get_image_pushed_at(&self) -> &Option<DateTime>
The date and time, expressed in standard JavaScript date format, that the current image was pushed to the repository at.
sourcepub fn image_manifest_media_type(self, input: impl Into<String>) -> Self
pub fn image_manifest_media_type(self, input: impl Into<String>) -> Self
The media type of the image manifest.
sourcepub fn set_image_manifest_media_type(self, input: Option<String>) -> Self
pub fn set_image_manifest_media_type(self, input: Option<String>) -> Self
The media type of the image manifest.
sourcepub fn get_image_manifest_media_type(&self) -> &Option<String>
pub fn get_image_manifest_media_type(&self) -> &Option<String>
The media type of the image manifest.
sourcepub fn artifact_media_type(self, input: impl Into<String>) -> Self
pub fn artifact_media_type(self, input: impl Into<String>) -> Self
The artifact media type of the image.
sourcepub fn set_artifact_media_type(self, input: Option<String>) -> Self
pub fn set_artifact_media_type(self, input: Option<String>) -> Self
The artifact media type of the image.
sourcepub fn get_artifact_media_type(&self) -> &Option<String>
pub fn get_artifact_media_type(&self) -> &Option<String>
The artifact media type of the image.
sourcepub fn build(self) -> ImageDetail
pub fn build(self) -> ImageDetail
Consumes the builder and constructs a ImageDetail.
Trait Implementations§
source§impl Clone for ImageDetailBuilder
impl Clone for ImageDetailBuilder
source§fn clone(&self) -> ImageDetailBuilder
fn clone(&self) -> ImageDetailBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ImageDetailBuilder
impl Debug for ImageDetailBuilder
source§impl Default for ImageDetailBuilder
impl Default for ImageDetailBuilder
source§fn default() -> ImageDetailBuilder
fn default() -> ImageDetailBuilder
source§impl PartialEq<ImageDetailBuilder> for ImageDetailBuilder
impl PartialEq<ImageDetailBuilder> for ImageDetailBuilder
source§fn eq(&self, other: &ImageDetailBuilder) -> bool
fn eq(&self, other: &ImageDetailBuilder) -> bool
self and other values to be equal, and is used
by ==.