@@ -87,7 +87,7 @@ async def create_job_definition(
8787 :param image_uri: Image to use for the job.
8888 :param name: Name of the job definition.
8989 :param description: Description of the job.
90- :param command: Deprecated in favor of startup_command.
90+ :param command: Deprecated: please use startup_command instead .
9191 :param startup_command: The main executable or entrypoint script to run.
9292 If both command and startup_command are provided, only startup_command will be used.
9393 :param args: Passed to the startup command at runtime.
@@ -289,7 +289,7 @@ async def update_job_definition(
289289 :param memory_limit: Memory limit of the job (in MiB).
290290 :param local_storage_capacity: Local storage capacity of the job (in MiB).
291291 :param image_uri: Image to use for the job.
292- :param command: Deprecated in favor of startup_command.
292+ :param command: Deprecated: please use startup_command instead .
293293 :param startup_command: The main executable or entrypoint script to run.
294294 If both command and startup_command are provided, only startup_command will be used.
295295 :param args: Passed to the startup command at runtime.
@@ -391,7 +391,7 @@ async def start_job_definition(
391391 :param job_definition_id: UUID of the job definition to start.
392392 :param region: Region to target. If none is passed will use default region from the config.
393393 :param command: If empty or not defined, the image's default command is used.
394- Deprecated in favor of startup_command.
394+ Deprecated: please use startup_command instead .
395395 :param startup_command: Overrides the default defined in the job image.
396396 The main executable or entrypoint script to run.
397397 If both command and startup_command are provided, only startup_command will be used.
0 commit comments