Posts

Showing posts with the label Bucket_Delete

Delete S3 Bucket.

There are four method which AWS mentioned in their Doc. Delete From Console. Use third party tool or AWS CLI. Use lifecycle policy.           i)   Delete From Console :- Deleting from console only work when bucket contain less than 100,000 objects but our bucket contain more than 100,000 object.           ii)    Use third party tool or AWS CLI :-  Can use s3cmd for deleting bucket which is a third party tool. We use AWS CLI provided by AWS.                        Run  this command  e.g:-                            AWS s3 rb s3://<bucket-name>  --force     ...