class Fog::Parsers::Redshift::AWS::Cluster

Public Instance Methods

end_element(name) click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/redshift/cluster.rb, line 17
def end_element(name)
  super
  case name
  when 'Cluster'
    @response = {name => @cluster}
  end
end
reset() click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/redshift/cluster.rb, line 8
def reset
  super
  @response = {}
end
start_element(name, attrs = []) click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/redshift/cluster.rb, line 13
def start_element(name, attrs = [])
  super
end