Files
tldr/pages.ja/common/aws.md

38 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# aws
> アマゾンウェブサービスの公式 CLI ツールです。
> `s3` のようないくつかのサブコマンドには、使用方法についての独自のドキュメントがあります。
> 詳しくはこちら: <https://aws.amazon.com/cli>
- AWS コマンドラインを設定する:
`aws configure wizard`
- SSO を利用して AWS コマンドラインを設定する:
`aws configure sso`
- 操作呼び出しに使用した認証情報の取得(パーミッションのトラブルシューティングに使用します):
`aws sts get-caller-identity`
- リージョン内の AWS リソースをリストアップし、YAML で出力する:
`aws dynamodb list-tables --region {{us-east-1}} --output yaml`
- 自動プロンプトを使用してコマンドを補助する:
`aws iam create-user --cli-auto-prompt`
- AWS リソースの対話型ウィザードを取得する:
`aws dynamodb wizard {{新しいテーブル}}`
- JSON CLI スケルトンを生成するInfrastructure as Code に役立ちます):
`aws dynamodb update-table --generate-cli-skeleton`
- AWS コマンドのヘルプを参照する:
`aws {{コマンド}} help`