class ZAWS::ELB

Public Class Methods

new(shellout,aws,undofile=nil) click to toggle source
# File lib/zaws/services/elb.rb, line 8
def initialize(shellout,aws,undofile=nil)
  @shellout=shellout
  @aws=aws
        @undofile=undofile
end

Public Instance Methods

load_balancer() click to toggle source
# File lib/zaws/services/elb.rb, line 14
def load_balancer 
  @_load_balancer ||= (ZAWS::Services::ELB::LoadBalancer.new(@shellout,@aws,@undofile))
  return @_load_balancer
end