Reputation: 3
I want to use Amazon Comprehend to analyze some articles.
But there is no Lua SDK in the API Reference, neither Restful API. What should I do to use Amazon Comprehend in Lua code?
Upvotes: 0
Views: 63
Reputation: 2401
Use the AWS SDK for C++ and Lua's C/C++ API to build bindings you can use from Lua.
Hack together something using io.popen
and the AWS CLI.
Upvotes: 0