# File lib/aws/cloud_formation/stack_options.rb, line 48 def apply_notification_arns options if arns = options.delete(:notify) options[:notification_arns] = Array(arns).collect do |topic| topic.is_a?(SNS::Topic) ? topic.arn : topic end end end