Package perl-Amazon-SQS-Simple: Information

    Source package: perl-Amazon-SQS-Simple
    Version: 1.06-alt1
    Build time:  Sep 4, 2010, 10:04 AM
    Category: Development/Perl
    Report package bug
    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();

    List of rpms provided by this srpm:
    perl-Amazon-SQS-Simple (noarch)

    Maintainer: Denis Smirnov

    List of contributors:
    Denis Smirnov

    ACL:
    Denis Smirnov
    @cpan
    @everybody

      1. perl-Digest-HMAC
      2. perl-XML-Simple
      3. perl-devel
      4. perl-libwww

    Last changed


    Sept. 4, 2010 Denis Smirnov 1.06-alt1
    - initial build for ALT Linux Sisyphus