modifyGlobalCluster
inline suspend fun RdsClient.modifyGlobalCluster(crossinline block: ModifyGlobalClusterRequest.Builder.() -> Unit): ModifyGlobalClusterResponse
Modifies a setting for an Amazon Aurora global database cluster. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.
This operation only applies to Aurora global database clusters.
Samples
fun main() {
//sampleStart
// The following example enables deletion protection for an Aurora MySQL based global database cluster.
val resp = rdsClient.modifyGlobalCluster {
globalClusterIdentifier = "myglobalcluster"
deletionProtection = true
}
//sampleEnd
}