modifyDbSnapshot

Updates a manual DB snapshot with a new engine version. The snapshot can be encrypted or unencrypted, but not shared or public.

Amazon RDS supports upgrading DB snapshots for MySQL, PostgreSQL, and Oracle. This operation doesn't apply to RDS Custom or RDS for Db2.

Samples


fun main() { 
   //sampleStart 
   // The following example upgrades a PostgeSQL 10. 6 snapshot named db5 snapshot upg test to PostgreSQL
// 11. 7. The new DB engine version is shown after the snapshot has finished upgrading and its status is
// available.
val resp = rdsClient.modifyDbSnapshot {
    dbSnapshotIdentifier = "db5-snapshot-upg-test"
    engineVersion = "11.7"
} 
   //sampleEnd
}