class Rudy::AWS::EC2::Snapshot
Public Instance Methods
completed?()
click to toggle source
# File lib/rudy/aws/ec2/snapshot.rb, line 17 def completed? self.status && self.status == 'completed' end
to_s(with_title=false)
click to toggle source
# File lib/rudy/aws/ec2/snapshot.rb, line 13 def to_s(with_title=false) [@awsid.bright, @volid, @created, @status, @progress].join '; ' end