Use the below command to delete folder named ‘prefix’ and all it’s contents from an S3 bucket aws s3 rm
Continue readingHow to keep the folder and delete all contents of an S3 bucket prefix
Use the below command to delete all the contents of an S3 bucket folder and not the folder itself. aws
Continue readingHow to Rename an S3 bucket
AWS does not support renaming an S3 bucket. If you’ve created a bucket with the incorrect name and would like
Continue readingHow to copy contents from one S3 bucket to another
Copy file from one bucket to another within the same region where bucketname1 is the source bucket and bucketname2 is
Continue readingHow to view the region of an S3 bucket
Use the below command to identify the region of an S3 bucket where bucketname is the name of the bucket.
Continue readingHow to download an entire S3 bucket
Download all the contents of an S3 bucket to your local current directory using below commands: aws s3 sync s3://bucketname
Continue readingHow to kill sessions in Redshift
Identify the session that you would like to terminate from the below view and copy the process id. SELECT *
Continue readingHow to determine the size of an S3 bucket
aws s3 ls s3://bucketName/ –recursive –summarize | grep “Total Size:” aws s3 ls s3://bucketName/prefix/ –recursive –summarize | grep “Total Size:”
Continue readingHow to print only file names from an S3 bucket
Run the below command from AWS CLI to print only the names of objects in an s3 bucket where bucketname
Continue readingHow to download multiple files from an S3 bucket
Create a list of files to be downloaded as below: aws s3 ls s3://bucketname/prefix/ | awk ‘{print $4}’ > $listfile
Continue reading