我需要在脚本中获取“当前用户”的帐户 ID 。boto3
到目前为止,我最好的解决方案是解析当前用户arn:
>>> import boto3
>>> account_id = boto3.resource('iam').CurrentUser().arn.split(':')[4]
但我想知道是否有更“轻量级”的方法。实际上
>>> timeit.timeit("boto3.resource('iam').CurrentUser().arn",
... 'import boto3', number=10)
4.8895583080002325
而且我实际上不需要CurrentUser
脚本中的资源。