removeTags
Removes one or more tags from the specified load balancer.
Samples
// This example removes the specified tag from the specified load balancer.
elasticLoadBalancingClient.removeTags {
loadBalancerNames = listOf<String>(
"my-load-balancer"
)
tags = listOf<TagKeyOnly>(
TagKeyOnly {
key = "project"
}
)
}Content copied to clipboard