This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-01-02
Channels
- # announcements (1)
- # aws (5)
- # babashka (13)
- # beginners (202)
- # bristol-clojurians (3)
- # cider (16)
- # clojure (283)
- # clojure-dev (8)
- # clojure-finland (30)
- # clojure-italy (4)
- # clojure-nl (6)
- # clojure-spec (17)
- # clojure-survey (161)
- # clojure-sweden (7)
- # clojure-uk (62)
- # clojurescript (4)
- # core-async (31)
- # cursive (3)
- # datomic (7)
- # defnpodcast (1)
- # fulcro (8)
- # jobs (2)
- # lumo (2)
- # malli (2)
- # off-topic (24)
- # other-languages (1)
- # overtone (1)
- # re-frame (6)
- # remote-jobs (3)
- # shadow-cljs (6)
- # spacemacs (17)
- # tools-deps (20)
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.
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"}
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
oh, of course, makes sense thanks!
(and of course I didnt)