821 questions
0
votes
0
answers
44
views
Is it possible to create an HTTP API Gateway integration to EventBridge that reads the detail-type from a detail-type attribute of the payload?
My input to API Gateway looks like this:
{
"detail": {
"stuff": "goeshere"
},
"detail-type": "ApiGatewayTest",
"source&...
0
votes
0
answers
84
views
How can I pass an entire AWS SES event from EventBridge to an ECS Task?
I want to run an ECS Task on Fargate every time an AWS SES event has happened. I am able to run a Lambda function and the lambda function receives the event, but based on the documentation, as I ...
0
votes
1
answer
77
views
How can I flatten the Kafka message content so that headers and payload appear as top-level fields inside detail, and not nested under a value key?
I'm using the Amazon EventBridge Sink Connector for Kafka Connect to send messages from a Kafka topic into EventBridge. The source message in my Kafka topic looks like this:
{
"headers": {
...
0
votes
0
answers
19
views
Debugging eventbridge events from aws transfer
I want to trigger a lambda on SFTPConnectorDirectoryListingCompleted coming from aws.transfer. The doc claims that Transfer will deliver events to the default bus. However, from the console, I cannot ...
0
votes
1
answer
89
views
How to invoke a microservice on EKS multiple times per minute (migrating from EventBridge + Lambda)?
I'm currently using AWS EventBridge Scheduler to trigger 44 schedules per minute, all pointing to a single AWS Lambda function. AWS automatically handles the execution, and I typically see 7–9 ...
0
votes
0
answers
30
views
How do I combine multiple fields in an EventBridge anything-but match?
How do I write an EventBridge rule that matches any event EXCEPT where the source is "com.prosc.store" and the detail-type is "Login"? Assume that there are too many unknown event ...
1
vote
1
answer
123
views
Why isn’t my EventBridge Pipe scaling with increased SQS FIFO messages
I’m facing an issue with a webhook system built using AWS SQS FIFO queues, EventBridge Pipes, Step Functions, and Lambda. Here’s the setup:
• SQS FIFO Queue:
• Receives webhook messages containing ...
0
votes
1
answer
155
views
EventBridge Event bus doesn't receive cross-account events
I'm trying to send EventBridge events to the Event bus of our backup account, but the bus isn't receiving the events. I've been following this blog post, and translated the example given into ...
0
votes
0
answers
33
views
Event driven record deletions in AWS
Using only AWS infracode, is it possible for a stream of events to trigger updates and deletions of existing matched records in a table or database?
In other words, are components like EventBridge, ...
1
vote
1
answer
157
views
Are AWS EventBridge events processed/retried independently?
For a single event bus, if earlier messages cannot be delivered and enter the retry loop (which according to docs lasts up to 24 hours), will later messages be blocked from delivery?
Put another way: ...
0
votes
1
answer
33
views
How to configure event bridge for suffix ending with random date
I have configured my event bridge rule to listen event for NXP*.out files. Here is my code.
{
"detail-type": ["vg_1"],
"source": ["vg_1.bbg"],
"...
0
votes
1
answer
326
views
How to Handle EventBridge Rule Target (Lambda) Failure After All Retries Are Exhausted?
I have an schedule cron in aws that successfully delivers events to an AWS Lambda function. However, sometimes the Lambda function fails to process the events correctly event all retries are exhausted....
0
votes
1
answer
28
views
AWS one-time schduler usingf JAVA SDK error Error occurred: Parameter ScheduleExpression is not valid
I'm trying to create a one-time schedular in AWS event bridge using JAVA SDK. Below is the code
package com.example.kafkademo.service;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j....
-1
votes
1
answer
38
views
Delay in AWS Event notification in Lifecycle event
i have configured lifecycle events to delete the file from my s3 bucket,
Also i have setup Event notification,
Event types : Object expired have SQS queue as a destination
Destination type : SQS Queue
...
1
vote
0
answers
178
views
Set Execution Name to Step Function Triggered by EventBridge Rule and Target
I am triggering a step function with and event bridge rule and target. I would like to set a custom event name for the state machine. I am able to do this if I use a Scheduled run but not a Rule with ...
0
votes
0
answers
131
views
Using terraform, how to configure an eventbridge target for Systems Manager Run Command with target input of "Constant"
I am unable to find terraform to support filling out the details in the photo to configure parameters for the “Configure target input” type of “Constant.”
My terraform code currently looks something ...
0
votes
1
answer
729
views
Dynamic message group id from Eventbridge
Did anyone here manage to set the message group id for SQS to be dynamic?
We are receiving updates from our Shopify stores through the AWS Eventbridge integrations. Whenever there is a peak in sales ...
0
votes
2
answers
238
views
How to put the Targets Input correctly on the eventbridge rule using boto3 put_targets without manually clicking the prettify
state_machine_input = {
'STATE_MACHINE_DEFINITION_NAME': event_dict.get('workflowToBeTriggered'),
'LDAP_USER': event_dict.get('updatedBy')
}
eventbridge_client =...
0
votes
1
answer
197
views
Want to get current time and current time - 24 hours in AWS Step Functions / EventBridge Scheduler
I'm doing an incremental export from DynamoDB to S3, and I want the window for the export to be the last 24 hours.
I have seen that many people are suggesting to use a Lambda to do this, but I was ...
0
votes
1
answer
73
views
Reacting to a user verifying their email in a Cognito User Pool
So quick question, is there a straight-forward programmatic way to trigger some code whenever a user verifies their new email address? I know the custom email sender lambda has a trigger source for ...
0
votes
0
answers
94
views
AWS scheduler not stopping my EC2 instance
I created an AWS EventBridge with following configuration:
Target: Universal target
Service: Amazon EC2
API: StopInstances
Payload: { "InstanceIds": [ "i-xxxxxxxxxxxxxxxxx" ] }
My ...
0
votes
1
answer
185
views
Private endpoint cannot use as AWS EventBridge target
I need to call an private endpoint of Springboot application (hosted in EC2) that located in my AWS VPC from an event bridge that also located in same AWS VPC.I already tried to do this using API ...
1
vote
0
answers
177
views
How to trigger an Event or AWS Lambda function if all AWS Glue Jobs are executed successfully
I have automated execution of 50 AWS Glue Jobs via AWS Step functions.
They all execute concurrently.
I would appreciate it, if someone can provide guidance on
How can I trigger either an event, aws ...
0
votes
1
answer
218
views
Eventbridge pattern for SSM document
I want to make sure that my lambda triggers only when a particular ssm document status is Success, so i have written the following eventbridge pattern but it is not working.
I want to make sure that ...
0
votes
1
answer
159
views
The AWS event bridge pipe with multiple enrichment steps
Is it possible to add more than one enrichment step before invoke the target stage ?