Amazon DynamoDB
Load event data into Amazon DynamoDB for fully managed, serverless NoSQL storage with single-digit millisecond performance.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
table_name | string | Yes | The DynamoDB table name to write items to. |
region | select | Yes | The AWS region where the DynamoDB table is located. |
access_key_id | secret | Yes | The AWS access key ID for authentication. |
secret_access_key | secret | Yes | The AWS secret access key for authentication. |
partition_key | string | Yes | The partition key attribute name. Defaults to message_id. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Amazon DynamoDB or filter by Cloud Storage.
- Click Install, select a variant if available, and fill in the required fields.
- Click Install Integration to create the integration with a ready-to-use default configuration.
API Setup
curl -X POST http://localhost:8084/v1/admin/integration-catalog/amazon_dynamodb/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Amazon DynamoDB",
"variant": "default",
"config": {
"table_name": "events",
"region": "us-east-1",
"partition_key": "message_id"
},
"delivery_mode": "server_side"
}'Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to Amazon DynamoDB. No client-side scripts are loaded for this integration.
Visit Amazon DynamoDB documentation for full API documentation and credential setup instructions.