aws

http://status.aws.amazon.com/ https://www.expeditedssl.com/aws-in-plain-english
fmnoise 2021-02-16T20:41:18.018900Z

Hi! Do you know any good library supporting https://developer.amazon.com/docs/incentives-api/incentives-api.html ? Or maybe any plans to add this api into https://github.com/cognitect-labs/aws-api ?

viesti 2021-02-17T18:00:37.019800Z

check out https://github.com/sharetribe/aws-sig4

fmnoise 2021-02-17T18:01:22.020200Z

thanks @viesti

viesti 2021-02-17T18:02:45.020400Z

I've used that to make http requests to aws elasticsearch service, with the sig4 signature

lukasz 2021-02-17T18:04:32.020600Z

Ah yes - same, until we just moved ES to VPC - whenever they added that capability

viesti 2021-02-18T08:48:40.020800Z

yeah same thing with ES for me too, just that I left the project before the VPC transition, so didn't get to discard the auth, though thinking that might still be worth to keep authentication with sig4 even with a VPC endpoint

lukasz 2021-02-16T20:45:31.019200Z

Technically - that's not an AWS (as in Amazon Web Services) API - so I wouldn't count on it

lukasz 2021-02-16T20:46:57.019400Z

But, since it's requiring some of the AWS mechanisms such as v4 signature, you could use aws-api to pull the functionality to create sigs and call the API directly yourself with something like clj-http

fmnoise 2021-02-16T20:57:26.019600Z

thanks!