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 load balancer.

Note:

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

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

Syntax

C#
public abstract DescribeLoadBalancerAttributesResponse DescribeLoadBalancerAttributes(
         DescribeLoadBalancerAttributesRequest request
)

Parameters

request
Type: Amazon.ElasticLoadBalancing.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 ElasticLoadBalancing.

Exceptions

ExceptionCondition
AccessPointNotFoundException The specified load balancer does not exist.
LoadBalancerAttributeNotFoundException The specified load balancer attribute does not exist.

Examples

This example describes the attributes of the specified load balancer.

To describe the attributes of a load balancer


var client = new AmazonElasticLoadBalancingClient();
var response = client.DescribeLoadBalancerAttributes(new DescribeLoadBalancerAttributesRequest 
{
    LoadBalancerName = "my-load-balancer"
});

LoadBalancerAttributes loadBalancerAttributes = response.LoadBalancerAttributes;

            

Version Information

.NET Framework:
Supported in: 4.5 and newer, 3.5

See Also