This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-07-02
Channels
- # aws (2)
- # babashka (24)
- # beginners (104)
- # calva (1)
- # cider (6)
- # clojure (7)
- # clojure-conj (4)
- # clojure-europe (21)
- # clojure-nl (2)
- # clojure-norway (69)
- # clojure-sweden (1)
- # clojure-uk (4)
- # clojurescript (19)
- # clr (4)
- # core-typed (1)
- # cursive (52)
- # datahike (1)
- # datalevin (7)
- # datomic (8)
- # docker (8)
- # humbleui (22)
- # hyperfiddle (4)
- # jobs-discuss (3)
- # leiningen (1)
- # off-topic (37)
- # pathom (4)
- # polylith (12)
- # remote-jobs (5)
- # vim (4)
- # yamlscript (3)
Hi It is related to AWS QuickSight I am trying to add user to group.
(defn create-group-membership
[qs-client aws-account-id qs-ns group-name member-name]
(aws/invoke qs-client {:op :CreateGroupMembership
:request {:AwsAccountId aws-account-id
:Namespace qs-ns
:GroupName group-name
:MemberName member-name}}))
But it is failing with the below error
....... The Canonical String for this request should have been\n'PUT\n/accounts/.....
But I am not able to find how to pass the request method.
I have already tried :request-method :put
but no luck
https://docs.aws.amazon.com/quicksight/latest/APIReference/API_CreateGroupMembership.html
https://github.com/cognitect-labs/aws-api