untagResource
Removes tags from the specified resource.
Samples
fun main() {
//sampleStart
// Remove Tags
val resp = interconnectClient.untagResource {
arn = "arn:aws:interconnect:us-east-1:000000000000:connection/mcc-abc12345"
tagKeys = listOf<String>(
"TagKey1",
"TagKey2"
)
}
//sampleEnd
}