aws

http://status.aws.amazon.com/ https://www.expeditedssl.com/aws-in-plain-english
kenny 2020-05-14T15:10:45.189700Z

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 🙂

đź‘Ť 2
localghost 2020-05-14T16:59:14.192200Z

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.

ghadi 2020-05-14T16:59:48.192700Z

https://github.com/cognitect-labs/aws-api#deps

ghadi 2020-05-14T17:00:01.193200Z

there should be a usage example there

ghadi 2020-05-14T17:00:43.193700Z

for s3 specifically, but all the services work the same way

ghadi 2020-05-14T17:01:08.194300Z

(it's one namespace for the whole client, not one require per service)

localghost 2020-05-14T17:07:39.194900Z

omg! my first successful aws api call from clojure! thank you so much, @ghadi!

🍾 2