boto3资源从集合中删除实例

时间:2018-09-17 19:58:16

标签: python amazon-ec2 boto3

使用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

0 个答案:

没有答案