我有一个boto3客户程序:
boto3.client('kms')
但是它发生在新机器上,它们动态地打开和关闭。
if endpoint is None:
if region_name is None:
# Raise a more specific error message that will give
# better guidance to the user what needs to happen.
raise NoRegionError()
为什么会这样呢?为什么只有部分时间呢?
由于boto3客户端无法找到设置默认凭据方法的AWS简介:docs.aws.amazon.com/sdk-for-java/v1/developer-guide/...。
—
mootmoot