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.

Container for the parameters to the DescribeLoadBalancers operation. Describes the specified the load balancers. If no load balancers are specified, the call describes all of your load balancers.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingRequest
      Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersRequest

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

Syntax

C#
public class DescribeLoadBalancersRequest : AmazonElasticLoadBalancingRequest
         IAmazonWebServiceRequest

The DescribeLoadBalancersRequest type exposes the following members

Constructors

NameDescription
Public Method DescribeLoadBalancersRequest()

Empty constructor used to set properties independently even when a simple constructor is available

Public Method DescribeLoadBalancersRequest(List<String>)

Instantiates DescribeLoadBalancersRequest with the parameterized properties

Properties

NameTypeDescription
Public Property LoadBalancerNames System.Collections.Generic.List<System.String>

Gets and sets the property LoadBalancerNames.

The names of the load balancers.

Public Property Marker System.String

Gets and sets the property Marker.

The marker for the next set of results. (You received this marker from a previous call.)

Public Property PageSize System.Int32

Gets and sets the property PageSize.

The maximum number of results to return with this call (a number from 1 to 400). The default is 400.

Examples

This example describes the specified load balancer.

To describe one of your load balancers


var client = new AmazonElasticLoadBalancingClient();
var response = client.DescribeLoadBalancers(new DescribeLoadBalancersRequest 
{
    LoadBalancerNames = new List<string> {
        "my-load-balancer"
    }
});

List<LoadBalancerDescription> loadBalancerDescriptions = response.LoadBalancerDescriptions;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

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