You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the AWSBatch interface is somewhere in between a high-level Julia interface and a low-level AWS API interface. We should do some iterating on this design to find something that that allows us to easily update with AWS API changes and new features while keeping things easy to use on the Julia side. Eventually we want the high-level Julia interface to look something like:
Currently the AWSBatch interface is somewhere in between a high-level Julia interface and a low-level AWS API interface. We should do some iterating on this design to find something that that allows us to easily update with AWS API changes and new features while keeping things easy to use on the Julia side. Eventually we want the high-level Julia interface to look something like:
For inspiration look at AWSLambda.jl which has a
@lambda
and@lambda_eval
for executing Julia code on Lambda.Keeping this in mind I think we should adjust the current AWSBatch in the following way:
Make the
BatchJob
only keep track of the job_id. This would result in an interface change something like:Applying these kind of changes to the job definition and other types would result in:
The text was updated successfully, but these errors were encountered: