deleteDbClusterEndpoint

Deletes a custom endpoint and removes it from an Amazon Aurora DB cluster.

This action only applies to Aurora DB clusters.

Samples


fun main() { 
   //sampleStart 
   // The following example deletes the specified custom DB cluster endpoint.
val resp = rdsClient.deleteDbClusterEndpoint {
    dbClusterEndpointIdentifier = "mycustomendpoint"
} 
   //sampleEnd
}