-1

I want to get old CTR data from Amazon Kinesis, but I am not sure how to do it. (Not the real-time data, a data that is old like 1 day or a few hours, As Amazon Kinesis stores data for around 360 days.) thanks in Advance.

Amjad
  • 93
  • 2
  • 9

1 Answers1

1

You can do this with AWS Lambda. I mention it since it's included as a tag in the question.

When you configure Kinesis as an event source for Lambda there are three options 'Latest', 'Trim Horizon' or 'At timestamp'. It sounds like you want to use 'At timestamp'.

Mark Sailes
  • 727
  • 4
  • 16