class Fog::Parsers::AWS::RDS::EventSubscriptionParser

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/rds/event_subscription_parser.rb, line 22
def end_element(name)
  case name
  when 'EventCategory'
    @event_subscription['EventCategories'] << value
    @in_event_categories_list = false
  when 'SubscriptionCreationTime'
    @event_subscription[name] = Time.parse(value)
  when 'Enabled', 'CustomerAwsId', 'SourceType', 'Status', 'CustSubscriptionId', 'SnsTopicArn'
    @event_subscription[name] = value
  end
end
fresh_event_subscription() click to toggle source
# File lib/fog/aws/parsers/rds/event_subscription_parser.rb, line 10
def fresh_event_subscription
  {'EventCategories'=> []}
end
reset() click to toggle source
# File lib/fog/aws/parsers/rds/event_subscription_parser.rb, line 6
def reset
  @event_subscription = fresh_event_subscription
end
start_element(name, attrs = []) click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/rds/event_subscription_parser.rb, line 14
def start_element(name, attrs = [])
  super
  case name
  when 'EventCategoriesList'
    @in_event_categories_list = true
  end
end