snippetbashTip
aws — The official CLI tool for Amazon Web Services. Some subcommands such as `s3` have their own usage do
Viewed 0 times
officialthecommandclitoolawsfor
Problem
How to use the
aws command: The official CLI tool for Amazon Web Services. Some subcommands such as s3 have their own usage documentation. More information: <https://docs.aws.amazon.com/cli/latest/reference/>.Solution
aws — The official CLI tool for Amazon Web Services. Some subcommands such as s3 have their own usage documentation. More information: <https://docs.aws.amazon.com/cli/latest/reference/>.Configure the AWS Command-line:
aws configure wizardConfigure the AWS Command-line using SSO:
aws configure ssoGet the caller identity (used to troubleshoot permissions):
aws sts get-caller-identityList AWS resources in a region and output in YAML:
aws dynamodb list-tables --region {{us-east-1}} --output yamlUse auto prompt to help with a command:
aws iam create-user --cli-auto-promptGet an interactive wizard for an AWS resource:
aws dynamodb wizard {{new_table}}Generate a JSON CLI Skeleton (useful for infrastructure as code):
aws dynamodb update-table --generate-cli-skeletonDisplay help for a specific command:
aws {{command}} helpCode Snippets
Configure the AWS Command-line
aws configure wizardConfigure the AWS Command-line using SSO
aws configure ssoGet the caller identity (used to troubleshoot permissions)
aws sts get-caller-identityList AWS resources in a region and output in YAML
aws dynamodb list-tables --region {{us-east-1}} --output yamlUse auto prompt to help with a command
aws iam create-user --cli-auto-promptContext
tldr-pages: common/aws
Revisions (0)
No revisions yet.