Amazon SQS
Deliver event data to Amazon SQS for reliable, fully managed message queuing.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
queue_url | string | Yes | The Amazon SQS queue URL. |
region | select | Yes | The AWS region where the SQS queue 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. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Amazon SQS 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_sqs/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Amazon SQS",
"variant": "default",
"config": {
"queue_url": "https://sqs.us-east-1.amazonaws.com/123456789/my-queue",
"region": "us-east-1"
},
"delivery_mode": "server_side"
}'Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to Amazon SQS. No client-side scripts are loaded for this integration.
Visit Amazon SQS documentation for full API documentation and credential setup instructions.