deleteDbSubnetGroup

Deletes a DB subnet group.

The specified database subnet group must not be associated with any DB instances.

Samples


fun main() { 
   //sampleStart 
   // The following example deletes the DB subnet group called mysubnetgroup.
rdsClient.deleteDbSubnetGroup {
    dbSubnetGroupName = "mysubnetgroup"
} 
   //sampleEnd
}