Merge 21ed5eb278 into 48c5f17ad5
This commit is contained in:
commit
49481b426e
1 changed files with 6 additions and 1 deletions
|
|
@ -19,6 +19,11 @@
|
|||
(defn create-client
|
||||
"Creates a synchronous AmazonSQSClient using the provided account id, secret key,
|
||||
and optional com.amazonaws.ClientConfiguration."
|
||||
([]
|
||||
(create-client (com.amazonaws.ClientConfiguration.)))
|
||||
([client-config]
|
||||
(AmazonSQSClient.
|
||||
(.withUserAgent client-config "Bandalore - SQS for Clojure")))
|
||||
([id secret-key]
|
||||
(create-client id secret-key (com.amazonaws.ClientConfiguration.)))
|
||||
([id secret-key client-config]
|
||||
|
|
@ -200,4 +205,4 @@
|
|||
;; void removePermission(RemovePermissionRequest removePermissionRequest)
|
||||
; The RemovePermission action revokes any permissions in the queue policy that matches the specified Label parameter.
|
||||
;; void addPermission(AddPermissionRequest addPermissionRequest)
|
||||
;;The AddPermission action adds a permission to a queue for a specific principal.
|
||||
;;The AddPermission action adds a permission to a queue for a specific principal.
|
||||
|
|
|
|||
Loading…
Reference in a new issue