AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

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

For more information, see the following:

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DescribeLoadBalancerAttributesAsync.

Namespace: Amazon.ElasticLoadBalancingV2
Assembly: AWSSDK.ElasticLoadBalancingV2.dll
Version: 3.x.y.z

Syntax

C#
public virtual DescribeLoadBalancerAttributesResponse DescribeLoadBalancerAttributes(
         DescribeLoadBalancerAttributesRequest request
)

Parameters

request
Type: Amazon.ElasticLoadBalancingV2.Model.DescribeLoadBalancerAttributesRequest

Container for the necessary parameters to execute the DescribeLoadBalancerAttributes service method.

Return Value


The response from the DescribeLoadBalancerAttributes service method, as returned by ElasticLoadBalancingV2.

Exceptions

ExceptionCondition
LoadBalancerNotFoundException The specified load balancer does not exist.

Examples

This example describes the attributes of the specified load balancer.

To describe load balancer attributes


var client = new AmazonElasticLoadBalancingV2Client();
var response = client.DescribeLoadBalancerAttributes(new DescribeLoadBalancerAttributesRequest 
{
    LoadBalancerArn = "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188"
});

List<LoadBalancerAttribute> attributes = response.Attributes;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also