For questions about Amazon EventBridge. Amazon EventBridge is a serverless event bus service, formerly called Amazon CloudWatch Events. when using this tag include the more generic [amazon-web-services] tag where possible.
Questions tagged [aws-event-bridge]
694 questions
23
votes
1 answer
AWS Eventbridge: how do I run a scheduled rule manually (in order to test it)?
In Amazon Web Services (AWS) Eventbridge, I can create cron-style scheduled rules to fire an event regularly.
When I'm creating or editing these, I often want to test that they work immediately (rather than waiting until the next scheduled…

phhu
- 1,462
- 13
- 33
19
votes
3 answers
AWS Event Bridge Lambda invocation
I have configured a lambda function as EventBridge rule target and I have configured a Dead Letter Queue on the EventBridge rule to capture exceptions.
Now, if the lambda function fails, Event Bridge does not recognize that failure as an…

marcob88
- 191
- 1
- 3
18
votes
1 answer
Adding lambda target role to AWS Eventbridge rule in Cloudformation fails
I am trying to create an AWS Eventbridge rule with a Lambda function as a target. I can add the rule and target fine but when I try to set the lambda permissions via RoleArn the Cloudformation stack deployment fails with:
RoleArn is not supported…

kiwichris
- 319
- 1
- 3
- 10
17
votes
3 answers
AWS EventBridge Cron Timezone - Fire on Specific Local Time
We have set an EventBridge to trigger a Lambda. It should run every day at 9:30AM Local time (US EST/EDT in my case). The problem is the date seems to be set in EventBridge by UTC. Is there a way to get this to always be based on a specific…

amd3
- 696
- 1
- 6
- 15
12
votes
1 answer
Issue with EventBridge rule for aws.events
I want to send to CloudWatch logs ALL the events sent to a custom event bus.
I created the custom event bus: my-event-bus
I created the CloudWatch log group
I created the event bus policy so everyone within my account can put an event into…

Peter
- 2,004
- 2
- 24
- 57
12
votes
1 answer
Running Amazon EventBridge locally
I am currently developing a system to be deployed on AWS. A collection of services that communicate using events delivered through Amazon EventBridge. I'm struggling to find a way to run my system locally because I don't know how I can either
Run a…

Kevin Brydon
- 12,524
- 8
- 46
- 76
12
votes
3 answers
Amazon EventBridge: Match an object inside of an array
I've stuck the problem with defining a rule for matching my events.
Googled, tested.
Let's say, we've the following event which contains the object user in the array events:
{
"version": "0",
"...": "...",
"detail": {
"events":…

dobeerman
- 1,354
- 15
- 27
11
votes
1 answer
AWS EventBridge scheduled events with custom details?
I'm trying to build an architecture where a single Lambda is triggered on a schedule with multiple parameter sets.
So for example if I have three sets of parameters and set schedule to ten minutes I expect to get three executions every ten…

mbrg
- 498
- 10
- 24
11
votes
1 answer
How can I define step function execution name from an EventBridge rule?
I'm using the EventBridge to trigger a step function. My EventBridge rule in the CloudFormation template looks as follows:
JobStepFunctionTrigger:
Type: AWS::Events::Rule
Properties:
EventBusName: !GetAtt JobTaskEventBus.Name
…

Kamil Janowski
- 1,872
- 2
- 21
- 43
11
votes
2 answers
How to trigger an AWS Event Rule when a S3 key with a specific suffix gets uploaded
I'm trying to create an AWS Event Rule that is only triggered when a file with a specific suffix is uploaded to an S3 bucket.
{
"source": [
"aws.s3"
],
"detail-type": [
"AWS API Call via CloudTrail"
],
"detail": {
…

Aaron Zhong
- 921
- 8
- 22
10
votes
1 answer
EventBridge with SNS Target, can you customize the SNS Message
I'm trying to use AWS EventBridge with an SNS Target and I've got the basic integration of sending a basic message SNS, with input transformers. However I want to be able to set the SNS Message Attributes (for subscription filtering) and ideally…

MJJames
- 735
- 6
- 22
10
votes
1 answer
What is the difference between AWS Kinesis and EventBridge
I'm an AWS noob, I'm trying to figure out what the difference between Amazon's Kinesis Data Stream and EventBridge products. Can someone explain this for someone not familiar with the AWS tech stack?

InvalidSyntax
- 9,131
- 20
- 80
- 127
9
votes
1 answer
How to delete node in EKS managed node group if the Kubelet crashes or stops reporting?
I am using aws EKS with a managed node group. Twice in the passed couple of weeks I had a case where the Kubelet in one of the nodes crashed or stopped reporting back to the control plane.
In this case I would expect the Autoscaling group to…

yammering
- 126
- 8
9
votes
1 answer
SageMaker pipeline execution after commit is not triggered
I am trying to create a simple pipeline in SageMaker Studio with the tutorial presented here: https://sagemaker-immersionday.workshop.aws/lab6.html
I have followed every step and everything seemed fine, but when I pushed the code to the repository,…

Angel
- 91
- 1
8
votes
3 answers
ECS Fargate Task in EventBridge fails with ResourceInitializationError
I have created an ECS Fargate Task, which I can manually run. It updates a Dynomodb and I get logs.
Now I want this to run on a schedule. I have setup a scheduled ECS task through EventBridge. However, this does not run.
My looking at the…

Mhairi McNeill
- 1,951
- 11
- 20