Björn Ritzl
Björn Ritzl
I like the [loadkit](https://github.com/leafo/loadkit) module presented my Leaf
Hi! Some parts of the SDK has been used in production but not everything which I why I'm still considering it a beta. SQS uses the "query" protocol: https://github.com/britzl/aws-sdk-lua/blob/master/apis/sqs-2012-11-05.normal.json#L6 Support...
Ok, so there's definitely a difference between S3 and some other services. Take GameLift as an example. The `signatureversion` for GameLift says "v4": https://github.com/britzl/aws-sdk-lua/blob/master/apis/gamelift-2015-10-01.normal.json#L10 While for S3 `signatureversion` it says...
It's probably also a good idea to put the code for each signing implementation into separate Lua modules.
Hi! I'm happy to work with you on this. I've created a branch where I've started working on this: https://github.com/britzl/aws-sdk-lua/tree/query_support Two changes I've made: * API version is now read...
I'll try to find some time to configure and test an AWS service that uses query requests. You're using SNS right? For XML parsing I think xml2lua will do just...
The Lua SDK does not support retries. I would probably implement retries on top of the SDK in a way that works within the environment the code is run in....
The Lua pattern matching system resembles regex quite a lot bit its quite a bit simpler. I've seen some of the regex patterns in the AWS SDK API specs that...
Oh, ok. I believe they are normal regexes. I could have sworn that I had read some API docs mentioning which specific regex flavour it is but now I can't...
Maybe :-) The generator isn't very complex which should mean that the generated code should work for all APIs. But with that said, there might be things in other APIs...