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 DeleteLoadBalancer operation. Deletes the specified load balancer.

If you are attempting to recreate a load balancer, you must reconfigure all settings. The DNS name associated with a deleted load balancer are no longer usable. The name and associated DNS record of the deleted load balancer no longer exist and traffic sent to any of its IP addresses is no longer delivered to your instances.

If the load balancer does not exist or has already been deleted, the call to DeleteLoadBalancer still succeeds.

Inheritance Hierarchy

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

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

Syntax

C#
public class DeleteLoadBalancerRequest : AmazonElasticLoadBalancingRequest
         IAmazonWebServiceRequest

The DeleteLoadBalancerRequest type exposes the following members

Constructors

NameDescription
Public Method DeleteLoadBalancerRequest()

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

Public Method DeleteLoadBalancerRequest(string)

Instantiates DeleteLoadBalancerRequest with the parameterized properties

Properties

NameTypeDescription
Public Property LoadBalancerName System.String

Gets and sets the property LoadBalancerName.

The name of the load balancer.

Examples

This example deletes the specified load balancer.

To delete a load balancer


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


            

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