module AWS::CloudFormation::StackOptions
def apply_notification_arns options
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