class ZAWS::Route53

Public Class Methods

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

Public Instance Methods

hosted_zone() click to toggle source
# File lib/zaws/services/route53.rb, line 13
def hosted_zone 
  @_hosted_zone ||= (ZAWS::Services::Route53::HostedZone.new(@shellout,@aws))
  return @_hosted_zone
end