deleteDbSnapshot
inline suspend fun RdsClient.deleteDbSnapshot(crossinline block: DeleteDbSnapshotRequest.Builder.() -> Unit): DeleteDbSnapshotResponse
Deletes a DB snapshot. If the snapshot is being copied, the copy operation is terminated.
The DB snapshot must be in the available
state to be deleted.
Samples
fun main() {
//sampleStart
// The following example deletes the specified DB snapshot.
val resp = rdsClient.deleteDbSnapshot {
dbSnapshotIdentifier = "mydbsnapshot"
}
//sampleEnd
}