Trying to get aws-api to work with https://github.com/p4tin/goaws but running into #:cognitect.anomalies{:category :cognitect.anomalies/unavailable, :message "Connection refused"} . Works fine when I use the aws cli to list topics.
This is how I'm using it...
(def sns (aws/client {:api :sns
:endpoint-override {:protocol :http
:host "localhost"
:port 4100}
:credentials-provider (credentials/basic-credentials-provider
{:access-key-id "gimme"
:secret-access-key "access"})}))
(aws/invoke sns-client {:op :ListTopics})
Has anyone been able to get aws-api to work with goaws or localstack?What's the error that you're getting? We use aws-api with Minio and the configuration looks more or less the same as your SNS client
The only difference is that rather than :host our code has :hostname
in the :endpoint-override config