This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new 5758a5b Fix list continuation in aws2-ddb docs
5758a5b is described below
commit 5758a5b675aac5d5bccf00fe97caa950b0f9a08d
Author: James Netherton <[email protected]>
AuthorDate: Wed Sep 29 10:36:37 2021 +0100
Fix list continuation in aws2-ddb docs
---
docs/modules/ROOT/pages/reference/extensions/aws2-ddb.adoc | 3 ++-
extensions/aws2-ddb/runtime/src/main/doc/configuration.adoc | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/docs/modules/ROOT/pages/reference/extensions/aws2-ddb.adoc
b/docs/modules/ROOT/pages/reference/extensions/aws2-ddb.adoc
index bcb4668..2353363 100644
--- a/docs/modules/ROOT/pages/reference/extensions/aws2-ddb.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/aws2-ddb.adoc
@@ -55,13 +55,14 @@ Note that this optional and not at all mandatory.
Follow the
https://quarkus.io/guides/amazon-dynamodb#configuring-dynamodb-clients[documentation]
with some caveats.
1. The Apache client type has to be selected by configuring the following
property.
++
[source,properties]
----
quarkus.dynamodb.sync-client.type=apache
----
2. The `DynamoDbClient` has to be injected somewhere in the application. This
triggers its creation so that the Camel component can discover it.
-
++
[source,java]
----
import software.amazon.awssdk.services.dynamodb.DynamoDbClient;
diff --git a/extensions/aws2-ddb/runtime/src/main/doc/configuration.adoc
b/extensions/aws2-ddb/runtime/src/main/doc/configuration.adoc
index 2f861b0..284362d 100644
--- a/extensions/aws2-ddb/runtime/src/main/doc/configuration.adoc
+++ b/extensions/aws2-ddb/runtime/src/main/doc/configuration.adoc
@@ -5,13 +5,14 @@ Note that this optional and not at all mandatory.
Follow the
https://quarkus.io/guides/amazon-dynamodb#configuring-dynamodb-clients[documentation]
with some caveats.
1. The Apache client type has to be selected by configuring the following
property.
++
[source,properties]
----
quarkus.dynamodb.sync-client.type=apache
----
2. The `DynamoDbClient` has to be injected somewhere in the application. This
triggers its creation so that the Camel component can discover it.
-
++
[source,java]
----
import software.amazon.awssdk.services.dynamodb.DynamoDbClient;