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.git

commit fec9921f6371d9df4da7c800ff9b4decca7315df
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Mon Feb 17 12:09:37 2020 +0100

    CAMEL-14553 - Create an AWS-SQS component based on SDK v2, regen docs
---
 .../camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc   | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc 
b/components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc
index c1001cf..2afff6a 100644
--- a/components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc
+++ b/components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc
@@ -1,7 +1,7 @@
 [[aws2-sqs-component]]
 = AWS 2 Simple Queue Service Component
 
-*Since Camel 2.6*
+*Since Camel 3.1*
 
 // HEADER START
 *Both producer and consumer is supported*
@@ -31,7 +31,7 @@ The queue will be created if they don't already exists. +
 
 
 // component options: START
-The AWS Simple Queue Service component supports 7 options, which are listed 
below.
+The AWS 2 Simple Queue Service component supports 7 options, which are listed 
below.
 
 
 
@@ -44,7 +44,7 @@ The AWS Simple Queue Service component supports 7 options, 
which are listed belo
 | *bridgeErrorHandler* (consumer) | Allows for bridging the consumer to the 
Camel routing Error Handler, which mean any exceptions occurred while the 
consumer is trying to pickup incoming messages, or the likes, will now be 
processed as a message and handled by the routing Error Handler. By default the 
consumer will use the org.apache.camel.spi.ExceptionHandler to deal with 
exceptions, that will be logged at WARN or ERROR level and ignored. | false | 
boolean
 | *lazyStartProducer* (producer) | Whether the producer should be started lazy 
(on the first message). By starting lazy you can use this to allow CamelContext 
and routes to startup in situations where a producer may otherwise fail during 
starting and cause the route to fail being started. By deferring this startup 
to be lazy then the startup failure can be handled during routing messages via 
Camel's routing error handlers. Beware that when the first message is processed 
then creating and [...]
 | *basicPropertyBinding* (advanced) | Whether the component should use basic 
property binding (Camel 2.x) or the newer property binding with additional 
capabilities | false | boolean
-| *configuration* (advanced) | The AWS SQS default configuration |  | 
SqsConfiguration
+| *configuration* (advanced) | The AWS SQS default configuration |  | 
Sqs2Configuration
 |===
 // component options: END
 
@@ -56,10 +56,10 @@ The AWS Simple Queue Service component supports 7 options, 
which are listed belo
 
 
 // endpoint options: START
-The AWS Simple Queue Service endpoint is configured using URI syntax:
+The AWS 2 Simple Queue Service endpoint is configured using URI syntax:
 
 ----
-aws-sqs:queueNameOrArn
+aws2-sqs:queueNameOrArn
 ----
 
 with the following path and query parameters:
@@ -81,7 +81,7 @@ with the following path and query parameters:
 |===
 | Name | Description | Default | Type
 | *amazonAWSHost* (common) | The hostname of the Amazon AWS cloud. | 
amazonaws.com | String
-| *amazonSQSClient* (common) | To use the AmazonSQS as client |  | AmazonSQS
+| *amazonSQSClient* (common) | To use the AmazonSQS as client |  | SqsClient
 | *autoCreateQueue* (common) | Setting the autocreation of the queue | true | 
boolean
 | *headerFilterStrategy* (common) | To use a custom HeaderFilterStrategy to 
map headers to/from Camel. |  | HeaderFilterStrategy
 | *protocol* (common) | The underlying protocol used to communicate with SQS | 
https | String
@@ -110,7 +110,7 @@ with the following path and query parameters:
 | *lazyStartProducer* (producer) | Whether the producer should be started lazy 
(on the first message). By starting lazy you can use this to allow CamelContext 
and routes to startup in situations where a producer may otherwise fail during 
starting and cause the route to fail being started. By deferring this startup 
to be lazy then the startup failure can be handled during routing messages via 
Camel's routing error handlers. Beware that when the first message is processed 
then creating and [...]
 | *messageDeduplicationIdStrategy* (producer) | Only for FIFO queues. Strategy 
for setting the messageDeduplicationId on the message. Can be one of the 
following options: useExchangeId, useContentBasedDeduplication. For the 
useContentBasedDeduplication option, no messageDeduplicationId will be set on 
the message. The value can be one of: useExchangeId, 
useContentBasedDeduplication | useExchangeId | MessageDeduplicationIdStrategy
 | *messageGroupIdStrategy* (producer) | Only for FIFO queues. Strategy for 
setting the messageGroupId on the message. Can be one of the following options: 
useConstant, useExchangeId, usePropertyValue. For the usePropertyValue option, 
the value of property CamelAwsMessageGroupId will be used. The value can be one 
of: useConstant, useExchangeId, usePropertyValue |  | MessageGroupIdStrategy
-| *operation* (producer) | The operation to do in case the user don't want to 
send only a message. The value can be one of: sendBatchMessage, deleteMessage, 
listQueues |  | SqsOperations
+| *operation* (producer) | The operation to do in case the user don't want to 
send only a message. The value can be one of: sendBatchMessage, deleteMessage, 
listQueues |  | Sqs2Operations
 | *basicPropertyBinding* (advanced) | Whether the endpoint should use basic 
property binding (Camel 2.x) or the newer property binding with additional 
capabilities | false | boolean
 | *delayQueue* (advanced) | Define if you want to apply delaySeconds option to 
the queue or on single messages | false | boolean
 | *queueUrl* (advanced) | To define the queueUrl explicitly. All other 
parameters, which would influence the queueUrl, are ignored. This parameter is 
intended to be used, to connect to a mock implementation of SQS, for testing 
purposes. |  | String

Reply via email to