HEX
Server: Apache
System: Linux srv1.prosuiteplus.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: prosuiteplus (1001)
PHP: 8.3.20
Disabled: NONE
Upload Files
File: //lib/python3/dist-packages/awscli/examples/rds/reboot-db-instance.rst
**To reboot a DB instance**

The following ``reboot-db-instance`` example starts a reboot of the specified DB instance. ::

    aws rds reboot-db-instance \
        --db-instance-identifier test-instance

Output::

    {
        "DBInstance": {
            "DBInstanceIdentifier": "test-instance",
            "DBInstanceClass": "db.m1.small",
            "Engine": "mysql",
            "DBInstanceStatus": "rebooting",
            "MasterUsername": "myawsuser",
            "Endpoint": {
                "Address": "test-instance.cdgmuqiadpid.us-east-1.rds.amazonaws.com",
                "Port": 3306,
                "HostedZoneId": "Z2R2ITUGPM61AM"
            },
            <...some output omitted...>
        }
    }