我正在使用 boto3 client.create_volume
和 client.attach_volume
API,但返回值是字典,字典中的关键 State
是 create_volume 的 creating
和 attach_volume 的 attaching
。有没有办法检查卷是否在 boto3 中成功创建/附加?
最佳答案
幸运的是,boto3 有一个叫做 Waiters 的概念,可以为你做等待!
另请:EC2.Waiter.VolumeInUse
对于那些使用 ec2 客户端( ec2 = boto3.client('ec2')
)的人,你可以这样做
关于amazon-web-services - 如何验证在 boto3 中成功创建/附加的卷?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44807023/