amazonica
amazonica copied to clipboard
A comprehensive Clojure client for the entire Amazon AWS api.
I see that amazonica now pulls in the XRay libs. I've not had a chance to dig into the code, but I'm wondering if the reflective builder could be enhanced...
I'm calling: (amazonica.aws.s3/put-object bucket-name key-name (io/input-stream a-file) {:some :metadata} ) ``` com.amazonaws.AmazonClientException: Unable to unmarshall error response (Premature end of file.). Response Code: 400, Response Text: Bad Request at com.amazonaws.http.AmazonHttpClient.handleErrorResponse(AmazonHttpClient.java:792)...
I am using https://github.com/localstack/localstack for local development, in particularly the local cloudformation. The localstack's cloudformation requires a region which I am setting. boto and ruby SDK clients both connect appropriately...
After doing my creds (defcredential {:access-key "" :secret-key "" :endpoint "us-east-1"}) => {:access-key "A...", :secret-key "...", :endpoint "us-east-1"} I get back the cred map. Then I try to use the...
``` [#'amazonica.aws.mturk/list-hi-ts-for-qualification-type #'amazonica.aws.mturk/list-hi-ts] ``` Should be "-hits" (from HITs), not "hi-ts".
I see in the Java SDK you'd get an object's storage class using the following, how would I do it using amazonica? http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/services/s3/model/StorageClass.html
Hello, I have an application using SQS, and i'd like to consume/process it from different threads ... but after the msgs are in flight, the other threads cant fetch new...
Does Amazonica support utilizing `role_arn's` from profiles within `~/.aws/config`? In my `~/.aws/config` I have a `role_arn` in a profile declaration that lets me access the api of one account using...
I'm assuming this is unintentional and possibly means pagination doesn't work for those fns right now. I've found: - `#'amazonica.aws.simplesystemsmanagement/list-documents` (contains `next-token`) - `#'amazonica.aws.identitymanagement/list-policies` (contains `marker`)
Is there a way to use amazonica with [localstack](https://github.com/localstack/localstack), i.e. with localhost endpoints? Would be massively awesome for running tests locally.