File size: 523 Bytes
78b7587
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
**To delete a DB instance**

The following ``delete-db-instance`` example deletes the specified DB instance after creating a final DB snapshot named ``test-instance-final-snap``. ::

    aws rds delete-db-instance \
        --db-instance-identifier test-instance \
        --final-db-snapshot-identifier test-instance-final-snap

Output::

    {
        "DBInstance": {
            "DBInstanceIdentifier": "test-instance",
            "DBInstanceStatus": "deleting",
            ...some output truncated...
        }
    }