821 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
58
views
React to specific IAM Events in AWS
What I am trying to achieve is to trigger specific actions within my AWS Account when specific IAM actions are performed. This appeared to be much more complicated than I expected, so I wanted to ...
0
votes
0
answers
47
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
51
views
Serverless Offline with EventBridge Scheduler Error: The execution role you provide must allow AWS EventBridge Scheduler to assume the role
As the title says, I'm encountering this error when running in SLS Offline. I just want to confirm if EventBridge Scheduler really isn't supported by SLS Offline?
resources.ts
export const resources = ...
0
votes
0
answers
88
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
86
views
Is it possible to customize the SFN execution name when triggering SFN using SQS + Eventbridge Pipes?
I am trying to trigger an SFN using SQS + Pipes, and I wanted to know if it's possible to configure the name of the SFN execution based on the payload.
Example:
If the event is as follows:
{"...
0
votes
1
answer
96
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
42
views
How do I use an AWS eventbridge schema to get an object of the defined class from the event json struct?
When I generate schema for an AWS EventBridge event, I get something like the following.
Now, what's passed to my lambda isn't an instance of this class. It's an instance of a struct that uses the '...
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 ...
2
votes
1
answer
108
views
How to create a single CloudWatch EventBridge rule for multiple AWS DMS tasks finishing full load?
I'm using AWS DMS to migrate data from several sources into Redshift. For each replication task, I want to trigger a Lambda function when the full load finishes. Currently, I'm creating a separate AWS:...
0
votes
1
answer
95
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 ...
1
vote
1
answer
310
views
How to create EventBridge rule that triggers Lambda/Step function on another account?
I have two AWS accounts named A and B. I want to create an EventBridge rule on A that will run Lambda/Step function on B, and on runtime I don't have access to B, only to A.
The problem with lambda ...
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 ...
0
votes
0
answers
131
views
Passing parameters from AWS EventBridge Pipe to ECS task read by a python application
I am totally at a loss trying to figure out a seemingly simple thing and all searches are taking me in different directions, except offering the clear solution.
I have a python application (not flask/...
1
vote
1
answer
145
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
0
answers
29
views
AWS Glue input arguments passed through EventBridge should be visible in the Lambda function
When triggering an AWS Glue job through EventBridge and passing input arguments (e.g., --fname, --lname), the Lambda function triggered by the Glue job state change event does not receive or display ...