0
我正在研究需要刪除網站的cloudfront分配的拆卸腳本。看起來你必須做以下使用boto3刪除CloudFront分配
- 禁用分佈
- 等待分配被禁用(部署)
- 刪除分佈
但是它看起來像服務員失敗的步驟2,並且除非分配禁用,否則delete_distribution失敗。
result = client.update_distribution(
DistributionConfig=disabledConf,
Id=dist_id,
IfMatch=matchid)
waiter = client.get_waiter('distribution_deployed')
print("Waiting for disabling the distribution")
waiter.wait(Id=dist_id) # Throws here
client.delete_distribution(Id=dist_id, IfMatch=result['ETag'])
任何人都知道如何得到這個與boto3一起工作?