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
2
votes
1 answer
Is it possible to trigger AWS Lambda Function by Event Bridge with multiple events in payload?
When we trigger an AWS Lambda function with an Event Bridge trigger, we typically get one event per lambda invocation.
But the payload to the Lambda function has an array of events (though usually with only one event in it). If there are multiple…

Vikas
- 626
- 1
- 10
- 22
2
votes
1 answer
AWS eventbridge rule failed invocations - where can I see why it failed?
I created a rule in eventbridge to call ssm automation doc at the instance launch lifecycle in auto-scaling group but it's failing to call the ssm doc. where can i see the log for this or find out why it failed?

wonderfulworldwithcharity
- 655
- 1
- 9
- 24
2
votes
1 answer
Hot to get logs from AWS API Destinations
I have AWS API Destination, which is triggered by rule. I attached DLQ to rule and I am getting rejected messages, but I don't see any reason why this is happening.
Is there any way to get logs in Cloud Watch about errors in API…

Martin Macak
- 3,507
- 2
- 30
- 54
2
votes
1 answer
get file details whenever a file land in s3 bucket & then trigger a glue job for each individual files
I have a general glue job which will execute based on the file name that is landing in s3 bucket. So right now we are creating an event based trigger which will execute a workflow. (Event is whenever a file land in s3). Is there any way to get the…

Techno_Eagle
- 111
- 4
2
votes
1 answer
Amazon EventBridge/Step Function/Lambda - Possible to achieve idempotency without introducing synchronous processing?
We have a Workflow (Step Function) that is triggered via an EventBridge rule and inside that Workflow is a lambda that creates a record in a third party vendor system. Assuming the third party vendor API does not have a way to enforce uniqueness of…

Matt
- 1,490
- 2
- 17
- 41
2
votes
1 answer
Using command in fargate container from EventBridge
I have fargate container which has the php prgram.
Then What I want to do is exec command in the container,
it is equivalent to docker command in local.
docker exec -it mycontainer /usr/bin/php mycommand
So, I want to do this from EventBridge (like…

whitebear
- 11,200
- 24
- 114
- 237
2
votes
1 answer
AWS: Trigger step function state machine on s3 object creation using Event Bridge Not Working
I enabled notifications for Amazon EventBridge on my s3 bucket.
Then I created an EventBridge rule with the following event pattern:
{
"detail": {
"bucket": {
"name": ["arn:aws:s3:::my-bucket"]
}
},
"detail-type": ["Object…

Osama Bin Saleem
- 779
- 1
- 12
- 24
2
votes
1 answer
Capturing events in eventBridge that don't match any rule
I am trying to find a way to somehow capture events that do not match a specific rule from an event bus.
Below is the event-pattern for a rule that I created:
{
"detail": {
"key1": ["1234"],
"key2": ["ABC"],
"key3": ["PHL"]
…

Aniket Kapse
- 315
- 3
- 20
2
votes
1 answer
Can you set dynamic messageGroupId using EventBridge and FIFO SQS?
Can you set dynamically messageGroupId from the payload content when you set SQS FIFO as a target for your EventBridge rule?
From the current setup I see that it can be only a hardcoded value.

Julian Dimitrov
- 31
- 2
2
votes
1 answer
Is there a wildcard character in AWS EventBridge rules?
I'm creating a rule for EventBridge and I want the rule to match the following structure:
{
"id": "",
"changes": {
"name": {
"old": "old name",
"new": "new name",
},
}
}
Inside of the changes object, I don't know…

kylejw2
- 374
- 1
- 3
- 10
2
votes
1 answer
Default vs custom EventBridge bus
I have a cross-account EventBridge bus which receives events from a number of EventBridge buses in different regions and accounts. I am currently using the default buses for both the source (sending) buses and target (receiving) bus. The events I'm…

bjlevine
- 873
- 1
- 9
- 23
2
votes
2 answers
how to send an event to eventbridge in aws?
Hi I have been assigned a task to send an event to eventbridge, I want to send the event pattern with customized values, I want to get these values out of Lambda, any help could be appreciated.

Kani
- 19
- 3
2
votes
1 answer
Unable to put notification event to trigger CloudFormation Lambda in existing S3 bucket
I'm migrating a "hand built" AWS infrastructure stack to CloudFormation using a SAM template. I've successfully migrated almost all of the resources, but I've hit a roadblock regarding migrating an S3 bucket. Where I'm running into an issue is with…

Maurdekye
- 3,597
- 5
- 26
- 43
2
votes
2 answers
How to curl an endpoint on a schedule with AWS
I'm trying to call a public API endpoint daily on a schedule from AWS. So how I would do this back in the day on a plain old server would be:
cron(0 0 * * ? *) curl someurl.com/endpoint
In my crontab. How is the best way to go about this in the…

Leon Aves
- 739
- 1
- 7
- 24
2
votes
2 answers
How to persist the correlation-id through AWS Eventbridge
For AWS Eventbridge, how do pass the correlation-id with the message. From the AWS SDK documentation, there is not field to set the message attribute.
Does this mean we have to pass the correlation-id together with the body?
this.eventBridge
…

Muhammad Azizol Aminuddin
- 623
- 5
- 17