Public instance methods
available?
()
[show source]
# File lib/rudy/aws/ec2/image.rb, line 21 21: def available?; @state && @state == "available"; end
public?
()
[show source]
# File lib/rudy/aws/ec2/image.rb, line 22 22: def public?; @visibility && @visibility == 'public'; end
to_s
(with_title=false)
[show source]
# File lib/rudy/aws/ec2/image.rb, line 17 17: def to_s(with_title=false) 18: [@awsid.bright, @arch, @visibility, @location].join '; ' 19: end