我正在尝试获取 AWS 账户中所有 EBS 卷的列表。我正在使用 Python 3 和 boto3 版本 1.10.34。
我发现这篇文章有一些建议,但它们都不起作用。
我ec2_client
这样设置: import boto3 session = boto3.Session(profile_name=aws_account,region_name='us-east-1') ec2_client = session.client('ec2')
如果我尝试volumes = ec2_client.volumes.all()
我会回来AttributeError: 'EC2' object has no attribute 'volumes'
。
如果我尝试volumes = ec2_client.get_all_volumes()
我会回来AttributeError: 'EC2' object has no attribute 'get_all_volumes'
。
我怎样才能正确地做到这一点?