class Fog::Parsers::AWS::RDS::CreateEventSubscription
Public Instance Methods
end_element(name)
click to toggle source
Calls superclass method
Fog::Parsers::AWS::RDS::EventSubscriptionParser#end_element
# File lib/fog/aws/parsers/rds/create_event_subscription.rb, line 18 def end_element(name) case name when 'EventSubscription' @response['CreateEventSubscriptionResult']['EventSubscription'] = @event_subscription when 'RequestId' @response['ResponseMetadata'][name] = value else super end end
reset()
click to toggle source
Calls superclass method
Fog::Parsers::AWS::RDS::EventSubscriptionParser#reset
# File lib/fog/aws/parsers/rds/create_event_subscription.rb, line 8 def reset @response = { 'CreateEventSubscriptionResult' => {}, 'ResponseMetadata' => {} } @event_subscription = {} super end
start_element(name, attrs = [])
click to toggle source
Calls superclass method
Fog::Parsers::AWS::RDS::EventSubscriptionParser#start_element
# File lib/fog/aws/parsers/rds/create_event_subscription.rb, line 14 def start_element(name, attrs = []) super end