# File lib/fog/aws/parsers/cloud_watch/describe_alarms.rb, line 36 def start_element(name, attrs = []) super case name when 'Dimensions' @in_dimensions = true when 'AlarmActions' @in_alarm_actions = true when 'OKActions' @in_ok_actions = true when 'InsufficientDataActions' @in_insufficient_data_actions = true when 'member' reset_dimension if @in_dimensions reset_alarm_actions if @in_alarm_actions reset_ok_actions if @in_ok_actions reset_insufficient_data_actions if @in_insufficient_data_actions end end