NAME
AnyPAN::Storage::S3::Adapter::NetAmazonS3 - Adapter for Net::Amazon::S3
SYNOPSIS
use AnyPAN::Storage::S3;
use AnyPAN::Storage::S3::Adapter::NetAmazonS3;
use Net::Amazon::S3;
use Net::Amazon::S3::Client;
my $s3 = Net::Amazon::S3->new(...);
my $client = Net::Amazon::S3::Client->new(s3 => $s3);
my $s3_bucket = $client->bucket(name => 'merged-cpan', region => 'us-east-1');
my $adapter = AnyPAN::Storage::S3::Adapter::NetAmazonS3->new(s3_bucket => $s3_bucket);
my $storage = AnyPAN::Storage::S3->new(adapter => $adapter);
DESCRIPTION
S3 adapter for Net::Amazon::S3.
SEE ALSO
LICENSE
Copyright (C) karupanerura.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
AUTHOR
karupanerura <karupa@cpan.org>