python 使用boto3列出正在运行的EC2实例的示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用boto3列出正在运行的EC2实例的示例相关的知识,希望对你有一定的参考价值。

import boto3

ec2 = boto3.resource('ec2')

def lambda_handler(event, context):
    # create filter for instances in running state
    filters = [
        {
            'Name': 'instance-state-name', 
            'Values': ['running']
        }
    ]
    
    # filter the instances based on filters() above
    instances = ec2.instances.filter(Filters=filters)

    # instantiate empty array
    RunningInstances = []

    for instance in instances:
        # for each instance, append to array and print instance id
        RunningInstances.append(instance.id)
        print instance.id

以上是关于python 使用boto3列出正在运行的EC2实例的示例的主要内容,如果未能解决你的问题,请参考以下文章

python boto3将IAM角色附加/替换为ec2

函数 ec2.snapshots.all 不迭代 boto3 lambda

使用boto3 Python SDK返回AWS EC2可用性区域属性

如何列出所有未使用的弹性IP并使用boto3释放它们

使用 boto3 和 python 将 AWS EC2 详细信息导出到 xlsx/csv

如何使用 boto3 在 EC2 中 SSH 和运行命令?