📌  相关文章
📜  如何使用 boto3 删除 s3 存储桶 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:30.497000             🧑  作者: Mango

代码示例1
import boto3

s3 = boto3.resource('s3')
bucket = s3.Bucket('my-bucket')
response = bucket.delete()