This is an automated email from the ASF dual-hosted git repository.
apupier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-examples.git
The following commit(s) were added to refs/heads/main by this push:
new 20288c2c Fix typo Eventbridge --> EventBridge
20288c2c is described below
commit 20288c2c2f14c6ed5ae14579ed96db291b14a85c
Author: Aurélien Pupier <[email protected]>
AuthorDate: Mon Apr 14 17:53:52 2025 +0200
Fix typo Eventbridge --> EventBridge
Signed-off-by: Aurélien Pupier <[email protected]>
---
aws/main-endpointdsl-aws2/README.adoc | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/aws/main-endpointdsl-aws2/README.adoc
b/aws/main-endpointdsl-aws2/README.adoc
index 9f011b31..f09062e2 100644
--- a/aws/main-endpointdsl-aws2/README.adoc
+++ b/aws/main-endpointdsl-aws2/README.adoc
@@ -1,4 +1,4 @@
-== Camel Example Main Endpoint DSL with AWS2 Eventbridge, SQS and S3 components
+== Camel Example Main Endpoint DSL with AWS2 EventBridge, SQS and S3 components
This example shows how to use the endpoint DSL in your Camel routes
to define endpoints using type safe fluent builders, which are Java methods
@@ -6,7 +6,7 @@ that are compiled.
This example is split in 3 submodules
-* Eventbridge module: This module is responsible for creating a rule in
Eventbridge
+* EventBridge module: This module is responsible for creating a rule in
EventBridge
and targeting an SQS queue as target
* SQS Consumer: This module is responsible for consuming the events coming
into the queue
* S3 Events inject: This module will upload a file to a bucket and as first
step it will autocreate a bucket
@@ -17,7 +17,7 @@ Don't forget to add your AWS Credentials on all the sub
modules.
You'll need to create a trail in cloud trails service of AWS to make this
example works out of the box.
-Also, you'll need to create an SQS queue ahead of time, to make the
eventbridge rule point it as target.
+Also, you'll need to create an SQS queue ahead of time, to make the
EventBridge rule point it as target.
=== How to run