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
0
votes
0 answers
AWS EventBridge, SQS and Lambda with Serverless Framework
I'm fairly new to the Serverless Framework but I was able to achieve a lot of the bits and pieces of our aspired infrastructure using the framework and the serverless-lift plugin.
The serverless-lift plugin allows me to easily create worker queues…

robbash
- 985
- 10
- 21
0
votes
2 answers
Is there a way to block eventbridge event triggers while lambda is running?
I have an event trigger for every 5 minutes on my lambda. However, sometimes once my lambda starts running, it needs to run for longer than 5 minutes. Is there any way to have my timeout set for 15 minutes, and block the event triggers from spawning…

charmingduchess
- 137
- 1
- 1
- 8
0
votes
0 answers
How to identify MongoDB collection name from MongoDB AWS EventBridge Trigger
I created 2 MongoDB triggers for 2 collections from one Mongo cluster and 1 trigger for a collection from another cluster. So altogether 3 triggers. I used AWS Event Bridge to send trigger events to AWS
Here are the Event Bridges that were created…

cmgchess
- 7,996
- 37
- 44
- 62
0
votes
1 answer
AWS EventBridge with the target AWS Batch with Terraform
I have created AWS batch environment, job-queue and job definition with the terraform.
Now, I want to trigger the job-definition on a scheduled basis and need to create an AWS EventBridge for that.
resource "aws_batch_job_definition"…

Darshana Patel
- 507
- 1
- 11
- 25
0
votes
2 answers
How do I create a schedule for a query using the Redshift Query editor v2?
The query editor v2 does not seem to come with the schedule button from v1. I have followed the recommended steps to create a schedule using AWS EventBridge and have successfully attached said schedule to my redshift cluster. The schedule gets…

Eke Eke
- 25
- 10
0
votes
1 answer
AWS EventBridge PutEvent Detail Malformed
I have tried both AWS Go SDKs both versions and every time I get an error stating that the Details field is malformed. The Details field accepts a JSON string.
In SDK V2 you basically have a struct for the event
type Event struct {
Details []struct…

Mark_T
- 3
- 2
0
votes
1 answer
Get name of Cloud watch event triggered lambda function
I have multiple cloud watch events triggering a lambda function . Is it possible to get name of event in lambda function so that I can know which is triggering lambda function and need to do some changes accordingly.

Manpreet Narang
- 95
- 1
- 1
- 8
0
votes
1 answer
What is the substitute for crond in aws, EventBridge?
I am planning to invoke lambda once every hour.
Until now, I was get used to use crond to invoke some events on linux.
So, I am googling around what is the substitute for crond in aws.
I have heard EventBridge works like that.
My understanding is…

Dekishigrash
- 325
- 2
- 10
0
votes
0 answers
terraform should forward two rules to one sqs-que
I do not understand how I can tell terraform that it should create two rules for an aws-eventbridge which should send an event to the same sqs-queue if a rule is triggered. Example below. It is working in aws if i configure it over the…

EhmKah a.k.a. Michael Krauße
- 2,837
- 5
- 34
- 53
0
votes
0 answers
EventBridge rule is not getting triggered via custom event pattern of parameter store
I have created one event bridge with below custom event pattern of updating value of SSM parameter store. when I update the value rule is not getting triggered. Anything i am missing ?
{
"version": ["0"],
"id":…

Deepak Gupta
- 387
- 2
- 17
0
votes
0 answers
Can AWS EventBridge forward events to a third event bus?
So I'm working on a project that uses EventBridge. The basic architecture is that we want an event bus in account 1, connect that to account 2, then connect account 2 to account 3 so account 1 and 3 are not directly connected. Any s3 events will…

Justine
- 39
- 5
0
votes
1 answer
AWS Event Bridge schema types as lambda layer
We are building a notification service using AWS EventBridge and different notifications will be sent depending on the event. We are thinking of a good way to share the type bindings for the event schemas among different teams/lambda functions. So…

Rasika
- 234
- 3
- 11
0
votes
1 answer
How to validate AWS Service belonging to an arn during terraform plan using Open Policy Agent?
resource "aws_cloudwatch_event_target" "sns" {
rule = aws_cloudwatch_event_rule.console.name
target_id = "SendToSNS"
arn = aws_sns_topic.aws_logins.arn
}
I would like to use Open Policy Agent to ensure the arn of the target above…

Biju
- 820
- 1
- 11
- 34
0
votes
1 answer
Input Transformer: handle special characters in AWS Event Bridge
I am having a hard time understanding why my input transformation is not working in Event Bridge.
The following is the default input to a step function, which will intentionally cause my state machine to fail:
{
"Comment": "Insert your JSON…

Felipe
- 10,606
- 5
- 40
- 57
0
votes
1 answer
AWS EventBridge Exception Cross Account Event Put
I have a lambda defined in say, account A which is sending events to an EventBridge in say, account B. Below is the code that I use to push data (put_events) using Python boto3 client.
rlogger.info("Trying to send events with boto3 client "…

guru
- 409
- 4
- 21