I'm trying to get a custom event setup in AWS CloudWatch. My goal is to trigger on either:
event:pullRequestMergeStatus
AND isMerged:True
OR
event:pullRequestStatusChanged
AND isMerged:False
I've tried using JSOM logical operators, such as:
{"$and":[{"event":"pullRequestMergeStatus"}, {"isMerged":"True"}]}
However either AWS doesn't support that or the syntax is incorrect. I've also tried adding an array into my detail
part of the JSON string, but that ends with a syntax error, and adding 2 detail
s entries just makes the bottom one stomp on the top.
Any input on how to setup logic, in an AWS CloudWatch custom event, to allow multiple sets of events like this?
My current, working but ugly, solution is to have 2 separate CloudWatch events, one per event
/isMerged
set.
e.g.
{
"source": [
"aws.codecommit"
],
"detail-type": [
"CodeCommit Repository State Change"
],
"detail": {
"event": [
"pullRequestStatusChanged"
],
"isMerged": [
"False"
]
}
}
You can target a Lambda function with the original CW Event, then have the Lambda make the decision (check multiple parameters in the JSON strings), then this Lambda can post an SNS message to a Topic which has a subscription to a Lambda etc -- the options are endless.
A sample code for Lambda may be as follows (Python) - Its purpose is different but you will get the idea: