I would like develop a consumer library which would read kinesis stream names from spring properties file and create/activate associated consumers.
In all the examples I have seen (like https://github.com/spring-cloud/spring-cloud-stream-samples/blob/master/kinesis-samples/kinesis-produce-consume/src/main/java/demo/stream/OrderStreamConfiguration.java), consumers are annotation-based and they should be manually defined.
I want to know which class from spring-integration/spring-aws-kinesis library I could use to generically create consumers.
Thank you