Fork me on GitHub
#aws
<
2022-03-31
>
lukasz18:03:17

I'm not sure if it's a valid issue - or just inconsistency in AWS APIs? When using Cognitect's aws-api lib - S3 operations use title-case for request args (e.g :Bucket or :Key) but ECS uses camel case (`:forceNewDeployment` or :service) - is that expected? (I checked output of the doc function as well)

ghadi18:03:29

inconsistency

Alex Miller (Clojure team)18:03:47

all that stuff is generated from apis provided by AWS

ghadi18:03:59

there are all sorts of annoying variations, that's why the aws-api library is driven by descriptors provided by AWS

lukasz18:03:07

got it :thumbsup: