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.

Deletes the specified Application Load Balancer, Network Load Balancer, or Gateway Load Balancer. Deleting a load balancer also deletes its listeners.

You can't delete a load balancer if deletion protection is enabled. If the load balancer does not exist or has already been deleted, the call succeeds.

Deleting a load balancer does not affect its registered targets. For example, your EC2 instances continue to run and are still registered to their target groups. If you no longer need these EC2 instances, you can stop or terminate them.

Note:

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

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

Syntax

C#
public virtual DeleteLoadBalancerResponse DeleteLoadBalancer(
         DeleteLoadBalancerRequest request
)

Parameters

request
Type: Amazon.ElasticLoadBalancingV2.Model.DeleteLoadBalancerRequest

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

Return Value


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

Exceptions

ExceptionCondition
LoadBalancerNotFoundException The specified load balancer does not exist.
OperationNotPermittedException This operation is not allowed.
ResourceInUseException A specified resource is in use.

Examples

This example deletes the specified load balancer.

To delete a load balancer


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


            

Version Information

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

See Also