We have a use case for Lambda and found https://github.com/stediinc/lambda. Not sure if the devs are in this channel but this lib is excellent! Thank you 🙂
i’m trying to use cognitect’s aws-api library. i think deps.cdn
worked okay but i can’t require s3
. tried these:
(require '[cognitect.aws.s3 :as s3])
(require '[com.cognitect.aws.s3 :as s3])
(require '[cognitect.aws/s3 :as s3])
(require '[com.cognitect.aws/s3 :as s3])
neither worked. i’m a noob so apologies if something is stupid or obviously wrong. any comments/pointers will be helpful.there should be a usage example there
for s3 specifically, but all the services work the same way
(it's one namespace for the whole client, not one require per service)
omg! my first successful aws api call from clojure! thank you so much, @ghadi!