Hello,
I am in process of uploading file to S3 storage via Perl script.
Below script is used to upload the file.However when i am trying to print the bucket and filename which is earlier uploaded,the script is throwing some error. Pls advice.
Script to upload file on S3
#!/opt/perl/bin/perl
use Amazon::S3;
my $file_name = "filename.txt";
my $bucketName = "forest-upload";
my $s3 = Amazon::S3->new({
aws_access_key_id => "XXX",
aws_secret_access_key => "XXX",
retry => 1
});
my $bucket = $s3->bucket($bucketName);
$bucket->add_key_filename(
$file_name,
$file_name,
{
content_type => "text/plain",
}
);
Script for printing the bucket and filename
#!/opt/perl/bin/perl
use Amazon::S3;
my $access_key = 'XXX';
my $secret_key = 'XXX';
my $conn = Amazon::S3->new({
aws_access_key_id => $access_key,
aws_secret_access_key => $secret_key,
secure => 1,
retry => 1,
});
my @buckets = @{$conn->buckets->{buckets} || []};
foreach my $bucket (@buckets) {
print $bucket->bucket . "\t" . $bucket->creation_date . "\n";
}
The error which above script is throwing is "Can't use an undefined value as a HASH reference at Amazon_bucket.pl line 16."
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.