To use the Amazon DynamoDB connector, add the <amazondynamodb.init>
element in your configuration before carrying out any other operations. To authenticate, it uses the Signature Version 4 signing specification, which describes how to construct signed requests to AWS. Whenever you send a request to AWS, you must include authorization information with your request so that AWS can verify the authenticity of the request. AWS uses the authorization information from your request to recreate your signature and then compares that signature with the one that you sent. These two signatures must match for you to successfully access AWS. Click here for further reference on the signing process.
<amazondynamodb.init> <region>{$ctx:region}</region> <secretAccessKey>{$ctx:secretAccessKey}</secretAccessKey> <accessKeyId>{$ctx:accessKeyId}</accessKeyId> <blocking>{$ctx:blocking}</blocking> </amazondynamodb.init>
Properties
region:
The region of the application access.secretAccessKey:
The secret access key.accessKeyId:
The accessKeyId of the user account to generate the signature.blocking
: Boolean type, this blocking parameter helps the connector performs the blocking invocations to AmazonDynamoDB.
Additional information
Ensure that the following Axis2 configurations are added and enabled in the <ESB_HOME>\repository\conf\axis2\axis2.xml
file.
Required message formatters
<messageFormatter contentType="application/x-amz-json-1.0" class="org.apache.synapse.commons.json.JsonStreamFormatter"/>
Required message builders
<messageBuilder contentType="application/x-amz-json-1.0" class="org.apache.synapse.commons.json.JsonStreamBuilder"/>
If you want to perform with blocking mode, the above builder and formatter are added and enabled in <ESB_HOME>\repository\conf\axis2\axis2_blocking_client.xml.
Now that you have connected to Amazon DynamoDB, use the information in the following topics to perform various operations with the connector. After you have completed your configurations, see Testing the AmazonDynamoDB Integration.