gpt4 book ai didi

amazon-s3 - 使用 boto3 删除 AWS S3 存储桶 - AttributeError

转载 作者:行者123 更新时间:2023-12-05 06:39:35 28 4
gpt4 key购买 nike

我正在尝试使用 boto3 库删除 S3 存储桶

import boto3

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

我收到以下错误:

"errorType": "AttributeError",
"errorMessage": "'S3' object has no attribute 'Bucket'"

我看不出有什么问题...谢谢

最佳答案

试试这个:

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

关于amazon-s3 - 使用 boto3 删除 AWS S3 存储桶 - AttributeError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44281684/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com