in reply to Re^3: Need to print bucket and filename which is uploaded on S3 storage
in thread Need to print bucket and filename which is uploaded on S3 storage
the script returned some HASH value when I am trying to print $s3 value.
Output is "Amazon::S3=HASH(0xafac08)"use Amazon::S3; my $file_name = "filename.txt"; my $bucketName = "forest-upload"; my $s3 = Amazon::S3->new({ aws_access_key_id => "XX", aws_secret_access_key => "XX", retry => 1 }); print $s3;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: Need to print bucket and filename which is uploaded on S3 storage
by Corion (Pope) on Aug 21, 2019 at 08:12 UTC | |
by coolsaurabh (Acolyte) on Aug 21, 2019 at 10:09 UTC | |
by hippo (Chancellor) on Aug 21, 2019 at 10:21 UTC | |
by coolsaurabh (Acolyte) on Aug 21, 2019 at 10:57 UTC |
In Section
Seekers of Perl Wisdom