2017-08-03 29 views
-1

私はAWSインフラストラクチャと対話するためにboto3を使用しようとしています。 私はCLI(V 3.6.1)次のコードが動作しているのpythonから直接boto3使用しています:boto3:AttributeError: 'module'オブジェクトには属性 'ressourceがありません

import boto3 
client = boto3.ressource('iam') 
print(client.User('myusername').arn) 

しかし、私はPythonスクリプトファイル(test.pyからそれを使用しよう)私は、次のエラーを取得する:

$ python test.py 
Traceback (most recent call last): 
File "test.py", line 5, in <module> 
client = boto3.ressource('iam') 
AttributeError: 'module' object has no attribute 'ressource' 

は事前

答えて

関連する問題