# File lib/aws/sns/message.rb, line 157
      def canonical_string
        text = ''
        SIGNABLE_KEYS.each do |key|
          value = @raw[key]
          next if value.nil? or value.empty?
          text << key << "\n"
          text << value << "\n"
        end
        text
      end