powershellを使用してAWS APIゲートウェイアクセスキーを生成しようとしています。例えばObjectNotFound cmdletを使用してAWSにアクセスする際にエラーが発生しました。IAM
:
Get-AWSCredential -ListProfileDetail
は、このようなエラーになります。しかし、毎回私はそれがエラーをスロー任意のコマンドレットを使用しようと
Get-AWSCredential : The term 'Get-AWSCredential' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + Get-AWSCredential -ListProfileDetail + ~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (Get-AWSCredential:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
私は、コマンドの一覧を表示するとGet-Commandを使用すると、AWSコマンドレットはポップアップしません。 何が問題なのでしょうか?
私はあなたがコマンドレットをインストールしていないと仮定します。私は、Amazonのドキュメントへの参照で回答にコマンドを掲載しました。 –