Method: AWS::EC2::Image#ramdisk

Defined in:
lib/aws/ec2/image.rb

#ramdiskImage

Returns The RAM disk associated with the image, if any. Only applicable for machine images.

Returns:

  • (Image)

    The RAM disk associated with the image, if any. Only applicable for machine images.



220
221
222
223
224
# File 'lib/aws/ec2/image.rb', line 220

def ramdisk
  if id = ramdisk_id
    Image.new(id, :config => config)
  end
end