2 Home
gitea_admin edited this page 2026-03-11 14:35:25 +00:00

AWS DynamoDB

Store and retrieve data from AWS DynamoDB.

Metadata

Property Value
Scheme aws2-ddb
Support Level Stable
Labels cloud,database
Version 4.10.2

Maven Dependency

<dependency>
    <groupId>org.apache.camel</groupId>
    <artifactId>camel-aws2-ddb</artifactId>
    <version>4.10.2</version>
</dependency>

Endpoint Properties

Name Type Required Default Description
tableName string The name of the table currently worked with.
consistentRead boolean false Determines whether strong consistency should be enforced when data is read.
enabledInitialDescribeTable boolean true Set whether the initial Describe table operation in the DDB Endpoint must be done, or not.
keyAttributeName string Attribute name when creating table
keyAttributeType string Attribute type when creating table
keyScalarType string The key scalar type, it can be S (String), N (Number) and B (Bytes)
operation object PutItem What operation to perform
overrideEndpoint boolean false Set the need for overriding the endpoint. This option needs to be used in combination with uriEndpointOverride option
readCapacity integer The provisioned throughput to reserve for reading resources from your table
region string The region in which DDB client needs to work
uriEndpointOverride string Set the overriding uri endpoint. This option needs to be used in combination with overrideEndpoint option
writeCapacity integer The provisioned throughput to reserved for writing resources to your table
lazyStartProducer boolean false 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 starting the producer may take a little time and prolong the total processing time of the processing.
amazonDDBClient object To use the AmazonDynamoDB as the client
proxyHost string To define a proxy host when instantiating the DDB client
proxyPort integer The region in which DynamoDB 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()
proxyProtocol object HTTPS To define a proxy protocol when instantiating the DDB client
accessKey string Amazon AWS Access Key
profileCredentialsName string If using a profile credentials provider this parameter will set the profile name
secretKey string Amazon AWS Secret Key
sessionToken string Amazon AWS Session Token used when the user needs to assume a IAM role
trustAllCertificates boolean false If we want to trust all certificates in case of overriding the endpoint
useDefaultCredentialsProvider boolean false Set whether the S3 client should expect to load credentials through a default credentials provider or to expect static credentials to be passed in.
useProfileCredentialsProvider boolean false Set whether the DDB client should expect to load credentials through a profile credentials provider.
useSessionCredentials boolean false Set whether the DDB client should expect to use Session Credentials. This is useful in situation in which the user needs to assume a IAM role for doing operations in DDB.