modifyDbClusterEndpoint
abstract suspend fun modifyDbClusterEndpoint(input: ModifyDbClusterEndpointRequest): ModifyDbClusterEndpointResponse
Modifies the properties of an endpoint in an Amazon Aurora DB cluster.
This operation only applies to Aurora DB clusters.
Samples
fun main() {
//sampleStart
// The following example modifies the specified custom DB cluster endpoint.
val resp = rdsClient.modifyDbClusterEndpoint {
dbClusterEndpointIdentifier = "mycustomendpoint"
staticMembers = listOf<String>(
"dbinstance1",
"dbinstance2",
"dbinstance3"
)
}
//sampleEnd
}