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

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

Overview

An object with identifying information for an image in an Amazon ECR repository.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#image_digestString

The sha256 digest of the image manifest.

Returns:

  • (String)


1842
1843
1844
1845
1846
1847
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 1842

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

#image_tagString

The tag used for the image.

Returns:

  • (String)


1842
1843
1844
1845
1846
1847
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 1842

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