This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 6ea19d45e38c1afda8e09a0bd504fddae3c67fea Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Apr 20 11:21:11 2021 +0200 Added AWS SQS Batch Sink Kamelet --- docs/modules/ROOT/pages/aws-sqs-batch-sink.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/aws-sqs-batch-sink.adoc b/docs/modules/ROOT/pages/aws-sqs-batch-sink.adoc index 2f4eb34..4caee88 100644 --- a/docs/modules/ROOT/pages/aws-sqs-batch-sink.adoc +++ b/docs/modules/ROOT/pages/aws-sqs-batch-sink.adoc @@ -12,11 +12,11 @@ The following table summarizes the configuration options available for the `aws- |=== | Property| Name| Description| Type| Default| Example | *accessKey {empty}* *| Access Key| The access key obtained from AWS| string| | +| *batchSeparator {empty}* *| Batch Separator| The batch separator string| string| | `","` | *queueNameOrArn {empty}* *| Queue Name| The SQS Queue name or ARN| string| | | *region {empty}* *| AWS Region| The AWS region to connect to| string| | `"eu-west-1"` | *secretKey {empty}* *| Secret Key| The secret key obtained from AWS| string| | | autoCreateQueue| Autocreate queue| Setting the autocreation of the SQS queue.| boolean| `false`| -| batchSeparator| Batch Separator| The batch separator string| string| | `","` |=== NOTE: Fields marked with ({empty}*) are mandatory. @@ -49,6 +49,7 @@ spec: name: aws-sqs-batch-sink properties: accessKey: "The Access Key" + batchSeparator: "," queueNameOrArn: "The Queue Name" region: "eu-west-1" secretKey: "The Secret Key"
