It also allows for the possibility to add other kinds of subscriptions, for example AWS SNS.
My use-case:
I'd like my lambda to process logs from a Kinesis stream, transform it into events that can be sent to Riemann for monitoring purposes. Therefore, after creating and uploading the lambda function, I need it to subscribe onto the stream to receive incoming data and process them.
This PR adds functionality for the lambda to subscribe to a Kinesis stream. The configuration is defined in the field
subscription
as follows:It also allows for the possibility to add other kinds of subscriptions, for example AWS SNS.
My use-case:
I'd like my lambda to process logs from a Kinesis stream, transform it into events that can be sent to Riemann for monitoring purposes. Therefore, after creating and uploading the lambda function, I need it to subscribe onto the stream to receive incoming data and process them.