Deleting a bucket
Sam is feeling more and more confident in her AWS and S3 skills.
After playing around for a bit, she decides that the gim-test bucket no longer fits her pipeline and wants to delete it.
It's starting to feel like dead weight, and Sam doesn't want it littering her beautiful bucket list.
She has already created the boto3 client for S3, and assigned it to the s3 variable.
Help Sam do some clean up, and delete the gim-test bucket.
Este exercício faz parte do curso
Introduction to AWS Boto in Python
Instruções do exercício
- Delete the
'gim-test'bucket. - Get the list of buckets from S3.
- Print each
'Buckets''Name'.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Delete the gim-test bucket
s3.____(____='gim-test')
# Get the list_buckets response
response = s3.____()
# Print each Buckets Name
for bucket in response['____']:
print(bucket['____'])