Class: Aws::ECR::Types::ImageIdentifier

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecr/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.

Instance Attribute Summary collapse

Instance Attribute Details

#image_digestString

The ‘sha256` digest of the image manifest.

Returns:

  • (String)


843
844
845
846
847
# File 'lib/aws-sdk-ecr/types.rb', line 843

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

#image_tagString

The tag used for the image.

Returns:

  • (String)


843
844
845
846
847
# File 'lib/aws-sdk-ecr/types.rb', line 843

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