mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ Add AWS SQS node (#1530)
* implement sqs node to send message * remove console logs * update node to use url as value * add message attributes * tslint --fix * fix comment * address comments, fix subtitle bug, fix style issues * add comma * update pathname handling * fix spacing * fix queue loading for no queues and more than 1 * change logo to svg, support sending input as json * add binary data property support * fix node read to depend on item * 🎨 Fix SVG size to prevent cropping * ⚡ Ajust imports and display names per codebase * ✏️ Edit parameter descriptions * address comments * tslint fixes * update subtitle to operation * update fifo handling * ⚡ Improvements * ⚡ Minor fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
@@ -20,6 +20,8 @@ function getEndpointForService(service: string, credentials: ICredentialDataDecr
|
||||
endpoint = credentials.lambdaEndpoint;
|
||||
} else if (service === 'sns' && credentials.snsEndpoint) {
|
||||
endpoint = credentials.snsEndpoint;
|
||||
} else if (service === 'sqs' && credentials.sqsEndpoint) {
|
||||
endpoint = credentials.sqsEndpoint;
|
||||
} else {
|
||||
endpoint = `https://${service}.${credentials.region}.amazonaws.com`;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user