Goal: understand options for processing a JMS feed using AWS serverless principles when the JMS feed originates outside of AWS.
All of the JMS subscribe examples I've seen on AWS assume the JMS producers are writing to SQS or AmazonMQ. The JMS subscribers can simply use the AWS SDK to manage the subscription, especially when using a Lambda function with finite compute time to batch process messages off an unbounded stream. I haven't seen a reference architecture for using AWS serverless to subscribe to a JMS feed that originates outside of AWS.
Is Lambda even an option here? Is Kinesis analytics (a.k.a Apache Flink) the better option? A Java JMS consumer running under Docker on EKS? Apache Camel running on EKS?
I would suspect the correct serverless answer here is for the initial AWS side subscribers to subscribe to the non-AWS JMS source, and simply replicate the messages onto SQS, AmazonMQ or Kinesis, where the normal AWS serveless architecture patterns for message processing can take over.