Amazon SQS

Deliver event data to Amazon SQS for reliable, fully managed message queuing.

Configuration

FieldTypeRequiredDescription
queue_urlstringYesThe Amazon SQS queue URL.
regionselectYesThe AWS region where the SQS queue is located.
access_key_idsecretYesThe AWS access key ID for authentication.
secret_access_keysecretYesThe AWS secret access key for authentication.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Amazon SQS 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_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.