describeLoadBalancerAttributes

Describes the attributes for the specified Application Load Balancer, Network Load Balancer, or Gateway Load Balancer.

For more information, see the following:

Samples


fun main() { 
   //sampleStart 
   // This example describes the attributes of the specified load balancer.
val resp = elasticLoadBalancingV2Client.describeLoadBalancerAttributes {
    loadBalancerArn = "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188"
} 
   //sampleEnd
}