Amazon RDS

Load event data into Amazon RDS for fully managed relational database storage on AWS.

Configuration

FieldTypeRequiredDescription
cluster_arnstringYesThe Aurora cluster ARN or RDS instance ARN.
databasestringYesThe target database name.
table_namestringYesThe target table name to insert rows into.
secret_arnsecretYesThe AWS Secrets Manager secret ARN for database credentials.
regionselectYesThe AWS region where the RDS instance is located.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Amazon RDS 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_rds/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Amazon RDS",
    "variant": "default",
    "config": {
      "cluster_arn": "arn:aws:rds:us-east-1:123456789:cluster:my-cluster",
      "database": "analytics",
      "table_name": "events",
      "region": "us-east-1"
    },
    "delivery_mode": "server_side"
  }'

Delivery

Events are delivered server-side from your Datafly Signal infrastructure directly to Amazon RDS. No client-side scripts are loaded for this integration.

Visit Amazon RDS documentation for full API documentation and credential setup instructions.