source/controlplaneapi/infrastructure/lambda/MreDataExport/shared/es_EventDataExporter.py [157:181]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        '''
            Generates the Event Data Export in JSON format
            {
                "aws:mre" : {
                    “BroadcastId”: “”,
                    “VideoId”: “”,
                    “LogTime”: “”,
                    “ActualStartTime”: “”,
                    “ActualEndTime”: “”,
                    “VideoType”: “”,
                    “Duration”: “”
                },
                "KeyEvents": [
                    {

                    },
                    {

                    }
                ]
            }
        '''
        event_data_export = {}
        event_payload = self._build_event_data()
        segment_payload = self._build_segments_for_event()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



source/controlplaneapi/infrastructure/lambda/MreDataExport/shared/es_ReplayDataExporter.py [200:224]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        '''
            Generates the Event Data Export in JSON format
            {
                "aws:mre" : {
                    “BroadcastId”: “”,
                    “VideoId”: “”,
                    “LogTime”: “”,
                    “ActualStartTime”: “”,
                    “ActualEndTime”: “”,
                    “VideoType”: “”,
                    “Duration”: “”
                },
                "KeyEvents": [
                    {

                    },
                    {

                    }
                ]
            }
        '''
        event_data_export = {}
        event_payload = self._build_event_data()
        segment_payload = self._build_segments_for_event()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



