deleteGlobalCluster

Deletes a global database cluster. The primary and secondary clusters must already be detached or destroyed first.

This action only applies to Aurora DB clusters.

Samples


fun main() { 
   //sampleStart 
   // The following example deletes an Aurora MySQL compatible global DB cluster.
val resp = rdsClient.deleteGlobalCluster {
    globalClusterIdentifier = "myglobalcluster"
} 
   //sampleEnd
}