aws

http://status.aws.amazon.com/ https://www.expeditedssl.com/aws-in-plain-english
2021-05-20T19:17:28.002700Z

is anyone here using Neptune? I want to connect to Neptune using Clojure, but I’m struggling to get the authentication correct. Here’s what I’ve tried: (let [endpoint "" builder (-> (Cluster/build) (.addContactPoint endpoint) (.port 8182) (.enableSsl true) (.keyCertChainFile "resources/SFSRootCAG2.pem")) cluster (.create builder) client (.connect cluster) conn (org.apache.tinkerpop.gremlin.driver.remote.DriverRemoteConnection/using client) g (traversal conn)] (traverse g V (count) (iterate!)) ) I need it to use IAM authentication and that’s the big hurdle. I should mention that I’m using Ogre

1