- Newest
- Most votes
- Most comments
To extract data from Miro (or any other app) and push that data into an AWS S3 bucket, you generally need to leverage APIs provided by the application. In the case of Miro, they do offer a REST API that allows you to access boards, widgets, and other data.
https://developers.miro.com/reference/api-reference
Here's a simplified flow of how you could do this:
Use the Miro API to extract data. Process the data if needed (transform, clean, etc). Upload the processed data to your AWS S3 bucket.
To automate this, you might use AWS Lambda, a service that lets you run your code without provisioning or managing servers. Lambda can be triggered by various events, and it can call the Miro APIs, process the data, and then store it in S3.
I was thinking lambdas may be the way to go...but I wasn't 100% sure if I wasn't missing a service that would help out! The list of services grows often and cool stuff flies under my radar all the time!
THANK YOU SO MUCH!
Relevant content
- asked 10 months ago
- asked 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 months ago