如何使用 boto3 在一个 describe[resource] 中制作多个过滤器?

How to make multiples filters in one describe_[resource] with boto3?

是否可以像示例那样从特定的 vpc 获取一个 sg?:

sgs = client.describe_security_groups(
    Filters=[
        {'Name': 'vpc-id', 'Values': ['vpc-1111111']},
        {'Name': 'GroupName': 'Values': ['sg_name']}
    ]
)

我不确定我是否理解你的问题,但如果你想根据 vpc-id 和组名过滤结果,你可以这样做:

sgs = client.describe_security_groups(
          Filters=[{'Name': 'vpc-id', 'Values': ['vpc-11111111']},
                   {'Name': 'group-name', 'Values': ['sg-name']}])

有帮助吗?