I'm currently brainstorming an idea and trying to figure out whether it's feasible or a better way to handle this approach.
Assume I have a Redshift table and I want to expose this table through a REST API. For example, there are several customer who needs some kind of meta data from this table. They will call a REST service and it will execute on the Redshift to get the data and will response to the client in JSON format.
I'm fairly new in Redshift/AWS area so not sure whether AWS already have something for that? I know S3 supports REST API.
Does it sound feasible? I can definitely write typical RESTful service using Java while reading data from Redshift using JDBC. But wanted to know if there is a better way to handle this in AWS world.