Amazon RDS
Load event data into Amazon RDS for fully managed relational database storage on AWS.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
cluster_arn | string | Yes | The Aurora cluster ARN or RDS instance ARN. |
database | string | Yes | The target database name. |
table_name | string | Yes | The target table name to insert rows into. |
secret_arn | secret | Yes | The AWS Secrets Manager secret ARN for database credentials. |
region | select | Yes | The AWS region where the RDS instance is located. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Amazon RDS 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_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.