class AWS::EC2::Instance
Public Instance Methods
http_open?()
click to toggle source
# File lib/rodeo_clown/ext/aws/ec2/instance.rb, line 12 def http_open? port_open? 80 end
https_open?()
click to toggle source
# File lib/rodeo_clown/ext/aws/ec2/instance.rb, line 16 def https_open? port_open? 443 end
port_open?(port)
click to toggle source
Calls superclass method
IsPortOpen#port_open?
# File lib/rodeo_clown/ext/aws/ec2/instance.rb, line 4 def port_open?(port) super(dns_name, port) end
ssh_open?()
click to toggle source
# File lib/rodeo_clown/ext/aws/ec2/instance.rb, line 8 def ssh_open? port_open? 22 end