camel-aws-ses-sink-kafka-connector sink configuration

Connector Description: Send email through the Amazon Simple Email Service (SES). The basic authentication method for the SES service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider. If you use the default credentials provider, the SES client loads the credentials through this provider and doesn’t use the basic authentication method. In the header, you can optionally set the following properties: - `subject` / `ce-subject` property to specify the email subject. If you do not set this property in the header, the Kamelet uses the exchange ID for the email subject. - `to` / `ce-to` to provide a comma-separated list of email addresses. - `reply-to-addresses` / `ce-reply-to-addresses`to provider a comma-separated list of reply-to email addresses.

When using camel-aws-ses-sink-kafka-connector as sink make sure to use the following Maven dependency to have support for the connector:

<dependency>
  <groupId>org.apache.camel.kafkaconnector</groupId>
  <artifactId>camel-aws-ses-sink-kafka-connector</artifactId>
  <version>x.x.x</version>
  <!-- use the same version as your Camel Kafka connector version -->
</dependency>

To use this sink connector in Kafka connect you’ll need to set the following connector.class

connector.class=org.apache.camel.kafkaconnector.awssessink.CamelAwssessinkSinkConnector

The camel-aws-ses-sink sink connector supports 5 options, which are listed below.

Name Description Default Priority

camel.kamelet.aws-ses-sink.from

Required From address Example: user@example.com.

HIGH

camel.kamelet.aws-ses-sink.accessKey

The access key obtained from AWS.

MEDIUM

camel.kamelet.aws-ses-sink.secretKey

The secret key obtained from AWS.

MEDIUM

camel.kamelet.aws-ses-sink.region

Required The AWS region to access.

HIGH

camel.kamelet.aws-ses-sink.useDefaultCredentialsProvider

If true, the SES client loads credentials through a default credentials provider. If false, it uses the basic authentication method (access key and secret key).

false

MEDIUM

The camel-aws-ses-sink sink connector has no converters out of the box.

The camel-aws-ses-sink sink connector has no transforms out of the box.

The camel-aws-ses-sink sink connector has no aggregation strategies out of the box.