James Reeves
James Reeves
Brutha components are effectively stateless. Rather than attaching state to components and treat them like objects, in Brutha components are generally just a way of caching for performance. State is...
Sorry for the delayed response; it's been a busy few weeks for me. Could you explain a little more about what you're trying to do? Brutha pushes all questions of...
I think I get the gist of the problem, now. Let me give this some hammock time :) (It might be a while before I get around to doing something...
I feel that I should point out that the `DefaultAWSCredentialsProviderChain` could easily be represented as a map. We don't need to stoop to using Java objects to represent key-value data.
What I mean is: ``` clojure (defn- aws-cred-map [^AWSCredentials aws-creds] {:access-key (.getAWSAccessKeyId aws-creds) :secret-key (.getAWSSecretKey aws-creds)}) (defn default-aws-creds [] (-> (DefaultAWSCredentialsProviderChain.) .getCredentials aws-cred-map)) ```
This project has been deprecated. Please check the README, @bhurlow.
Please see issue #69 for an explanation of how I think this behaviour should be implemented.
Hm. I've wanted to avoid using Java objects if Clojure data structures will do, but perhaps that would ultimately be more problematic. If someone wants to create a branch where...
I'd consider both. Unfortunately I haven't had a need for S3 recently, so clj-aws-s3 hasn't gotten a whole lot of attention. At some point in the next year I'll likely...
As `:path-style-access` is a boolean, can you add a `?` onto the end?