How can I integrate AWS SQS in Pega?
We need integrate an AWS SQS in a Pega function, processes a queue and stores the obtained records in a database table, to do this, we need to import the necessary libraries from the AWS SDK. Is this possible?
We need to import the following libraries:
import com.amazonaws.services.sqs.AmazonSQS;
import com.amazonaws.services.sqs.AmazonSQSClientBuilder;
import com.amazonaws.services.sqs.model.AmazonSQSException;
import com.amazonaws.services.sqs.model.SendMessageBatchRequest;
The following URLs have examples of what we need to develop in the function.
https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/examples-sqs-messages.html