I have time series data stored in AWS Timestream.
How can I integrate and query data from AWS Timestream to display time series charts in Bubble app?
I have time series data stored in AWS Timestream.
How can I integrate and query data from AWS Timestream to display time series charts in Bubble app?
it does not appear Timestream has a REST API.
So to expose your data you’ll need to have your own API.
If I were you I’d look into Amazon Lambda functions so you can possibly get the data you want by calling your Lambda Function.
The Lambda function should receive a GET request from a bubble website visitor. get the timestream data, format it as JSON and return that data.
If there is enough demand why not