Skip to content

Commit

Permalink
Added configuration for sqs.message.attributes.partition.key
Browse files Browse the repository at this point in the history
  • Loading branch information
aksinghgrd committed Mar 6, 2024
1 parent f93d9cd commit c25c7d8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public class SqsSinkConnectorConfig extends SqsConnectorConfig {
.define(SqsConnectorConfigKeys.SQS_MESSAGE_ATTRIBUTES_INCLUDE_LIST.getValue(), Type.LIST, "", Importance.LOW,
"The comma separated list of Header names to be included, if empty it includes all the Headers. Default is the empty string.")
.define(SqsConnectorConfigKeys.CREDENTIALS_PROVIDER_ACCESS_KEY_ID.getValue(), Type.STRING, "", Importance.LOW, "AWS Secret Access Key to be used with Config credentials provider.")
.define(SqsConnectorConfigKeys.CREDENTIALS_PROVIDER_SECRET_ACCESS_KEY.getValue(), Type.PASSWORD, "", Importance.LOW, "AWS Secret Access Key to be used with Config credentials provider");
.define(SqsConnectorConfigKeys.CREDENTIALS_PROVIDER_SECRET_ACCESS_KEY.getValue(), Type.PASSWORD, "", Importance.LOW, "AWS Secret Access Key to be used with Config credentials provider")
.define(SqsConnectorConfigKeys.SQS_MESSAGE_ATTRIBUTE_PARTITION_KEY.getValue(), Type.STRING, "", Importance.LOW, "The name of a single AWS SQS MessageAttribute to use as the partition key");

public static ConfigDef config() {
return CONFIG_DEF;
Expand Down

0 comments on commit c25c7d8

Please sign in to comment.