Deleting a bucket
You can delete an empty Amazon S3 bucket. For information about emptying a bucket, see Emptying a bucket.
You can delete a bucket by using the Amazon S3 console, the Amazon Command Line Interface (Amazon CLI), the Amazon SDKs, or the Amazon S3 REST API.
Important
Before deleting a bucket, consider the following:
-
Bucket names are unique. If you delete a bucket, another Amazon user can use the name. If you want to continue to use the same bucket name, don't delete the bucket. We recommend that you empty the bucket and keep it.
-
If the bucket hosts a static website, and you created and configured an Amazon Route 53 hosted zone as described in Tutorial: Configuring a static website using a custom domain registered with Route 53, you must clean up the Route 53 hosted zone settings that are related to the bucket. For more information, see Step 2: Delete the Route 53 hosted zone.
-
If the bucket receives log data from Elastic Load Balancing (ELB), we recommend that you stop the delivery of ELB logs to the bucket before deleting it. After you delete the bucket, if another user creates a bucket using the same name, your log data could potentially be delivered to that bucket. For information about ELB access logs, see Access logs for your Classic Load Balancer in the User Guide for Classic Load Balancers and Access logs for your Application Load Balancer in the User Guide for Application Load Balancers.
Troubleshooting
If you are unable to delete an Amazon S3 bucket, consider the following:
-
Make sure that the bucket is empty – You can delete buckets only if they don't have any objects in them. Make sure that the bucket is empty. For information about emptying a bucket, see Emptying a bucket.
-
Make sure that there aren't any access points attached – You can delete buckets only if they don't have any S3 Access Points or Multi-Region Access Points attached within the same account. Before deleting the bucket, delete any same-account access points that are attached to the bucket.
-
Amazon Organizations service control policies (SCPs) and resource control policies (RCPs) – SCPs and RCPs can deny the delete permission on a bucket. For more information, see service control policies and resource control policies in the Amazon Organizations User Guide.
-
s3:DeleteBucket
permissions – If you cannot delete a bucket, work with your IAM administrator to confirm that you haves3:DeleteBucket
permissions. For information about how to view or update IAM permissions, see Changing permissions for an IAM user in the IAM User Guide. For troubleshooting information, see Troubleshoot access denied (403 Forbidden) errors in Amazon S3. -
s3:DeleteBucket Deny
statement – If you haves3:DeleteBucket
permissions in your IAM policy and you can't delete a bucket, the bucket policy might include aDeny
statement fors3:DeleteBucket
. Buckets created by Amazon Elastic Beanstalk have a policy containing this statement by default. Before you can delete the bucket, you must delete this statement or the bucket policy.
Prerequisites
Before you can delete a bucket, you must empty it. For information about emptying a bucket, see Emptying a bucket.
To delete an S3 bucket
Sign in to the Amazon Web Services Management Console and open the Amazon S3 console at https://console.amazonaws.cn/s3/
. -
In the left navigation pane, choose General purpose buckets.
-
In the General purpose buckets list, select the option button next to the name of the bucket that you want to delete, and then choose Delete at the top of the page.
-
On the Delete bucket page, confirm that you want to delete the bucket by entering the bucket name in the text field, and then choose Delete bucket.
Note
If the bucket contains any objects, empty the bucket before deleting it by choosing the Empty bucket button in the This bucket is not empty error alert and following the instructions on the Empty bucket page. Then return to the Delete bucket page and delete the bucket.
-
To verify that you've deleted the bucket, open the General purpose buckets list and enter the name of the bucket that you deleted. If the bucket can't be found, your deletion was successful.
The following example shows how to delete a bucket by using the Amazon SDK for Java. The
code first deletes all objects in the bucket, and then it deletes the bucket. For
information about using other Amazon SDKs, see Tools for
Amazon Web Services
You can delete a bucket that contains objects with the Amazon CLI if the bucket doesn't have versioning enabled. When you delete a bucket that contains objects, all the objects in the bucket are permanently deleted, including objects that have been transitioned to the S3 Glacier Flexible Retrieval storage class.
If your bucket doesn't have versioning enabled, you can use the rb
(remove bucket) Amazon CLI command with the --force
parameter to delete the
bucket and all the objects in it. This command deletes all objects first and then
deletes the bucket.
If versioning is enabled, using the rb
command with the
--force
parameter doesn't delete versioned objects, so the bucket
deletion fails because the bucket isn't empty. For more information about deleting
versioned objects, see Deleting object
versions.
To use the following command, replace
with the name of the
bucket that you want to delete:amzn-s3-demo-bucket
$
aws s3 rb s3://amzn-s3-demo-bucket
--force
For more information, see Using High-Level S3 Commands with the Amazon Command Line Interface in the Amazon Command Line Interface User Guide.