Amazon DynamoDB

Load event data into Amazon DynamoDB for fully managed, serverless NoSQL storage with single-digit millisecond performance.

Configuration

FieldTypeRequiredDescription
table_namestringYesThe DynamoDB table name to write items to.
regionselectYesThe AWS region where the DynamoDB table is located.
access_key_idsecretYesThe AWS access key ID for authentication.
secret_access_keysecretYesThe AWS secret access key for authentication.
partition_keystringYesThe partition key attribute name. Defaults to message_id.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Amazon DynamoDB or filter by Cloud Storage.
  4. Click Install, select a variant if available, and fill in the required fields.
  5. 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.