updateConnection
Modifies an existing connection. Currently we support modifications to the connection's description and/or bandwidth.
Samples
// Update Connection Description
val resp = interconnectClient.updateConnection {
identifier = "mcc-abc12345"
description = "Changed Description"
}Content copied to clipboard
// Update Connection Bandwidth
val resp = interconnectClient.updateConnection {
identifier = "mcc-abc12345"
bandwidth = "2Gbps"
}Content copied to clipboard