In my project, users can upload videos. So, when user uploads a video, the video name is stored in a table with a field "is_processed" is set to false by default.
Then the uploaded video is stored in S3. When video a arrives in S3, a Lambda is triggered and video is given to media convert. After converting the video to HLS format, it is again stored in a separate S3 bucket.
Now I want my "is_processed" field is to be true when video is successfully converted to HLS by mediaconvert.
So, how can I communicate to my Laravel backend from AWS and make the "is_processed" field true, for that particular video.