describeLoadBalancerAttributes
inline suspend fun ElasticLoadBalancingV2Client.describeLoadBalancerAttributes(crossinline block: DescribeLoadBalancerAttributesRequest.Builder.() -> Unit): DescribeLoadBalancerAttributesResponse
Describes the attributes for the specified Application Load Balancer, Network Load Balancer, or Gateway Load Balancer.
For more information, see the following:
Load balancer attributes in the Application Load Balancers Guide
Load balancer attributes in the Network Load Balancers Guide
Load balancer attributes in the Gateway Load Balancers Guide
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
}