1

我无法使用 Python3 和 boto3 获取 AWS Config 汇总的已发现资源。

Python=3.7 Boto3=1.9.42 使用 AWS SAM 在本地测试 Lambda 函数,但是当我在 AWS 中运行 Lambda 时遇到了同样的问题。

    client = master_session.client('config', region_name=my_region)

    response = client.list_aggregate_discovered_resources(
        ConfigurationAggregatorName=aggregator,
        ResourceType="AWS::EC2::Instance")

返回错误:

{
  "errorType": "AttributeError",
  "errorMessage": "'ConfigService' object has no attribute 'list_aggregate_discovered_resources'",
  "stackTrace": [
    "  File \"/var/task/app.py\", line 41, in lambda_handler\n    r = client.list_aggregate_discovered_resources(\n",
    "  File \"/var/runtime/botocore/client.py\", line 563, in __getattr__\n    self.__class__.__name__, item)\n"
  ]
}

但是,我可以使用此客户端运行其他请求。

这有效:

response = client.describe_configuration_aggregators()
print("Response: {}".format(response))
4

1 回答 1

1

您可以list_aggregated_discovered_resources从下面的参考资料中看到 boto3 1.9.42 不支持该属性。

配置服务 - Boto3 1.9.42

如果要使用该属性,则需要最新版本的 boto3。

于 2019-09-11T16:46:48.347 回答