How to delete an AWS S3 bucket that is not empty using AWS CLI

# First, empty the bucket
aws s3 rm s3://my-happy-bucket --recursive

# Then, delete the bucket itself
aws s3 rb s3://my-happy-bucket
5 lines of code, 133 characters

Similar AWS code snippets using bash

Finally, a good search for AWS Console

Was that in us-east-1? Or us-west-2? No need to remember. Just type the name of the resource and CloudTempo will find it.

Feature