deleteDbClusterParameterGroup
inline suspend fun RdsClient.deleteDbClusterParameterGroup(crossinline block: DeleteDbClusterParameterGroupRequest.Builder.() -> Unit): DeleteDbClusterParameterGroupResponse
Deletes a specified DB cluster parameter group. The DB cluster parameter group to be deleted can't be associated with any DB clusters.
For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.
For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.
Samples
fun main() {
//sampleStart
// The following example deletes the specified DB cluster parameter group.
rdsClient.deleteDbClusterParameterGroup {
dbClusterParameterGroupName = "mydbclusterparametergroup"
}
//sampleEnd
}