Struct rusoto_ecr::ImageDetail [] [src]

pub struct ImageDetail {
    pub image_digest: Option<String>,
    pub image_pushed_at: Option<f64>,
    pub image_size_in_bytes: Option<i64>,
    pub image_tags: Option<Vec<String>>,
    pub registry_id: Option<String>,
    pub repository_name: Option<String>,
}

An object that describes an image returned by a DescribeImages operation.

Fields

The sha256 digest of the image manifest.

The date and time, expressed in standard JavaScript date format, at which the current image was pushed to the repository.

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.

The list of tags associated with this image.

The AWS account ID associated with the registry to which this image belongs.

The name of the repository to which this image belongs.

Trait Implementations

impl Default for ImageDetail
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for ImageDetail
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ImageDetail
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for ImageDetail

impl Sync for ImageDetail