Class: Aws::ECR::Types::ImageDetail

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecr/types.rb

Overview

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

Instance Attribute Summary collapse

Instance Attribute Details

#image_digestString

The ‘sha256` digest of the image manifest.

Returns:

  • (String)


790
791
792
793
794
795
796
797
798
# File 'lib/aws-sdk-ecr/types.rb', line 790

class ImageDetail < Struct.new(
  :registry_id,
  :repository_name,
  :image_digest,
  :image_tags,
  :image_size_in_bytes,
  :image_pushed_at)
  include Aws::Structure
end

#image_pushed_atTime

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

Returns:

  • (Time)


790
791
792
793
794
795
796
797
798
# File 'lib/aws-sdk-ecr/types.rb', line 790

class ImageDetail < Struct.new(
  :registry_id,
  :repository_name,
  :image_digest,
  :image_tags,
  :image_size_in_bytes,
  :image_pushed_at)
  include Aws::Structure
end

#image_size_in_bytesInteger

The size, in bytes, of the image in the repository.

<note markdown=“1”> 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.

</note>

Returns:

  • (Integer)


790
791
792
793
794
795
796
797
798
# File 'lib/aws-sdk-ecr/types.rb', line 790

class ImageDetail < Struct.new(
  :registry_id,
  :repository_name,
  :image_digest,
  :image_tags,
  :image_size_in_bytes,
  :image_pushed_at)
  include Aws::Structure
end

#image_tagsArray<String>

The list of tags associated with this image.

Returns:

  • (Array<String>)


790
791
792
793
794
795
796
797
798
# File 'lib/aws-sdk-ecr/types.rb', line 790

class ImageDetail < Struct.new(
  :registry_id,
  :repository_name,
  :image_digest,
  :image_tags,
  :image_size_in_bytes,
  :image_pushed_at)
  include Aws::Structure
end

#registry_idString

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

Returns:

  • (String)


790
791
792
793
794
795
796
797
798
# File 'lib/aws-sdk-ecr/types.rb', line 790

class ImageDetail < Struct.new(
  :registry_id,
  :repository_name,
  :image_digest,
  :image_tags,
  :image_size_in_bytes,
  :image_pushed_at)
  include Aws::Structure
end

#repository_nameString

The name of the repository to which this image belongs.

Returns:

  • (String)


790
791
792
793
794
795
796
797
798
# File 'lib/aws-sdk-ecr/types.rb', line 790

class ImageDetail < Struct.new(
  :registry_id,
  :repository_name,
  :image_digest,
  :image_tags,
  :image_size_in_bytes,
  :image_pushed_at)
  include Aws::Structure
end