【以下的问题经过翻译处理】 我使用了下面的Lambda代码自动停止指定的实例ID的实例。我想要针对所有运行中的实例而不是特定的实例进行操作,请告知如何实现这一点。请注意,此代码对于指定的实例ID成功工作。代码如下:
import boto3
region = 'eu-west-2'
ec2 = boto3.client('ec2', region_name=region)
instances = ['i-02639vfrge55c5ad2','i-03tyho9cffe4aee0']
def lambda_handler(event, context):
ec2.stop_instances(InstanceIds=instances)
print('已停止实例:' + str(instances))