aws

http://status.aws.amazon.com/ https://www.expeditedssl.com/aws-in-plain-english
kirill.salykin 2020-01-02T10:25:36.034100Z

I am trying to use aws-api as the sts client, but it doesnt work, please advice what is wrong

(require '[cognitect.aws.client.api :as aws])
(def sts (aws/client {:api :sts}))
Cannot find resource cognitect/aws/sts/service.edn.

jaihindhreddy 2020-01-02T12:25:39.034600Z

Did you add the artefact for STS to your deps.edn?

com.cognitect.aws/sts
 {:mvn/version "773.2.578.0", :aws/serviceFullName "AWS Security Token Service"}

jaihindhreddy 2020-01-02T12:26:03.034800Z

You need to add one dependency per AWS service. You can find a list of all the latest ones here: https://github.com/cognitect-labs/aws-api/blob/master/latest-releases.edn

kirill.salykin 2020-01-02T12:26:27.035100Z

oh, of course, makes sense thanks!

kirill.salykin 2020-01-02T12:26:36.035300Z

(and of course I didnt)