Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37516166
en ru br
ALT Linux repos
S:2.07-alt1

Group :: Development/Perl
RPM: perl-Amazon-SQS-Simple

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Current version: 2.07-alt1
Build date: 8 october 2018, 14:08 ( 289.4 weeks ago )
Size: 16.27 Kb

Home page:   http://www.cpan.org

License: Artistic
Summary: OO API for accessing the Amazon Simple Queue
Description:

use Amazon::SQS::Simple;

   my $access_key = 'foo'; # Your AWS Access Key ID
   my $secret_key = 'bar'; # Your AWS Secret Key

   
   my $sqs = new Amazon::SQS::Simple($access_key, $secret_key);

   
   my $q = $sqs->CreateQueue('queue_name');

   
   $q->SendMessage('Hello world!');

   
   my $msg = $q->ReceiveMessage();
   print $msg->MessageBody() # Hello world!

   
   $q->DeleteMessage($msg->ReceiptHandle());

   
   $q->Delete();

Current maintainer: Denis Smirnov

List of contributors

List of rpms provided by this srpm:

  • perl-Amazon-SQS-Simple
ACL:
     
    design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
    current maintainer: Michael Shigorin