tldr/pages.ja/common/aws.md

38 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# aws
> アマゾンウェブサービスの公式 CLI ツールです。
> `aws S3` のようないくつかのサブコマンドには、使用方法についての独自のドキュメントがあります。
> 詳しくはこちら: <https://aws.amazon.com/cli>
- AWS コマンドラインを設定する:
`aws configure wizard`
- SSO を利用して AWS コマンドラインを設定する:
`aws configure sso`
- AWS コマンドのヘルプを参照する:
`aws {{コマンド}} help`
- 操作呼び出しに使用した認証情報の取得(パーミッションのトラブルシューティングに使用します):
`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`