Deleting an S3 bucket using boto3

import boto3

# Call S3 to delete the bucket
boto3.client('s3').delete_bucket(Bucket='my-bucket-name')
4 lines of code, 102 characters

Similar AWS code snippets using python

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