Question
We are unable link our SQS queue which is created in our AWS account and getting below error.
Answer
- If you look at the HAR for this UI, you will see that the following is being executed.
POST https://console.reltio.com/env/externalQueues/queue
Request body
{
*"queue"*: {
*"dtssQueue"*: false,
*"format"*: "JSON",
*"enabled"*: false,
*"provider"*: "aws://AKIA6BTPQ.....S3@sqs.us-west-2",
*"type"*: "queue",
*"typeFilter"*: [
"ENTITY_CREATED",
"ENTITY_CHANGED"
],
*"payloadType"*: "SNAPSHOT",
*"name"*: "ps-sqs"
},
*"tenantId"*: "45Zaa"
}
- Check the key and secret code. Any special character must be encoded before using them in Reltio. This is documented here:
Example
replaced character "/" with "%2F"
Comments
Please sign in to leave a comment.