Sandbox for Timestream.
Create the infrastructure:
terraform init
terraform apply -auto-approve
Install dependencies:
yarn install
Run the script to send data to Timestream:
yarn run app
After writing data, connect to the console and run a query:
SELECT * FROM "timestream-sandbox"."orders" WHERE time between ago(15m) and now() ORDER BY time DESC LIMIT 10
terraform destroy -auto-approve