Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Updated Batch docs to reference the correct order of arguments for th…
Browse files Browse the repository at this point in the history
…e batch_submit task
  • Loading branch information
jamsi committed Mar 4, 2024
1 parent a2070b2 commit 20599d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prefect_aws/batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ async def batch_submit(
Args:
job_name: The AWS batch job name.
job_definition: The AWS batch job definition.
job_queue: Name of the AWS batch job queue.
job_definition: The AWS batch job definition.
aws_credentials: Credentials to use for authentication with AWS.
**batch_kwargs: Additional keyword arguments to pass to the boto3
`submit_job` function. See the documentation for
Expand All @@ -49,8 +49,8 @@ def example_batch_submit_flow():
)
job_id = batch_submit(
"job_name",
"job_definition",
"job_queue",
"job_definition",
aws_credentials
)
return job_id
Expand Down

0 comments on commit 20599d0

Please sign in to comment.