Amazon SQS Message Queue
Amazon Simple Queue Service (SQS) integration for Delphi. Send, receive, and manage messages in AWS SQS queues.
Amazon Simple Queue Service (SQS) integration for Delphi. Send, receive, and manage messages in AWS SQS queues.
uses
sgcHTTP_API_Amazon_SQS;
var
SQS: TsgcHTTPAmazonSQS;
begin
SQS := TsgcHTTPAmazonSQS.Create(nil);
SQS.AWSOptions.AccessKey := 'AKIA...';
SQS.AWSOptions.SecretKey := 'secret';
SQS.AWSOptions.Region := 'us-east-1';
// Send a message
SQS.SendMessage(QueueUrl, 'Hello from Delphi!');
end;
Deep-link to the component reference, grab the ready-to-run demo project, and download the trial.