-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'
は事前
こんにちは、 はい...タイポ間違い、唯一の 'S':
は、代わりの
ソース
を試してみてください。 ありがとう! – fas3r