You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add EventBridge Lambda target delivery
- Routes EventBridge Lambda targets through the Go Lambda invocation path with CloudWatch Logs recording.
- Keeps local Node.js handler execution behind the existing signed localhost allow-local gate.
- Adds Go and AWS SDK coverage plus docs for EventBridge-to-Lambda delivery.
* Update AWS skill EventBridge Lambda docs
* Document EventBridge Lambda known key gate
* Format AWS EventBridge e2e test
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -778,12 +778,12 @@ In the native Go runtime, `@aws-sdk/client-sns` v3 can use the `/sns/` endpoint
778
778
- `AddPermission`, `RemovePermission`
779
779
780
780
### EventBridge
781
-
In the native Go runtime, `@aws-sdk/client-eventbridge` v3 can use the `/events/` endpoint directly. The SDK sends `X-Amz-Target: AWSEvents.<Action>` JSON requests and receives JSON responses. Matching events can be delivered to SQS queues and SNS topics.
781
+
In the native Go runtime, `@aws-sdk/client-eventbridge` v3 can use the `/events/` endpoint directly. The SDK sends `X-Amz-Target: AWSEvents.<Action>` JSON requests and receives JSON responses. Matching events can be delivered to SQS queues, SNS topics, and Lambda functions. Lambda targets create CloudWatch Logs entries; zipped Node.js handlers run only when `npx emulate` is started with `--allow-local-lambda` and the EventBridge request uses a direct localhost endpoint signed by a known AWS access key.
Copy file name to clipboardExpand all lines: apps/web/app/docs/aws/page.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,12 +60,12 @@ In the native Go runtime, `@aws-sdk/client-sns` v3 can use the `/sns/` endpoint
60
60
61
61
## EventBridge
62
62
63
-
In the native Go runtime, `@aws-sdk/client-eventbridge` v3 can use the `/events/` endpoint directly. The SDK sends `X-Amz-Target: AWSEvents.<Action>` JSON requests and receives JSON responses. Matching events can be delivered to SQS queues and SNS topics.
63
+
In the native Go runtime, `@aws-sdk/client-eventbridge` v3 can use the `/events/` endpoint directly. The SDK sends `X-Amz-Target: AWSEvents.<Action>` JSON requests and receives JSON responses. Matching events can be delivered to SQS queues, SNS topics, and Lambda functions. Lambda targets create CloudWatch Logs entries; zipped Node.js handlers run only when `npx emulate` is started with `--allow-local-lambda` and the EventBridge request uses a direct localhost endpoint signed by a known AWS access key.
64
64
65
65
-`CreateEventBus` / `DeleteEventBus` / `ListEventBuses` - event bus lifecycle and discovery
66
66
-`PutRule` / `DescribeRule` / `ListRules` / `DeleteRule` / `EnableRule` / `DisableRule` - rule lifecycle and state
0 commit comments