Add AWS SQS integration#220
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds documentation for configuring an AWS SQS reaction in Drasi Server and links it from the “Configure Reactions” landing page.
Changes:
- Introduces a new how-to page describing AWS SQS reaction configuration, templates/routing, authentication, and local testing.
- Updates the reactions index page to include an “AWS SQS” card linking to the new guide.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| docs/content/drasi-server/how-to-guides/configuration/configure-reactions/configure-aws-sqs-reaction/_index.md | New AWS SQS reaction configuration guide (config reference, templates, examples, testing). |
| docs/content/drasi-server/how-to-guides/configuration/configure-reactions/_index.md | Adds an AWS SQS card/link to the reactions landing page. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+112
to
+120
| | Variable | Available On | Description | | ||
| |----------|-------------|-------------| | ||
| | `{{after}}` | ADD, UPDATE | The new data object | | ||
| | `{{after.property}}` | ADD, UPDATE | Specific property from new data | | ||
| | `{{before}}` | UPDATE, DELETE | The previous data object | | ||
| | `{{before.property}}` | UPDATE, DELETE | Specific property from previous data | | ||
| | `{{query_id}}` | All | The query ID that produced this change | | ||
| | `{{query_name}}` | All | The query name | | ||
| | `{{operation}}` | All | The operation type (`add`, `update`, `delete`) | |
Contributor
Author
There was a problem hiding this comment.
Fixed — standardized the terminology:
{{operation}}now documentsadd,update,delete(matching thedrasi-operationsystem attribute).- The "Available On" column uses
added,updated,deletedto match the YAML route key names (these are config section names, not runtime values). - The Limitations section now uses lowercase
updateinstead ofUPDATE.
- Align config table format with other reaction pages (use Default column for Required marker instead of separate Required column) - Standardize template variable casing to use lowercase (added/updated/deleted) matching the config key names used throughout the doc - Add ElasticMQ, LocalStack, deduplication to spellcheck wordlist Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
ruokun-niu
approved these changes
Jun 5, 2026
# Conflicts: # .github/config/en-custom.txt # docs/content/drasi-server/how-to-guides/configuration/configure-reactions/_index.md
agentofreality
approved these changes
Jun 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
AWS SQS reaction docs