AWS Batch: Is there any AWS Batch API to retrieve the job by tag?

0

Following was my code: var jobRequest = new SubmitJobRequest(); jobRequest.Tags = new Dictionary<string, string> {{"test", "testTagValue"}}; response = client.SubmitJobAsync(jobRequest).Result; var response = client.ListJobsAsync(listJobsRequest).Result;//can't read by tags, only can by JobID

Is there any AWS Batch API to retrieve the job by tag?

asked 2 years ago601 views
1 Answer
0
profile pictureAWS
EXPERT
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions