# File lib/aws/core/response.rb, line 75
      def throttled?
        if !successful? and http_response.body
          error = XmlGrammar.parse(http_response.body)
          error = error.error if error.respond_to?(:error)
          error.respond_to?(:code) and error.code == "Throttling"
        else
          false
        end
      end