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
4
votes
3 answers
How do I create a custom Event Bus in AWS Event Bridge?
I can't find the documentation or an example Terraform module online.
How do I create a custom Event Bus in AWS Event Bridge?

Madhav Shenoy
- 798
- 12
- 32
3
votes
2 answers
Combine several events from event-bridge
I have some work that needs two s3 objects. Object A is uploaded by another system; I have to generate the Object B.
In fact, there is not one Object A, but several (A1, A2, A3). Each one is uploaded by an external system at any time. For each…

f.khantsis
- 3,256
- 5
- 50
- 67
3
votes
1 answer
Terraform - Place variable inside EOF tag
I have a terraform file that I'm reusing to create several AWS Eventbridge (as triggers for some lambdas).
On a different part of the file I'm able to use For Each method to create several eventbridge and naming them accordingly. My problem is that…

Naxxio
- 63
- 1
- 10
3
votes
2 answers
Cron expression for Amazon Eventbridge
I'm trying to get cron expression to trigger an event at 7:45 UTC on only working days -- Monday to Friday.
45 7 * * MON,TUE,WED,THU,FRI *
45 7 * * 1,2,3,4,5 *
Although the above expressions were supposed to work I am getting an Invalid CRON…

Azaria Gebremichael
- 542
- 7
- 15
3
votes
1 answer
How to send S3 object path or URI when an object created event is generated
I am new to AWS, I wanted to get S3 object URI/path when the object creation event is generated. Object can be created anywhere in the bucket, like there can be multiple sub folders that dynamically created in s3 bucket based on the date. So I want…

codeSeeker
- 132
- 9
3
votes
1 answer
Cannot grant permission to EventBridge bus
I am creating a custom bus in AWS EventBridge via CDK:
export class EventbridgeStack extends Stack {
constructor(scope: Construct, id: string, props?: StackProps) {
super(scope, id, props);
const targetCoreBus = new…

Yuriy Galanter
- 38,833
- 15
- 69
- 136
3
votes
1 answer
Invoke AWS Lambda Function URL from eventbridge api destination
I am utilizing Eventbridge API Destination to call my lambda function's url and throttle it to my desired rate. This works when the lambda function's invoke-url auth type is set to None. When I set the function Url auth type to AWS_IAM and create…

Http417
- 71
- 6
3
votes
2 answers
how to add sharedIdentifier to aws event bridge rule for scheduled execution of aws batch job
I configured aws bridge event rule (via web gui) for running aws batch job - rule is triggered but a I am getting following error after invocation:
shareIdentifier must be specified. (Service: AWSBatch; Status Code: 400; Error Code: ClientException;…

Patrik
- 77
- 8
3
votes
1 answer
EventBridge trigger: Sagemaker Processing Job finished
I'm currently developing some ETL for my ML model with AWS. The thing is that I want to trigger a Lambda when some Sagemaker Processing Job is finished. And the event passed to the Lambda, should be the configuration info (job name, arguments,…

mxmrpn
- 63
- 8
3
votes
1 answer
Aws Lambda multiple concurrencies from 1 eventbridge timer
Good afternoon,
I have an aws eventbridge timer that triggers an aws lambda every 15 minutes. The lambda takes at most 30 seconds to execute, doesn't go over memory allotment, has a 5 minute timeout, is set for zero retries, has 100% success over…

Adrian Hoffman
- 183
- 1
- 8
3
votes
2 answers
AWS EventBridge Input transformation rule with array List
I have a event with an Arraylist :
I have an Arraylist :
"TelephoneDetails": {
"Telephone": [
{
"Number": "",
"Type": "",
"Primary": "",
"TextEnabled": ""
},{
…

Anitha
- 165
- 2
- 9
3
votes
1 answer
AWS Eventbridge Name param
I'm implementing a AWS v3 event bridge from inside a Typescript application we have, using this library https://www.npmjs.com/package/@aws-sdk/client-eventbridge however when I run this code:
import { EventBridgeClient, ActivateEventSourceCommand }…

neophytte
- 648
- 2
- 11
- 25
3
votes
1 answer
How to filter an s3 data event by object key suffix on AWS EventBridge
I've created a rule on AWS EventBridge that trigger a Sagemaker Pipeline execution. To do so, I have the following event pattern:
{
"source": ["aws.s3"],
"detail-type": ["AWS API Call via CloudTrail"],
"detail": {
"eventSource":…

thatayster
- 45
- 2
- 6
3
votes
0 answers
How do I integrate event-drive architectures between AWS and Azure
I need to extend an event-driven architecture across a multi-cloud environment. AWS Eventbridge is the present bus. I need to use functions in Azure. I'm considering the following:
AWS Eventbridge - direct connection to Azure Service Bus. Is this…

MLaunch
- 41
- 4
3
votes
1 answer
How to create event rule for partner event bus in serverless / cloudformation
I am trying to create an event rule for the partner event bus i.e. arn:aws:events:{region}:{accountId}:event-bus/aws.partner/appflow/salesforce.com/{accountId} to send all events to an SQS queue in serverless but not having much luck, I keep hitting…

cyorkston
- 225
- 1
- 10