describeTags

Describes the tags associated with the specified load balancers.

Samples


fun main() { 
   //sampleStart 
   // This example describes the tags for the specified load balancer.
val resp = elasticLoadBalancingClient.describeTags {
    loadBalancerNames = listOf<String>(
        "my-load-balancer"
    )
} 
   //sampleEnd
}