Batch job tags don't show up everywhere

0

When creating new AWS Batch jobs via the SubmitJob API (done in Python, boto3), I see the submitted tags show up in the AWS Batch console. Where I don't see them though, is

  • The DescribeJob API (done via AWS CLI, aws batch describe-jobs ...
  • Job State change events sent to EventBridge

Is this a bug or intended behavior?

If it's intended, what is the appropriate way to tag my jobs so that Batch events have arbitrary key/value pairs that I can match EventBridge rules against?

已提問 2 年前檢視次數 307 次
1 個回答
0
已接受的答案

I found a way to do solve my (EventBridge) problem using AWS Batch's parameters option for jobs.

This is a way to write an EventBridge rule that matches a specific parameter set for filtering purposes

{
  "source": ["aws.batch"],
  "detail-type": ["Batch Job State Change"],
  "detail": {
    "parameters": {
      "match_me_exactly": ["only-this-should-match"]
    }
  }
}

This will filter down to job state events that come from a job submitted like so

batch_client.submit_job(
  # other stuff here ...
  parameters={"match_me_exactly": "only-this-should-match"}
)

Other types of content matching can be figured out from EventBridge's docs https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns-content-based-filtering.html#eb-filtering-complex-example

已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南