MCPcopy Create free account
hub / github.com/CodeClash-ai/CodeClash / _get_aws_command

Method _get_aws_command

codeclash/viewer/app_aws.py:210–214  ·  view source on GitHub ↗

Get AWS command for a job

(self, job_id: str)

Source from the content-addressed store, hash-verified

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"""

Callers 1

Calls 2

getMethod · 0.80

Tested by

no test coverage detected