Get AWS command for a job
(self, job_id: str)
| 208 | return self._job_id_to_round_info.get(job_id) if self._job_id_to_round_info else None |
| 209 | |
| 210 | def _get_aws_command(self, job_id: str) -> str | None: |
| 211 | """Get AWS command for a job""" |
| 212 | if self._job_id_to_aws_command is None: |
| 213 | self._build_job_id_to_folder_mapping() |
| 214 | return self._job_id_to_aws_command.get(job_id) if self._job_id_to_aws_command else None |
| 215 | |
| 216 | def _generate_aws_console_link(self, job_id: str) -> str: |
| 217 | """Generate AWS console link for a job""" |
no test coverage detected