使用boto3
并初始化ec2资源时,我得到了ec2.instancesCollectionManager(ec2.ServiceResource(), ec2.Instance)
对象中所有实例的集合。
ec2 = boto3.resource('ec2')
ec2.instances
现在我知道我可以使用filter
方法过滤那些实例了。
ec2.instances.filter(InstanceIds=[list of instance ids])
但是,有没有办法让我在python会话期间实际“永久地”过滤集合?也就是说,因此我不必在要跨实例应用的每个后续调用中都调用filter
。