Brad S.

Results 3 comments of Brad S.

Just a guess, really - you might have to escape the second "@" somehow.

Also, CDK adds the `resources` filter even if you specify your own event pattern, including if you set `Resources` to null or an empty array: ```csharp ecrRepo.OnEvent("EcrRepoEventRule", new OnEventOptions() {...

Workaround is to create the rule directly via the EventBridge CDK `Rule` construct: ```csharp new Rule(this, "EcrRepoEventRule", new RuleProps() { Targets = new IRuleTarget[] { new LambdaFunction(ecrHandler), }, EventPattern =...