This has been resolved.
The issue was that an older version of the amazon-kinesis-client was being
used for the CamelContext:
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>amazon-kinesis-client</artifactId>
<version>1.6.5</version>
</dependency>
This was incompatible with the Camel Kinesis component 2.18.1.
*Solution*:
Upgrade amazon-kinesis-client dependency to:
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>amazon-kinesis-client</artifactId>
<version>1.7.2</version>
</dependency>
Thanks Claus, Tomo for the quick responses.
--
View this message in context:
http://camel.465427.n5.nabble.com/AWS-Kinesis-URI-sequenceNumber-unknown-parameter-tp5795499p5795521.html
Sent from the Camel - Users mailing list archive at Nabble.com.