updateRelationship
inline suspend fun PartnerCentralChannelClient.updateRelationship(crossinline block: UpdateRelationshipRequest.Builder.() -> Unit): UpdateRelationshipResponse
Updates the properties of a partner relationship.
Samples
fun main() {
//sampleStart
// Example for UpdateRelationship
val resp = partnerCentralChannelClient.updateRelationship {
catalog = "AWS"
programManagementAccountIdentifier = "pma-u8ic702rtzng8"
identifier = "rs-l9o4fj3b5zb91"
revision = "3"
displayName = "TestDisplayName"
}
//sampleEnd
}