我无法使用 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))