class Fog::Parsers::AWS::RDS::DeleteEventSubscription

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/rds/delete_event_subscription.rb, line 17
def end_element(name)
  case name
  when 'RequestId'
    @response['ResponseMetadata'][name] = value
  else
    super
  end
end
reset() click to toggle source
# File lib/fog/aws/parsers/rds/delete_event_subscription.rb, line 8
def reset
  @response = { 'ResponseMetadata' => {} }
  super
end
start_element(name, attrs=[]) click to toggle source
# File lib/fog/aws/parsers/rds/delete_event_subscription.rb, line 13
def start_element(name, attrs=[])
  super
end