ec2.images.filter命令记录的有效值是什么?

时间:2017-12-04 20:13:12

标签: amazon-web-services boto3

Noob问题,我在哪里可以获得有关ec2.images.filter命令的有效标记的信息? IE,它不在boto3

的Python API文档字符串中
import boto3
ec2 = boto3.resource('ec2', region_name='us-west-2')
image = list(ec2.images.filter(Filters=[{"Name":"Id", "Values": ["ami-405ade3a"]}]).all())[0]

ClientError: An error occurred (InvalidParameterValue) when calling the DescribeImages operation: The filter 'Id' is invalid

1 个答案:

答案 0 :(得分:1)

它们记录在Boto3 EC2图像部分中。

请参阅:ec2.images.filter()