There is one software where you can play with an s3 bucket to perform various kinds of operations.
Software Name: S3 Browser
S3 Browser is a free Windows client for Amazon S3 and Amazon CloudFront. Amazon S3 provides a simple web services interface that you can use to store and retrieve any amount of data at any time from anywhere on the network. Amazon CloudFront is a content delivery network (CDN). It can be used to deliver your files using a global network of peripheral locations.
If this is only once, then you can use the command line to perform these operations:
(1) Rename the folder in the same bucket:
s3cmd --access_key={access_key} --secret_key={secret_key} mv s3://bucket/folder1/* s3://bucket/folder2/
(2) rename bucket:
s3cmd --access_key={access_key} --secret_key={secret_key} mv s3://bucket1/folder/* s3://bucket2/folder/
Where to,
{access_key} = Your valid access key for s3 client
{secret_key} = Your valid scratch key for client s3
It works fine without any problems.
thank
Radadiya Nikunj Oct 22 '18 at 20:24 2018-10-22 20:24
source share