mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
aws: add page
This commit is contained in:
parent
1620d8fb8e
commit
f28ec36045
1 changed files with 23 additions and 0 deletions
23
pages/common/aws.md
Normal file
23
pages/common/aws.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# 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`
|
Loading…
Add table
Reference in a new issue