Questions tagged [aws-event-bridge]

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.

694 questions
0
votes
1 answer

aws eventbridge not creating ec2backsups with tags

i am unable to create a ec2 backups using event bridge with tags,even i mentioned tags in event bridge rules it is creating backups without tags,for that my ec2 life cycle policy manger unable to delete these backups without tags ,i am manually…
0
votes
1 answer

Is there a way to know that EventBridge has successfully processed a rule?

Scenario: Data loaded into DynamoDb and record set to a status of Pending. DynamoDb streams new data to EventBridge. EventBridge executes one or more rules based on the message payload. Once the rule execution has been completed, the record status…
Remotec
  • 10,304
  • 25
  • 105
  • 147
0
votes
1 answer

AWS Eventbridge to S3

I am integrating an AWS partner (Freshservice). I am able to set up an event bus to see the data from the partner, but I need to get the ticket information into S3. I am thinking of using a Glue workflow but I am uncertain if this is the best…
Macrus
  • 69
  • 6
0
votes
1 answer

AWS Lambda retry using SQS DLQ

What example belong does is, a cronjob runs every minute to trigger a lambda function written in Golang. If the lambda returns an error, a message is put into a DLQ straight away. However, what I am struggling to work out is that the retry logic. A…
BentCoder
  • 12,257
  • 22
  • 93
  • 165
0
votes
1 answer

while enabling aws event bridge rule from aws im getting error as denied exception

i have added permission in my event bus as { "Version": "2012-10-17", "Statement": [{ "Sid": "allow_account_to_put_events", "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::406342097594:root" }, "Action": "events:PutEvents", "Resource":…
0
votes
1 answer

AWS CloudWatch event triggering SQS - not working

I did setup an AWS SQS queue with Terraform. There are some subscribers running on AWS ECS. My plan was to setup a CloudWatch rule with a cron expression, which periodically sends a message into the SQS queue. The SQS queue looks like this: resource…
0
votes
1 answer

Parameterise AWS EventBridge cron rules with ECS task

I have a EventBridge rule with the cron pattern cron(0/15 * ? * * *), which trigger an ECS task every 15 mins. Is it possible to pass the trigger time to ECS task definition as a parameter? E.g., if the event is triggered on 2021-12-23T22:15:00Z. [ …
EES
  • 1,584
  • 3
  • 20
  • 38
0
votes
0 answers

How to iterate a object than iterate inside a list in Terraform

I need to create dynamic EventBus that create specific Rules based on a object that wave a list inside each key. My vars.tf file: variable "bus_name" { type = string description = "Event Bus Main Name" } variable "bus_path" { type =…
sp0iler
  • 33
  • 1
  • 7
0
votes
1 answer

AWS EventBridge: How to send only 1 notification when multiple objects deleted

I use AWS EventBridge with the following settings to activate Lambda functions. If there are three files under s3://testBucket/test/, and when these files deleted (I delete all files at the same time), EventBridge will send a notification to…
satohh
  • 45
  • 4
0
votes
1 answer

Orchestration of Redshift stored procedures using AWS Glue

I have multiple Redshift stored procedures (~15), some are dependent on the previous run stored procedures while some can run asynchronously. I need to orchestrate this with proper failure handling in case any successor stored procedure fails then I…
0
votes
1 answer

Cross account codepipeline with S3 source in different account

I have 2 AWS account: Account A: Codepipeline Account B: S3 containing zip The requirement is such that the codepipeline in account A will need S3 zip file as source stage from Account B. Also the codepipeline should detect changes in the S3 path…
0
votes
1 answer

Can I run Amazon Kinesis Analytics (KDA) using Amazon EventBridge rule?

I need to run a KDA application using an EventBridge rule? is it possible
0
votes
1 answer

Aws Event Bridge Notifications for the Different Environments

I am Using the Aws IVS for live streaming . when the stream ends I need to get the notification. I have configured the Event Bridge with source as IVS and destination as DEV, QA and PROD endpoints. when the streams ends I am getting the notification…
0
votes
1 answer

Enabling S3 EventBridge Notifications via Client

Does anyone know how to enable the EventBridge notifications via the s3 API? The documentation is not very helpful:…
0
votes
1 answer

Detail field from Step Functions gets stringified in EventBridge

I have a step function f1 which is triggered by a scheduled EventBridge Rule, so part of Execution Input is time. After f1 is completed, I want to trigger a new Step Function f2 through a new EventBridge Rule and pass time as input to f2. I've tried…