Class: Aws::ECRPublic::Types::ReferencedImageDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECRPublic::Types::ReferencedImageDetail
- Defined in:
- gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb
Overview
An object that describes the image tag details that are returned by a DescribeImageTags action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#artifact_media_type ⇒ String
The artifact media type of the image.
-
#image_digest ⇒ String
The
sha256
digest of the image manifest. -
#image_manifest_media_type ⇒ String
The media type of the image manifest.
-
#image_pushed_at ⇒ Time
The date and time, expressed in standard JavaScript date format, which the current image tag was pushed to the repository at.
-
#image_size_in_bytes ⇒ Integer
The size, in bytes, of the image in the repository.
Instance Attribute Details
#artifact_media_type ⇒ String
The artifact media type of the image.
1339 1340 1341 1342 1343 1344 1345 1346 1347 |
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 1339 class ReferencedImageDetail < Struct.new( :image_digest, :image_size_in_bytes, :image_pushed_at, :image_manifest_media_type, :artifact_media_type) SENSITIVE = [] include Aws::Structure end |
#image_digest ⇒ String
The sha256
digest of the image manifest.
1339 1340 1341 1342 1343 1344 1345 1346 1347 |
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 1339 class ReferencedImageDetail < Struct.new( :image_digest, :image_size_in_bytes, :image_pushed_at, :image_manifest_media_type, :artifact_media_type) SENSITIVE = [] include Aws::Structure end |
#image_manifest_media_type ⇒ String
The media type of the image manifest.
1339 1340 1341 1342 1343 1344 1345 1346 1347 |
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 1339 class ReferencedImageDetail < Struct.new( :image_digest, :image_size_in_bytes, :image_pushed_at, :image_manifest_media_type, :artifact_media_type) SENSITIVE = [] include Aws::Structure end |
#image_pushed_at ⇒ Time
The date and time, expressed in standard JavaScript date format, which the current image tag was pushed to the repository at.
1339 1340 1341 1342 1343 1344 1345 1346 1347 |
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 1339 class ReferencedImageDetail < Struct.new( :image_digest, :image_size_in_bytes, :image_pushed_at, :image_manifest_media_type, :artifact_media_type) SENSITIVE = [] include Aws::Structure end |
#image_size_in_bytes ⇒ Integer
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.
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.
1339 1340 1341 1342 1343 1344 1345 1346 1347 |
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 1339 class ReferencedImageDetail < Struct.new( :image_digest, :image_size_in_bytes, :image_pushed_at, :image_manifest_media_type, :artifact_media_type) SENSITIVE = [] include Aws::Structure end |