blob: accf883ac7c2ca77f151e52d14c472a9ff911939 [file] [log] [blame]
{
"connector": {
"class": "org.apache.camel.kafkaconnector.aws2sqs.CamelAws2sqsSourceConnector",
"artifactId": "camel-aws2-sqs-kafka-connector",
"groupId": "org.apache.camel.kafkaconnector",
"id": "camel-aws2-sqs-source",
"type": "source",
"version": "0.7.3",
"description": "Sending and receive messages to\/from AWS SQS service using AWS SDK version 2.x."
},
"properties": {
"camel.source.path.queueNameOrArn": {
"name": "camel.source.path.queueNameOrArn",
"description": "Queue name or ARN",
"priority": "HIGH",
"required": "true"
},
"camel.source.endpoint.amazonAWSHost": {
"name": "camel.source.endpoint.amazonAWSHost",
"description": "The hostname of the Amazon AWS cloud.",
"defaultValue": "\"amazonaws.com\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.amazonSQSClient": {
"name": "camel.source.endpoint.amazonSQSClient",
"description": "To use the AmazonSQS as client",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.autoCreateQueue": {
"name": "camel.source.endpoint.autoCreateQueue",
"description": "Setting the autocreation of the queue",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.headerFilterStrategy": {
"name": "camel.source.endpoint.headerFilterStrategy",
"description": "To use a custom HeaderFilterStrategy to map headers to\/from Camel.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.protocol": {
"name": "camel.source.endpoint.protocol",
"description": "The underlying protocol used to communicate with SQS",
"defaultValue": "\"https\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.proxyProtocol": {
"name": "camel.source.endpoint.proxyProtocol",
"description": "To define a proxy protocol when instantiating the SQS client One of: [HTTP] [HTTPS]",
"defaultValue": "\"HTTPS\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"HTTP",
"HTTPS"
]
},
"camel.source.endpoint.queueOwnerAWSAccountId": {
"name": "camel.source.endpoint.queueOwnerAWSAccountId",
"description": "Specify the queue owner aws account id when you need to connect the queue with different account owner.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.region": {
"name": "camel.source.endpoint.region",
"description": "The region in which SQS client needs to work. When using this parameter, the configuration will expect the lowercase name of the region (for example ap-east-1) You'll need to use the name Region.EU_WEST_1.id()",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.trustAllCertificates": {
"name": "camel.source.endpoint.trustAllCertificates",
"description": "If we want to trust all certificates in case of overriding the endpoint",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.useDefaultCredentialsProvider": {
"name": "camel.source.endpoint.useDefaultCredentialsProvider",
"description": "Set whether the SQS client should expect to load credentials on an AWS infra instance or to expect static credentials to be passed in.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.attributeNames": {
"name": "camel.source.endpoint.attributeNames",
"description": "A list of attribute names to receive when consuming. Multiple names can be separated by comma.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.bridgeErrorHandler": {
"name": "camel.source.endpoint.bridgeErrorHandler",
"description": "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.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.concurrentConsumers": {
"name": "camel.source.endpoint.concurrentConsumers",
"description": "Allows you to use multiple threads to poll the sqs queue to increase throughput",
"defaultValue": "1",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.defaultVisibilityTimeout": {
"name": "camel.source.endpoint.defaultVisibilityTimeout",
"description": "The default visibility timeout (in seconds)",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.deleteAfterRead": {
"name": "camel.source.endpoint.deleteAfterRead",
"description": "Delete message from SQS after it has been read",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.deleteIfFiltered": {
"name": "camel.source.endpoint.deleteIfFiltered",
"description": "Whether or not to send the DeleteMessage to the SQS queue if an exchange fails to get through a filter. If 'false' and exchange does not make it through a Camel filter upstream in the route, then don't send DeleteMessage.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.extendMessageVisibility": {
"name": "camel.source.endpoint.extendMessageVisibility",
"description": "If enabled then a scheduled background task will keep extending the message visibility on SQS. This is needed if it takes a long time to process the message. If set to true defaultVisibilityTimeout must be set. See details at Amazon docs.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.kmsDataKeyReusePeriodSeconds": {
"name": "camel.source.endpoint.kmsDataKeyReusePeriodSeconds",
"description": "The length of time, in seconds, for which Amazon SQS can reuse a data key to encrypt or decrypt messages before calling AWS KMS again. An integer representing seconds, between 60 seconds (1 minute) and 86,400 seconds (24 hours). Default: 300 (5 minutes).",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.kmsMasterKeyId": {
"name": "camel.source.endpoint.kmsMasterKeyId",
"description": "The ID of an AWS-managed customer master key (CMK) for Amazon SQS or a custom CMK.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.maxMessagesPerPoll": {
"name": "camel.source.endpoint.maxMessagesPerPoll",
"description": "Gets the maximum number of messages as a limit to poll at each polling. Is default unlimited, but use 0 or negative number to disable it as unlimited.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.messageAttributeNames": {
"name": "camel.source.endpoint.messageAttributeNames",
"description": "A list of message attribute names to receive when consuming. Multiple names can be separated by comma.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.sendEmptyMessageWhenIdle": {
"name": "camel.source.endpoint.sendEmptyMessageWhenIdle",
"description": "If the polling consumer did not poll any files, you can enable this option to send an empty message (no body) instead.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.serverSideEncryptionEnabled": {
"name": "camel.source.endpoint.serverSideEncryptionEnabled",
"description": "Define if Server Side Encryption is enabled or not on the queue",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.visibilityTimeout": {
"name": "camel.source.endpoint.visibilityTimeout",
"description": "The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a ReceiveMessage request to set in the com.amazonaws.services.sqs.model.SetQueueAttributesRequest. This only make sense if its different from defaultVisibilityTimeout. It changes the queue visibility timeout attribute permanently.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.waitTimeSeconds": {
"name": "camel.source.endpoint.waitTimeSeconds",
"description": "Duration in seconds (0 to 20) that the ReceiveMessage action call will wait until a message is in the queue to include in the response.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.exceptionHandler": {
"name": "camel.source.endpoint.exceptionHandler",
"description": "To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.exchangePattern": {
"name": "camel.source.endpoint.exchangePattern",
"description": "Sets the exchange pattern when the consumer creates an exchange. One of: [InOnly] [InOut] [InOptionalOut]",
"priority": "MEDIUM",
"required": "false",
"enum": [
"InOnly",
"InOut",
"InOptionalOut"
]
},
"camel.source.endpoint.pollStrategy": {
"name": "camel.source.endpoint.pollStrategy",
"description": "A pluggable org.apache.camel.PollingConsumerPollingStrategy allowing you to provide your custom implementation to control error handling usually occurred during the poll operation before an Exchange have been created and being routed in Camel.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.delayQueue": {
"name": "camel.source.endpoint.delayQueue",
"description": "Define if you want to apply delaySeconds option to the queue or on single messages",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.queueUrl": {
"name": "camel.source.endpoint.queueUrl",
"description": "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.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.synchronous": {
"name": "camel.source.endpoint.synchronous",
"description": "Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.proxyHost": {
"name": "camel.source.endpoint.proxyHost",
"description": "To define a proxy host when instantiating the SQS client",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.proxyPort": {
"name": "camel.source.endpoint.proxyPort",
"description": "To define a proxy port when instantiating the SQS client",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.maximumMessageSize": {
"name": "camel.source.endpoint.maximumMessageSize",
"description": "The maximumMessageSize (in bytes) an SQS message can contain for this queue.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.messageRetentionPeriod": {
"name": "camel.source.endpoint.messageRetentionPeriod",
"description": "The messageRetentionPeriod (in seconds) a message will be retained by SQS for this queue.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.policy": {
"name": "camel.source.endpoint.policy",
"description": "The policy for this queue",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.receiveMessageWaitTimeSeconds": {
"name": "camel.source.endpoint.receiveMessageWaitTimeSeconds",
"description": "If you do not specify WaitTimeSeconds in the request, the queue attribute ReceiveMessageWaitTimeSeconds is used to determine how long to wait.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.redrivePolicy": {
"name": "camel.source.endpoint.redrivePolicy",
"description": "Specify the policy that send message to DeadLetter queue. See detail at Amazon docs.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.backoffErrorThreshold": {
"name": "camel.source.endpoint.backoffErrorThreshold",
"description": "The number of subsequent error polls (failed due some error) that should happen before the backoffMultipler should kick-in.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.backoffIdleThreshold": {
"name": "camel.source.endpoint.backoffIdleThreshold",
"description": "The number of subsequent idle polls that should happen before the backoffMultipler should kick-in.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.backoffMultiplier": {
"name": "camel.source.endpoint.backoffMultiplier",
"description": "To let the scheduled polling consumer backoff if there has been a number of subsequent idles\/errors in a row. The multiplier is then the number of polls that will be skipped before the next actual attempt is happening again. When this option is in use then backoffIdleThreshold and\/or backoffErrorThreshold must also be configured.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.delay": {
"name": "camel.source.endpoint.delay",
"description": "Milliseconds before the next poll.",
"defaultValue": "500L",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.greedy": {
"name": "camel.source.endpoint.greedy",
"description": "If greedy is enabled, then the ScheduledPollConsumer will run immediately again, if the previous run polled 1 or more messages.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.initialDelay": {
"name": "camel.source.endpoint.initialDelay",
"description": "Milliseconds before the first poll starts.",
"defaultValue": "1000L",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.repeatCount": {
"name": "camel.source.endpoint.repeatCount",
"description": "Specifies a maximum limit of number of fires. So if you set it to 1, the scheduler will only fire once. If you set it to 5, it will only fire five times. A value of zero or negative means fire forever.",
"defaultValue": "0L",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.runLoggingLevel": {
"name": "camel.source.endpoint.runLoggingLevel",
"description": "The consumer logs a start\/complete log line when it polls. This option allows you to configure the logging level for that. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF]",
"defaultValue": "\"TRACE\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"TRACE",
"DEBUG",
"INFO",
"WARN",
"ERROR",
"OFF"
]
},
"camel.source.endpoint.scheduledExecutorService": {
"name": "camel.source.endpoint.scheduledExecutorService",
"description": "Allows for configuring a custom\/shared thread pool to use for the consumer. By default each consumer has its own single threaded thread pool.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.scheduler": {
"name": "camel.source.endpoint.scheduler",
"description": "To use a cron scheduler from either camel-spring or camel-quartz component. Use value spring or quartz for built in scheduler",
"defaultValue": "\"none\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.schedulerProperties": {
"name": "camel.source.endpoint.schedulerProperties",
"description": "To configure additional properties when using a custom scheduler or any of the Quartz, Spring based scheduler.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.startScheduler": {
"name": "camel.source.endpoint.startScheduler",
"description": "Whether the scheduler should be auto started.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.timeUnit": {
"name": "camel.source.endpoint.timeUnit",
"description": "Time unit for initialDelay and delay options. One of: [NANOSECONDS] [MICROSECONDS] [MILLISECONDS] [SECONDS] [MINUTES] [HOURS] [DAYS]",
"defaultValue": "\"MILLISECONDS\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"NANOSECONDS",
"MICROSECONDS",
"MILLISECONDS",
"SECONDS",
"MINUTES",
"HOURS",
"DAYS"
]
},
"camel.source.endpoint.useFixedDelay": {
"name": "camel.source.endpoint.useFixedDelay",
"description": "Controls if fixed delay or fixed rate is used. See ScheduledExecutorService in JDK for details.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.accessKey": {
"name": "camel.source.endpoint.accessKey",
"description": "Amazon AWS Access Key",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.secretKey": {
"name": "camel.source.endpoint.secretKey",
"description": "Amazon AWS Secret Key",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.amazonAWSHost": {
"name": "camel.component.aws2-sqs.amazonAWSHost",
"description": "The hostname of the Amazon AWS cloud.",
"defaultValue": "\"amazonaws.com\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.amazonSQSClient": {
"name": "camel.component.aws2-sqs.amazonSQSClient",
"description": "To use the AmazonSQS as client",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.autoCreateQueue": {
"name": "camel.component.aws2-sqs.autoCreateQueue",
"description": "Setting the autocreation of the queue",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.configuration": {
"name": "camel.component.aws2-sqs.configuration",
"description": "The AWS SQS default configuration",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.protocol": {
"name": "camel.component.aws2-sqs.protocol",
"description": "The underlying protocol used to communicate with SQS",
"defaultValue": "\"https\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.proxyProtocol": {
"name": "camel.component.aws2-sqs.proxyProtocol",
"description": "To define a proxy protocol when instantiating the SQS client One of: [HTTP] [HTTPS]",
"defaultValue": "\"HTTPS\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"HTTP",
"HTTPS"
]
},
"camel.component.aws2-sqs.queueOwnerAWSAccountId": {
"name": "camel.component.aws2-sqs.queueOwnerAWSAccountId",
"description": "Specify the queue owner aws account id when you need to connect the queue with different account owner.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.region": {
"name": "camel.component.aws2-sqs.region",
"description": "The region in which SQS client needs to work. When using this parameter, the configuration will expect the lowercase name of the region (for example ap-east-1) You'll need to use the name Region.EU_WEST_1.id()",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.trustAllCertificates": {
"name": "camel.component.aws2-sqs.trustAllCertificates",
"description": "If we want to trust all certificates in case of overriding the endpoint",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.useDefaultCredentialsProvider": {
"name": "camel.component.aws2-sqs.useDefaultCredentialsProvider",
"description": "Set whether the SQS client should expect to load credentials on an AWS infra instance or to expect static credentials to be passed in.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.attributeNames": {
"name": "camel.component.aws2-sqs.attributeNames",
"description": "A list of attribute names to receive when consuming. Multiple names can be separated by comma.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.bridgeErrorHandler": {
"name": "camel.component.aws2-sqs.bridgeErrorHandler",
"description": "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.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.concurrentConsumers": {
"name": "camel.component.aws2-sqs.concurrentConsumers",
"description": "Allows you to use multiple threads to poll the sqs queue to increase throughput",
"defaultValue": "1",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.defaultVisibilityTimeout": {
"name": "camel.component.aws2-sqs.defaultVisibilityTimeout",
"description": "The default visibility timeout (in seconds)",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.deleteAfterRead": {
"name": "camel.component.aws2-sqs.deleteAfterRead",
"description": "Delete message from SQS after it has been read",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.deleteIfFiltered": {
"name": "camel.component.aws2-sqs.deleteIfFiltered",
"description": "Whether or not to send the DeleteMessage to the SQS queue if an exchange fails to get through a filter. If 'false' and exchange does not make it through a Camel filter upstream in the route, then don't send DeleteMessage.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.extendMessageVisibility": {
"name": "camel.component.aws2-sqs.extendMessageVisibility",
"description": "If enabled then a scheduled background task will keep extending the message visibility on SQS. This is needed if it takes a long time to process the message. If set to true defaultVisibilityTimeout must be set. See details at Amazon docs.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.kmsDataKeyReusePeriodSeconds": {
"name": "camel.component.aws2-sqs.kmsDataKeyReusePeriodSeconds",
"description": "The length of time, in seconds, for which Amazon SQS can reuse a data key to encrypt or decrypt messages before calling AWS KMS again. An integer representing seconds, between 60 seconds (1 minute) and 86,400 seconds (24 hours). Default: 300 (5 minutes).",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.kmsMasterKeyId": {
"name": "camel.component.aws2-sqs.kmsMasterKeyId",
"description": "The ID of an AWS-managed customer master key (CMK) for Amazon SQS or a custom CMK.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.messageAttributeNames": {
"name": "camel.component.aws2-sqs.messageAttributeNames",
"description": "A list of message attribute names to receive when consuming. Multiple names can be separated by comma.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.serverSideEncryptionEnabled": {
"name": "camel.component.aws2-sqs.serverSideEncryptionEnabled",
"description": "Define if Server Side Encryption is enabled or not on the queue",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.visibilityTimeout": {
"name": "camel.component.aws2-sqs.visibilityTimeout",
"description": "The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a ReceiveMessage request to set in the com.amazonaws.services.sqs.model.SetQueueAttributesRequest. This only make sense if its different from defaultVisibilityTimeout. It changes the queue visibility timeout attribute permanently.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.waitTimeSeconds": {
"name": "camel.component.aws2-sqs.waitTimeSeconds",
"description": "Duration in seconds (0 to 20) that the ReceiveMessage action call will wait until a message is in the queue to include in the response.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.autowiredEnabled": {
"name": "camel.component.aws2-sqs.autowiredEnabled",
"description": "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.delayQueue": {
"name": "camel.component.aws2-sqs.delayQueue",
"description": "Define if you want to apply delaySeconds option to the queue or on single messages",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.queueUrl": {
"name": "camel.component.aws2-sqs.queueUrl",
"description": "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.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.proxyHost": {
"name": "camel.component.aws2-sqs.proxyHost",
"description": "To define a proxy host when instantiating the SQS client",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.proxyPort": {
"name": "camel.component.aws2-sqs.proxyPort",
"description": "To define a proxy port when instantiating the SQS client",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.maximumMessageSize": {
"name": "camel.component.aws2-sqs.maximumMessageSize",
"description": "The maximumMessageSize (in bytes) an SQS message can contain for this queue.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.messageRetentionPeriod": {
"name": "camel.component.aws2-sqs.messageRetentionPeriod",
"description": "The messageRetentionPeriod (in seconds) a message will be retained by SQS for this queue.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.policy": {
"name": "camel.component.aws2-sqs.policy",
"description": "The policy for this queue",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.receiveMessageWaitTimeSeconds": {
"name": "camel.component.aws2-sqs.receiveMessageWaitTimeSeconds",
"description": "If you do not specify WaitTimeSeconds in the request, the queue attribute ReceiveMessageWaitTimeSeconds is used to determine how long to wait.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.redrivePolicy": {
"name": "camel.component.aws2-sqs.redrivePolicy",
"description": "Specify the policy that send message to DeadLetter queue. See detail at Amazon docs.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.accessKey": {
"name": "camel.component.aws2-sqs.accessKey",
"description": "Amazon AWS Access Key",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-sqs.secretKey": {
"name": "camel.component.aws2-sqs.secretKey",
"description": "Amazon AWS Secret Key",
"priority": "MEDIUM",
"required": "false"
}
},
"transforms": [
"org.apache.camel.kafkaconnector.aws2sqs.transformers.SQSKeySetterTransforms"
]
}