如何使用python boto获取EBS卷类型?

时间:2017-02-27 14:05:54

标签: python amazon-web-services boto

我开始在python中编写简单的nagios check来监视EBS gp2卷上的“Burst Balance”。我想跳过使用预配置IOPS(io1)检查卷

我可以使用aws ec2 describe-volumes获取此信息。

如何在python中使用boto检查卷类型?

1 个答案:

答案 0 :(得分:1)

boto3 describe_volumes()调用返回卷类型:

'VolumeType': 'standard'|'io1'|'gp2'|'sc1'|'st1'

我无法在boto中找到等效内容,但现在可能需要时间转到boto3。如果需要,您可以在同一个应用程序中同时使用它们,只需import boto3并同时使用它。