1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 22:42:08 +02:00
tldr/pages/common/aws-rds.md
Vitor Henrique 46a054215a
pages*: make help and version commands comply with the style guide (#12107)
* pages*: use generic word for help

* git: add newline to the end

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* pages*: make help and version commands comply with the style guide

* java: fix Java name

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-01-30 12:55:24 +08:00

37 lines
1.2 KiB
Markdown

# aws rds
> CLI for AWS Relational Database Service.
> Create and manage relational databases.
> More information: <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/rds/index.html>.
- Display help for a specific RDS subcommand:
`aws rds {{subcommand}} help`
- Stop instance:
`aws rds stop-db-instance --db-instance-identifier {{instance_identifier}}`
- Start instance:
`aws rds start-db-instance --db-instance-identifier {{instance_identifier}}`
- Modify an RDS instance:
`aws rds modify-db-instance --db-instance-identifier {{instance_identifier}} {{parameters}} --apply-immediately`
- Apply updates to an RDS instance:
`aws rds apply-pending-maintenance-action --resource-identifier {{database_arn}} --apply-action {{system-update}} --opt-in-type {{immediate}}`
- Change an instance identifier:
`aws rds modify-db-instance --db-instance-identifier {{old_instance_identifier}} --new-db-instance-identifier {{new_instance_identifier}}`
- Reboot an instance:
`aws rds reboot-db-instance --db-instance-identifier {{instance_identifier}}`
- Delete an instance:
`aws rds delete-db-instance --db-instance-identifier {{instance_identifier}} --final-db-snapshot-identifier {{snapshot_identifier}} --delete-automated-backups`