src/smjsindustry/finance/processor.py [277:301]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                cloned_config["output_file_name"] = output_file_name
                json.dump(cloned_config, file_handle)
            config_input = ProcessingInput(
                source=tmpdirname,
                destination=self._PROCESSING_CONFIG,
                input_name=self._CONFIG_INPUT_NAME,
                s3_data_type="S3Prefix",
                s3_input_mode="File",
                s3_data_distribution_type="FullyReplicated",
                s3_compression_type="None",
            )
            data_input = ProcessingInput(
                source=input_file_path,
                destination=self._PROCESSING_DATA,
                input_name=self._DATA_INPUT_NAME,
                s3_data_type="S3Prefix",
                s3_input_mode="File",
                s3_data_distribution_type="FullyReplicated",
                s3_compression_type="None",
            )
            result_output = ProcessingOutput(
                source=self._PROCESSING_OUTPUT,
                destination=s3_output_path,
                s3_upload_mode="EndOfJob",
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/smjsindustry/finance/processor.py [427:451]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                cloned_config["output_file_name"] = output_file_name
                json.dump(cloned_config, file_handle)
            config_input = ProcessingInput(
                source=tmpdirname,
                destination=self._PROCESSING_CONFIG,
                input_name=self._CONFIG_INPUT_NAME,
                s3_data_type="S3Prefix",
                s3_input_mode="File",
                s3_data_distribution_type="FullyReplicated",
                s3_compression_type="None",
            )
            data_input = ProcessingInput(
                source=input_file_path,
                destination=self._PROCESSING_DATA,
                input_name=self._DATA_INPUT_NAME,
                s3_data_type="S3Prefix",
                s3_input_mode="File",
                s3_data_distribution_type="FullyReplicated",
                s3_compression_type="None",
            )
            result_output = ProcessingOutput(
                source=self._PROCESSING_OUTPUT,
                destination=s3_output_path,
                s3_upload_mode="EndOfJob",
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



