Class: Aws::ECRPublic::Types::ImageIdentifier

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb

Overview

An object with identifying information for an Amazon ECR image.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#image_digestString

The sha256 digest of the image manifest.

Returns:

  • (String)


863
864
865
866
867
868
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 863

class ImageIdentifier < Struct.new(
  :image_digest,
  :image_tag)
  SENSITIVE = []
  include Aws::Structure
end

#image_tagString

The tag that's used for the image.

Returns:

  • (String)


863
864
865
866
867
868
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 863

class ImageIdentifier < Struct.new(
  :image_digest,
  :image_tag)
  SENSITIVE = []
  include Aws::Structure
end