Skip to main content

AWS SQS

Amazon Web Services Simple Queue Service is a fully managed message queuing for microservices, distributed systems, and serverless applications. The AWS SQS data destination on Golioth accepts data in any format and delivers it to SQS. This example omits a content_type filter and accepts any data payload on any path, then delivers it to AWS SQS.

Reminder

Make sure to create a secret named AWS_SQS_ACCESS_SECRET that includes a valid AWS access key secret.

filter:
path: "*"
steps:
- name: step-0
destination:
type: aws-sqs
version: v1
parameters:
url: https://sqs.us-west-1.amazonaws.com/123456789/my-queue
access_key: MY_KEY
access_secret: $AWS_SQS_ACCESS_SECRET
region: us-west-1