mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
24 lines
530 B
Markdown
24 lines
530 B
Markdown
![]() |
# aws
|
||
|
|
||
|
> The official CLI tool for Amazon Web Services.
|
||
|
|
||
|
- List all IAM users:
|
||
|
|
||
|
`aws iam list-users`
|
||
|
|
||
|
- List all EC2 instances from a specific region:
|
||
|
|
||
|
`aws ec2 describe-instances --region {{us-east-1}}`
|
||
|
|
||
|
- Receive message from a specific SQS queue:
|
||
|
|
||
|
`aws sqs receive-message --queue-url {{https://queue.amazonaws.com/546123/Test}}`
|
||
|
|
||
|
- Publish message to the specific SNS topic:
|
||
|
|
||
|
`aws sns publish --topic-arn {{arn:aws:sns:us-east-1:54633:testTopic}} --message "Message"`
|
||
|
|
||
|
- To see help text for AWS RDS commands:
|
||
|
|
||
|
`aws rds help`
|