Class: Aws::ECRPublic::Types::ImageIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECRPublic::Types::ImageIdentifier
- Defined in:
- gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb
Overview
Note:
When making an API call, you may pass ImageIdentifier data as a hash:
{
image_digest: "ImageDigest",
image_tag: "ImageTag",
}
An object with identifying information for an Amazon ECR image.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_digest ⇒ String
The
sha256
digest of the image manifest. -
#image_tag ⇒ String
The tag used for the image.
Instance Attribute Details
#image_digest ⇒ String
The sha256
digest of the image manifest.
998 999 1000 1001 1002 1003 |
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 998 class ImageIdentifier < Struct.new( :image_digest, :image_tag) SENSITIVE = [] include Aws::Structure end |
#image_tag ⇒ String
The tag used for the image.
998 999 1000 1001 1002 1003 |
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 998 class ImageIdentifier < Struct.new( :image_digest, :image_tag) SENSITIVE = [] include Aws::Structure end |